Bump version numbers for 3.13
[maemo-rb.git] / apps / tagtree.h
blob8369020371b62c41cc45954826c77dda2f88d4d5
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 "config.h"
26 #include "tagcache.h"
27 #include "tree.h"
29 #define TAGNAVI_VERSION "#! rockbox/tagbrowser/2.0"
30 #define TAGMENU_MAX_ITEMS 64
31 #define TAGMENU_MAX_MENUS 32
32 #define TAGMENU_MAX_FMTS 32
34 bool tagtree_export(void);
35 bool tagtree_import(void);
36 void tagtree_init(void) INIT_ATTR;
37 int tagtree_enter(struct tree_context* c);
38 void tagtree_exit(struct tree_context* c);
39 int tagtree_load(struct tree_context* c);
40 char* tagtree_get_entry_name(struct tree_context *c, int id,
41 char* buf, size_t bufsize);
42 bool tagtree_insert_selection_playlist(int position, bool queue);
43 char *tagtree_get_title(struct tree_context* c);
44 int tagtree_get_attr(struct tree_context* c);
45 int tagtree_get_icon(struct tree_context* c);
46 int tagtree_get_filename(struct tree_context* c, char *buf, int buflen);
48 #endif
49 #endif