summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabs/tab.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/tabs/tab.h')
-rw-r--r--src/gui/widgets/tabs/tab.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/gui/widgets/tabs/tab.h b/src/gui/widgets/tabs/tab.h
index 6106ccb29..1c5f349e4 100644
--- a/src/gui/widgets/tabs/tab.h
+++ b/src/gui/widgets/tabs/tab.h
@@ -51,6 +51,15 @@ class Tab : public gcn::BasicContainer,
virtual ~Tab();
+ enum
+ {
+ TAB_STANDARD = 0,
+ TAB_HIGHLIGHTED = 1,
+ TAB_SELECTED = 2,
+ TAB_UNUSED = 3,
+ TAB_COUNT = 4 // Must be last
+ };
+
/**
* Update the alpha value to the graphic components.
*/
@@ -160,8 +169,8 @@ class Tab : public gcn::BasicContainer,
/** Load images if no other instances exist yet */
void init();
- static Skin *tabImg[4]; /**< Tab state graphics */
- static int mInstances; /**< Number of tab instances */
+ static Skin *tabImg[TAB_COUNT]; /**< Tab state graphics */
+ static int mInstances; /**< Number of tab instances */
static float mAlpha;
const gcn::Color *mTabColor;