ES-DE/src/components/GuiList.h

53 lines
991 B
C
Raw Normal View History

#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*6)
//this should really be a template
2012-08-02 04:50:18 +00:00
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);
2012-08-02 04:50:18 +00:00
void addObject(std::string name, listType obj, int color = 0xFF0000);
void clear();
std::string getSelectedName();
2012-08-02 04:50:18 +00:00
listType getSelectedObject();
int getSelection();
private:
int mScrollDir, mScrollAccumulator;
bool mScrolling;
Renderer::FontSize mFont;
int mOffsetX, mOffsetY;
2012-08-02 04:50:18 +00:00
struct ListRow
{
std::string name;
listType object;
int color;
};
std::vector<ListRow> mRowVector;
int mSelection;
};
2012-08-02 04:50:18 +00:00
#include "GuiList.cpp"
#endif