mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 18:15:06 +01:00
e504a5efc3
*Fix crash in cheat menu when the browser has an empty entry *Improved detection of not existing cheat txt files (404 Page Not Found) *Added a per game save game extraction to emu nand (right now only from /title/00010000/, others will come when users report which are needed for which games :P) *Added feature to extract all save games to emu nand *Added proper message to install progress bar to show when install is really finished and a game list reload starts (wait time is taking too long sometimes) *Fixed a little bug in the progress bar *Several code optimizations *Changed default make file build to IOS249 build since most people use d2x now
45 lines
983 B
C++
45 lines
983 B
C++
#ifndef GUI_OPTIONBROWSER_H_
|
|
#define GUI_OPTIONBROWSER_H_
|
|
|
|
#include "gui.h"
|
|
#include "gui_scrollbar.hpp"
|
|
#include <vector>
|
|
|
|
//!Display a list of menu options
|
|
class GuiOptionBrowser: public GuiElement, public sigslot::has_slots<>
|
|
{
|
|
public:
|
|
GuiOptionBrowser(int w, int h, OptionList * l, const char * background);
|
|
virtual ~GuiOptionBrowser();
|
|
int GetClickedOption();
|
|
int GetSelectedOption();
|
|
void SetOffset(int optionnumber);
|
|
void ResetState();
|
|
void Draw();
|
|
void Update(GuiTrigger * t);
|
|
protected:
|
|
void onListChange(int SelItem, int SelInd);
|
|
void UpdateListEntries();
|
|
|
|
int oldSelectedItem;
|
|
int selectedItem;
|
|
int listOffset;
|
|
int coL2;
|
|
|
|
OptionList * options;
|
|
std::vector<GuiButton *> optionBtn;
|
|
std::vector<GuiText *> optionTxt;
|
|
std::vector<GuiText *> optionVal;
|
|
std::vector<GuiImage *> optionBg;
|
|
|
|
GuiImage * bgOptionsImg;
|
|
|
|
GuiImageData * bgOptions;
|
|
GuiImageData * bgOptionsEntry;
|
|
|
|
GuiTrigger * trigA;
|
|
GuiScrollbar scrollBar;
|
|
};
|
|
|
|
#endif
|