summaryrefslogtreecommitdiff
path: root/src/gui/widgets/tabs/tab.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-10-19 12:18:42 +0300
committerAndrei Karas <akaras@inbox.ru>2013-10-19 15:12:22 +0300
commit589e377f6159268bb3a3ec072ffce30ce4ad5422 (patch)
tree72fb96fa24a9eb08557eb1b26334b73fc8149e71 /src/gui/widgets/tabs/tab.h
parentad1e0ec0584eebabbeac7473baba956e957101b5 (diff)
downloadplus-589e377f6159268bb3a3ec072ffce30ce4ad5422.tar.gz
plus-589e377f6159268bb3a3ec072ffce30ce4ad5422.tar.bz2
plus-589e377f6159268bb3a3ec072ffce30ce4ad5422.tar.xz
plus-589e377f6159268bb3a3ec072ffce30ce4ad5422.zip
fix definition in tab.
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;