NS/releases/3.04/source/external/vgui/include/VGUI_TabPanel.h
tankefugl 19b458f8bc Branched for 3.0.4 balance
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@141 67975925-1194-0748-b3d5-c16f83f1a3a1
2005-05-29 10:59:29 +00:00

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