mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 09:11:55 +00:00
30 lines
504 B
C
30 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
|