#ifndef _GUILIST_H_ #define _GUILIST_H_ #include "../Renderer.h" #include "../GuiComponent.h" #include "../InputManager.h" #include #include #define SCROLLDELAY 507 #define SCROLLTIME (57*6) //this should really be a template template class GuiList : public GuiComponent { public: GuiList(int offsetX = 0, int offsetY = 0); ~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(); std::string getSelectedName(); listType getSelectedObject(); int getSelection(); private: int mScrollDir, mScrollAccumulator; bool mScrolling; int mOffsetX, mOffsetY; struct ListRow { std::string name; listType object; int color; }; std::vector mRowVector; int mSelection; }; #include "GuiList.cpp" #endif