gui/filebrowser.cpp: cleanup, simplify footer

Origin commit data
------------------
Commit: 713820a1c0
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-10-01 (Wed, 01 Oct 2014)
This commit is contained in:
[CST] Focus
2014-10-01 17:15:57 +04:00
parent b5231850cf
commit f14b176175
2 changed files with 248 additions and 501 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -54,7 +54,6 @@
#include <vector>
#define ENABLE_INTERNETRADIO
#define VLC_URI "vlc://"
bool chooserDir(std::string &setting_dir, bool test_dir, const char *action_str, bool allow_tmp = false);
bool chooserDir(char *setting_dir, bool test_dir, const char *action_str, size_t str_leng, bool allow_tmp = false);
@@ -152,9 +151,6 @@ class CFileBrowser
CFileList selected_filelist;
bool readDir(const std::string & dirname, CFileList* flist);
#ifdef ENABLE_MOVIEPLAYER_VLC
bool readDir_vlc(const std::string & dirname, CFileList* flist);
#endif
bool readDir_std(const std::string & dirname, CFileList* flist);
#ifdef ENABLE_INTERNETRADIO
bool readDir_sc(const std::string & dirname, CFileList* flist);
@@ -188,7 +184,7 @@ class CFileBrowser
void paintItem(unsigned pos);
void paint();
void paintHead();
void paintFoot();
int paintFoot(bool show = true);
void paintSMSKey();
void recursiveDelete(const char* file);
@@ -201,7 +197,6 @@ class CFileBrowser
typedef enum {
ModeFile,
ModeVLC,
ModeSC
} tFileBrowserMode;