2002-05-16 12:53:40 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Daniel Stenberg
|
|
|
|
*
|
|
|
|
* 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 _TREE_H_
|
|
|
|
#define _TREE_H_
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2005-01-17 11:39:46 +00:00
|
|
|
#include <applimits.h>
|
|
|
|
#include <file.h>
|
2002-05-16 12:53:40 +00:00
|
|
|
|
2003-07-01 21:05:43 +00:00
|
|
|
struct entry {
|
|
|
|
short attr; /* FAT attributes + file type flags */
|
2004-06-20 16:34:29 +00:00
|
|
|
unsigned long time_write; /* Last write time */
|
2003-07-01 21:05:43 +00:00
|
|
|
char *name;
|
|
|
|
};
|
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2005-01-17 11:39:46 +00:00
|
|
|
/* browser context for file or db */
|
|
|
|
struct tree_context {
|
2005-10-28 00:00:00 +00:00
|
|
|
/* The directory we are browsing */
|
|
|
|
char currdir[MAX_PATH];
|
|
|
|
/* the number of directories we have crossed from / */
|
2005-01-17 11:39:46 +00:00
|
|
|
int dirlevel;
|
2005-10-28 00:00:00 +00:00
|
|
|
/* The currently selected file/id3dbitem index (old dircursor+dirfile) */
|
|
|
|
int selected_item;
|
|
|
|
/* The selected item in each directory crossed
|
|
|
|
* (used when we want to return back to a previouws directory)*/
|
|
|
|
int selected_item_history[MAX_DIR_LEVELS];
|
|
|
|
|
2005-01-18 22:45:00 +00:00
|
|
|
int firstpos; /* which dir entry is on first
|
|
|
|
position in dir buffer */
|
|
|
|
int pos_history[MAX_DIR_LEVELS];
|
2005-10-28 00:00:00 +00:00
|
|
|
|
2005-01-17 11:39:46 +00:00
|
|
|
int *dirfilter; /* file use */
|
2005-10-28 00:00:00 +00:00
|
|
|
int filesindir; /* The number of files in the dircache */
|
2005-01-17 11:39:46 +00:00
|
|
|
int dirsindir; /* file use */
|
2005-01-18 22:45:00 +00:00
|
|
|
int dirlength; /* total number of entries in dir, incl. those not loaded */
|
2007-02-06 13:25:57 +00:00
|
|
|
#ifdef HAVE_TAGCACHE
|
2005-01-17 11:39:46 +00:00
|
|
|
int table_history[MAX_DIR_LEVELS]; /* db use */
|
|
|
|
int extra_history[MAX_DIR_LEVELS]; /* db use */
|
|
|
|
int currtable; /* db use */
|
|
|
|
int currextra; /* db use */
|
2007-02-06 13:25:57 +00:00
|
|
|
#endif
|
2005-10-28 00:00:00 +00:00
|
|
|
/* A big buffer with plenty of entry structs,
|
|
|
|
* contains all files and dirs in the current
|
|
|
|
* dir (with filters applied) */
|
2005-01-17 11:39:46 +00:00
|
|
|
void* dircache;
|
|
|
|
int dircache_size;
|
|
|
|
char* name_buffer;
|
|
|
|
int name_buffer_size;
|
|
|
|
int dentry_size;
|
2005-01-18 22:45:00 +00:00
|
|
|
bool dirfull;
|
2005-01-17 11:39:46 +00:00
|
|
|
};
|
2004-05-21 20:08:24 +00:00
|
|
|
|
2007-06-10 10:41:27 +00:00
|
|
|
void tree_mem_init(void);
|
|
|
|
void tree_gui_init(void);
|
2007-03-06 08:21:18 +00:00
|
|
|
void get_current_file(char* buffer, int buffer_len);
|
2007-08-05 12:14:07 +00:00
|
|
|
void set_dirfilter(int l_dirfilter);
|
|
|
|
void set_current_file(char *path);
|
2007-03-01 11:14:46 +00:00
|
|
|
int rockbox_browse(const char *root, int dirfilter);
|
2003-01-29 13:20:22 +00:00
|
|
|
bool create_playlist(void);
|
2004-08-18 01:09:31 +00:00
|
|
|
void resume_directory(const char *dir);
|
2003-07-01 21:05:43 +00:00
|
|
|
char *getcwd(char *buf, int size);
|
|
|
|
void reload_directory(void);
|
2004-09-10 20:51:12 +00:00
|
|
|
bool check_rockboxdir(void);
|
2005-01-17 11:39:46 +00:00
|
|
|
struct tree_context* tree_get_context(void);
|
2005-09-14 09:07:05 +00:00
|
|
|
void tree_flush(void);
|
|
|
|
void tree_restore(void);
|
2002-05-16 12:53:40 +00:00
|
|
|
|
2005-10-28 00:00:00 +00:00
|
|
|
|
|
|
|
extern struct gui_synclist tree_lists;
|
|
|
|
extern struct gui_syncstatusbar statusbars;
|
2002-05-16 12:53:40 +00:00
|
|
|
#endif
|