mirror of
https://github.com/ENSL/NS.git
synced 2024-11-15 09:21:54 +00:00
29 lines
504 B
C++
29 lines
504 B
C++
#ifndef AVHSCROLLPANEL_H
|
|
#define AVHSCROLLPANEL_H
|
|
|
|
#include "VGUI_Panel.h"
|
|
#include "ui/UIComponents.h"
|
|
|
|
class AvHScrollPanel : public InvisiblePanel
|
|
{
|
|
public:
|
|
AvHScrollPanel();
|
|
|
|
protected:
|
|
virtual void paint();
|
|
virtual void paintBackground();
|
|
};
|
|
|
|
class AvHUIScrollPanel : public UIColoredPanel
|
|
{
|
|
public:
|
|
void AllocateComponent(const TRDescription& inDesc);
|
|
|
|
virtual Panel* GetComponentPointer(void);
|
|
|
|
private:
|
|
AvHScrollPanel* mScrollComponent;
|
|
|
|
};
|
|
|
|
#endif
|