usbloadergx/source/GUI/gui_gamelist.h
dimok321 0f4eb6b209 *several code optimizations
*added saving of game browser position (on all modes)
*several cleanups and small fixes
*added a "Block Category Menu" setting
*fixed bug with parental block and game settings (thanks NJ7 for finding it)
*fixed "All" not being translated in category menu
2011-06-24 19:11:36 +00:00

48 lines
1.2 KiB
C++

#ifndef _GUIGAMELIST_H_
#define _GUIGAMELIST_H_
#include "gui_gamebrowser.h"
#include "gui_scrollbar.hpp"
#include "usbloader/disc.h"
class GuiGameList : public GuiGameBrowser, public sigslot::has_slots<>
{
public:
GuiGameList(int w, int h, int listOffset = 0);
virtual ~GuiGameList();
int GetClickedOption();
int GetSelectedOption() { return listOffset+selectedItem; }
void SetSelectedOption(int ind);
void setListOffset(int off);
int getListOffset() const { return listOffset; }
void ResetState();
void SetFocus(int f);
void Draw();
void Update(GuiTrigger * t);
protected:
void onListChange(int SelItem, int SelInd);
void UpdateListEntries();
int selectedItem;
int listOffset;
int scrollbaron;
int pagesize;
int maxTextWidth;
GuiButton ** game;
GuiText ** gameTxt;
GuiText ** gameTxtOver;
GuiImage ** gameBg;
GuiImage ** newImg;
GuiImage * bgGameImg;
GuiImageData * bgGames;
GuiImageData * bgGamesEntry;
GuiImageData * newGames;
GuiTrigger * trigA;
GuiScrollbar scrollBar;
};
#endif