summaryrefslogtreecommitdiff
path: root/apps/tagtree.h
diff options
context:
space:
mode:
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