2005-01-17 11:39:46 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
* __________ __ ___.
|
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
2005-01-17 16:06:07 +00:00
|
|
|
|
* Copyright (C) 2005 by Bj<EFBFBD>rn Stenberg
|
2005-01-17 11:39:46 +00:00
|
|
|
|
*
|
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
|
*
|
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
|
* KIND, either express or implied.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
#ifndef DBTREE_H
|
|
|
|
|
#define DBTREE_H
|
|
|
|
|
|
|
|
|
|
#include "tree.h"
|
2005-04-26 21:37:44 +00:00
|
|
|
|
#include "database.h"
|
2005-01-17 11:39:46 +00:00
|
|
|
|
|
2005-01-19 15:01:31 +00:00
|
|
|
|
enum table { invalid, root, allsongs, allalbums, allartists,
|
2005-02-01 14:22:27 +00:00
|
|
|
|
albums4artist, songs4album, songs4artist,
|
2005-01-27 22:21:08 +00:00
|
|
|
|
search, searchartists, searchalbums, searchsongs };
|
2005-01-17 11:39:46 +00:00
|
|
|
|
|
2005-01-20 16:24:26 +00:00
|
|
|
|
int db_enter(struct tree_context* c);
|
2005-01-17 11:39:46 +00:00
|
|
|
|
void db_exit(struct tree_context* c);
|
2005-01-18 22:45:00 +00:00
|
|
|
|
int db_load(struct tree_context* c);
|
2005-01-17 11:39:46 +00:00
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
|
const char* db_get_icon(struct tree_context* c);
|
|
|
|
|
#else
|
|
|
|
|
int db_get_icon(struct tree_context* c);
|
|
|
|
|
#endif
|
2005-08-30 07:52:36 +00:00
|
|
|
|
int db_get_filename(struct tree_context* c, char *buf, int buflen);
|
2005-04-26 21:37:44 +00:00
|
|
|
|
|
2005-01-17 11:39:46 +00:00
|
|
|
|
#endif
|
|
|
|
|
|