git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1895 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
focus
2011-11-25 10:04:37 +00:00
parent c41baaaeab
commit ef71f4a4e4

View File

@@ -219,7 +219,7 @@ typedef struct
int lastRecordRowNr;
MB_INFO_ITEM lastRecordRow[MB_MAX_ROWS];
int lastRecordRowWidth[MB_MAX_ROWS];
}MB_SETTINGS;
} MB_SETTINGS;
// Priorities for Developmemt: P1: critical feature, P2: important feature, P3: for next release, P4: looks nice, lets see
class CMovieBrowser : public CMenuTarget
@@ -258,7 +258,6 @@ class CMovieBrowser : public CMenuTarget
std::vector<MI_MOVIE_INFO*> m_vHandleRecordList;
std::vector<MI_MOVIE_INFO*> m_vHandlePlayList;
std::vector<std::string> m_dirNames;
// std::vector<std::string> m_serienames;
std::vector<MI_MOVIE_INFO*> m_vHandleSerienames;
unsigned int m_currentBrowserSelection;
@@ -418,7 +417,7 @@ class CSelectedMenu : public CMenuTarget
public:
bool selected;
CSelectedMenu(void){selected = false;};
inline int exec(CMenuTarget* /*parent*/, const std::string & /*actionKey*/){selected = true; return menu_return::RETURN_EXIT;};
inline int exec(CMenuTarget* /*parent*/, const std::string & /*actionKey*/){selected = true; return menu_return::RETURN_EXIT;};
};
@@ -462,7 +461,7 @@ class CFileChooser : public CMenuWidget
public:
CFileChooser(std::string* path){dirPath= path;};
int exec(CMenuTarget* parent, const std::string & actionKey);
};
};
typedef enum
{
@@ -471,7 +470,7 @@ typedef enum
DIR_STATE_NOT_MOUNTED = 2,
DIR_STATE_MOUNTED = 3,
DIR_STATE_DISABLED = 4
}DIR_STATE;
} DIR_STATE;
#define MAX_DIR 10
class CDirMenu : public CMenuWidget
@@ -490,7 +489,7 @@ class CDirMenu : public CMenuWidget
int exec(CMenuTarget* parent, const std::string & actionKey);
void show(void);
bool isChanged(){return changed;};
};
};
// EPG Genre , taken from epgview, TODO: migth be splitted in major/minor to increase handling, might be moved to CMovieInfo
@@ -706,7 +705,6 @@ const CMenuOptionChooser::keyval genre_major[GENRE_MAJOR_COUNT] =
{ 10, LOCALE_GENRE_TRAVEL_HOBBIES_0}
};
#endif /*MOVIEBROWSER_H_*/