diff options
author | David Athay <ko2fan@gmail.com> | 2009-01-28 11:47:05 +0000 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-30 18:11:51 -0700 |
commit | 5b47d0933dcfb6e898ccfa56efe53eb53b7d30cb (patch) | |
tree | ace4861b718cd58394c02f30afa0b9350825c35d /src/gui/widgets/tab.h | |
parent | 202280724138614924e473a693dc974929ef5836 (diff) | |
download | mana-5b47d0933dcfb6e898ccfa56efe53eb53b7d30cb.tar.gz mana-5b47d0933dcfb6e898ccfa56efe53eb53b7d30cb.tar.bz2 mana-5b47d0933dcfb6e898ccfa56efe53eb53b7d30cb.tar.xz mana-5b47d0933dcfb6e898ccfa56efe53eb53b7d30cb.zip |
Added highlighting ability to tabs.
Diffstat (limited to 'src/gui/widgets/tab.h')
-rw-r--r-- | src/gui/widgets/tab.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/widgets/tab.h b/src/gui/widgets/tab.h index 23987cac..3af4e2bf 100644 --- a/src/gui/widgets/tab.h +++ b/src/gui/widgets/tab.h @@ -47,6 +47,11 @@ class Tab : public gcn::Tab */ void draw(gcn::Graphics *graphics); + /** + * Set tab highlighted + */ + void setHighlighted(bool high); + private: /** Load images if no other instances exist yet */ void init(); @@ -54,6 +59,8 @@ class Tab : public gcn::Tab static ImageRect tabImg[4]; /**< Tab state graphics */ static int mInstances; /**< Number of tab instances */ static float mAlpha; + + bool mHighlighted; }; #endif |