mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
fa11a745d6
*Rewrote the whole Settings.cpp into 11 classes. Each settings menu has it's own class now *Reworked the whole sound system. Supported formats AIF/MP3/OGG/BNS/WAV now with no file size limit (streaming). *Changed button click/over sounds to wav from raw pcm *Lot's of bug fixes
53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
#ifndef _GUIGAMECAROUSEL_H_
|
|
#define _GUIGAMECAROUSEL_H_
|
|
|
|
#include "gui.h"
|
|
#include "../usbloader/disc.h"
|
|
class GuiImageAsync;
|
|
class GuiGameCarousel: public GuiElement
|
|
{
|
|
public:
|
|
GuiGameCarousel(int w, int h, const char *themePath, const u8 *imagebg, int imagebgsize, int selected = 0, int offset = 0);
|
|
~GuiGameCarousel();
|
|
int FindMenuItem(int c, int d);
|
|
int GetClickedOption();
|
|
int GetSelectedOption();
|
|
void ResetState();
|
|
void SetFocus(int f);
|
|
void Draw();
|
|
void Update(GuiTrigger * t);
|
|
int GetOffset();
|
|
void Reload();
|
|
//GuiText * optionVal[PAGESIZE];
|
|
protected:
|
|
GuiImageData noCover;
|
|
int selectedItem;
|
|
int listOffset;
|
|
int scrollbaron;
|
|
int pagesize;
|
|
int speed;
|
|
int clickedItem;
|
|
|
|
int * gameIndex;
|
|
GuiButton ** game;
|
|
GuiImageAsync ** coverImg;
|
|
|
|
GuiText * gamename;
|
|
|
|
GuiButton * btnRight;
|
|
GuiButton * btnLeft;
|
|
|
|
GuiImage * btnLeftImg;
|
|
GuiImage * btnRightImg;
|
|
|
|
GuiImageData * imgLeft;
|
|
GuiImageData * imgRight;
|
|
|
|
GuiTrigger * trigA;
|
|
GuiTrigger * trigL;
|
|
GuiTrigger * trigR;
|
|
GuiTrigger * trigPlus;
|
|
GuiTrigger * trigMinus;
|
|
};
|
|
#endif
|