mirror of
https://github.com/ENSL/NS.git
synced 2024-11-14 17:01:29 +00:00
4f13237895
Change CRLF to LF in repo.
29 lines
475 B
C++
29 lines
475 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
|