summaryrefslogtreecommitdiff
path: root/apps/tagtree.h
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-03-26 11:33:42 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-03-26 11:33:42 +0000
commit7c4e0c8730d5b076d4db4206361bc38d5256a23f (patch)
tree43382ae25de9bfa0bbabdff7d51c32b651ad47b5 /apps/tagtree.h
parent50d40ea43409745bc828e56af5e3879ea6b48cf1 (diff)
downloadrockbox-7c4e0c8730d5b076d4db4206361bc38d5256a23f.tar.gz
rockbox-7c4e0c8730d5b076d4db4206361bc38d5256a23f.zip
Initial version of tagcache! There are still some bugs in the engine
and much more problems with the UI. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9256 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagtree.h')
-rw-r--r--apps/tagtree.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/apps/tagtree.h b/apps/tagtree.h
new file mode 100644
index 0000000000..7eafb7061d
--- /dev/null
+++ b/apps/tagtree.h
@@ -0,0 +1,41 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2005 by Miika Pekkarinen
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef _TAGTREE_H
20#define _TAGTREE_H
21
22#include "tagcache.h"
23#include "tree.h"
24
25enum table { invalid, root, allsongs, allalbums, allartists, allgenres,
26 albums4artist, songs4album, songs4artist, artist4genres,
27 search, searchartists, searchalbums, searchsongs,
28 chunked_next };
29
30int tagtree_enter(struct tree_context* c);
31void tagtree_exit(struct tree_context* c);
32int tagtree_load(struct tree_context* c);
33#ifdef HAVE_LCD_BITMAP
34const char* tagtree_get_icon(struct tree_context* c);
35#else
36int tagtree_get_icon(struct tree_context* c);
37#endif
38int tagtree_get_filename(struct tree_context* c, char *buf, int buflen);
39
40#endif
41