render do main menu

This commit is contained in:
Eduardo Bart
2011-04-08 06:50:26 -03:00
parent 4c6d1269a0
commit 6e8df399c9
21 changed files with 243 additions and 61 deletions

View File

@@ -27,13 +27,21 @@
#include "../prerequisites.h"
#include "uicontainer.h"
#include "../borderedimage.h"
class UIPanel : public UIContainer
{
public:
UIPanel(UIContainerPtr parent) : UIContainer(parent) { }
UIPanel();
void render();
virtual UI::ControlType getControlType() const { return UI::Panel; }
private:
BorderedImagePtr m_boderedImage;
};
typedef std::shared_ptr<UIPanel> UIPanelPtr;
#endif // UIPANEL_H