mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-28 07:12:18 +00:00
43 lines
751 B
C
43 lines
751 B
C
|
|
||
|
#ifndef VGUI_TABPANEL_H
|
||
|
#define VGUI_TABPANEL_H
|
||
|
|
||
|
#include<VGUI.h>
|
||
|
#include<VGUI_Panel.h>
|
||
|
|
||
|
namespace vgui
|
||
|
{
|
||
|
|
||
|
class ButtonGroup;
|
||
|
|
||
|
class VGUIAPI TabPanel : public Panel
|
||
|
{
|
||
|
public:
|
||
|
enum TabPlacement
|
||
|
{
|
||
|
tp_top=0,
|
||
|
tp_bottom,
|
||
|
tp_left,
|
||
|
tp_right,
|
||
|
};
|
||
|
public:
|
||
|
TabPanel(int x,int y,int wide,int tall);
|
||
|
public:
|
||
|
virtual Panel* addTab(const char* text);
|
||
|
virtual void setSelectedTab(Panel* tab);
|
||
|
virtual void setSize(int wide,int tall);
|
||
|
protected:
|
||
|
virtual void recomputeLayoutTop();
|
||
|
virtual void recomputeLayout();
|
||
|
protected:
|
||
|
TabPlacement _tabPlacement;
|
||
|
Panel* _tabArea;
|
||
|
Panel* _clientArea;
|
||
|
Panel* _selectedTab;
|
||
|
Panel* _selectedPanel;
|
||
|
ButtonGroup* _buttonGroup;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|