mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-24 05:21:17 +00:00
2f9f0c732e
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@277 67975925-1194-0748-b3d5-c16f83f1a3a1
43 lines
No EOL
751 B
C++
43 lines
No EOL
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 |