Update the discussion of themeing in the manual, and put a note in the wps tags appen...
[kugel-rb.git] / apps / tagtree.h
blobaaf5158e5b2b5c93d5b098a8dd26beaaaa0cb3d5
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 by Miika Pekkarinen
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #ifdef HAVE_TAGCACHE
22 #ifndef _TAGTREE_H
23 #define _TAGTREE_H
25 #include "tagcache.h"
26 #include "tree.h"
28 #define TAGNAVI_VERSION "#! rockbox/tagbrowser/2.0"
29 #define TAGMENU_MAX_ITEMS 64
30 #define TAGMENU_MAX_MENUS 32
31 #define TAGMENU_MAX_FMTS 32
33 struct tagentry {
34 char *name;
35 int newtable;
36 int extraseek;
39 bool tagtree_export(void);
40 bool tagtree_import(void);
41 void tagtree_init(void) INIT_ATTR;
42 int tagtree_enter(struct tree_context* c);
43 void tagtree_exit(struct tree_context* c);
44 int tagtree_load(struct tree_context* c);
45 struct tagentry* tagtree_get_entry(struct tree_context *c, int id);
46 bool tagtree_insert_selection_playlist(int position, bool queue);
47 char *tagtree_get_title(struct tree_context* c);
48 int tagtree_get_attr(struct tree_context* c);
49 int tagtree_get_icon(struct tree_context* c);
50 int tagtree_get_filename(struct tree_context* c, char *buf, int buflen);
52 #endif
53 #endif