mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-28 00:55:39 +00:00
67e657391a
Game images and descriptions are no longer displayed while scrolling - this should provide a better framerate for nicer scrolling.
62 lines
1.1 KiB
C++
62 lines
1.1 KiB
C++
#ifndef _GUILIST_H_
|
|
#define _GUILIST_H_
|
|
|
|
#include "../Renderer.h"
|
|
#include "../GuiComponent.h"
|
|
#include "../InputManager.h"
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#define SCROLLDELAY 507
|
|
#define SCROLLTIME (57*5)
|
|
|
|
//this should really be a template
|
|
template <typename listType>
|
|
class GuiList : public GuiComponent
|
|
{
|
|
public:
|
|
GuiList(int offsetX = 0, int offsetY = 0, Renderer::FontSize fontsize = Renderer::MEDIUM);
|
|
~GuiList();
|
|
|
|
void onRender();
|
|
void onTick(int deltaTime);
|
|
void onInput(InputManager::InputButton button, bool keyDown);
|
|
|
|
void addObject(std::string name, listType obj, int color = 0xFF0000);
|
|
void clear();
|
|
|
|
void onPause();
|
|
void onResume();
|
|
|
|
std::string getSelectedName();
|
|
listType getSelectedObject();
|
|
int getSelection();
|
|
bool isScrolling();
|
|
|
|
void setSelectorColor(int selectorColor);
|
|
void setCentered(bool centered);
|
|
private:
|
|
int mScrollDir, mScrollAccumulator;
|
|
bool mScrolling;
|
|
|
|
Renderer::FontSize mFont;
|
|
int mSelectorColor;
|
|
bool mDrawCentered;
|
|
|
|
int mOffsetX, mOffsetY;
|
|
|
|
struct ListRow
|
|
{
|
|
std::string name;
|
|
listType object;
|
|
int color;
|
|
};
|
|
|
|
std::vector<ListRow> mRowVector;
|
|
int mSelection;
|
|
};
|
|
|
|
#include "GuiList.cpp"
|
|
|
|
#endif
|