summaryrefslogtreecommitdiff
path: root/src/gui/widgets
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-09-06 23:55:41 +0300
committerAndrei Karas <akaras@inbox.ru>2012-09-06 23:55:41 +0300
commit7d3059516fc25134d0d29b497e546f2846162399 (patch)
tree6eb1e2c1f182369727eba4a9c4d28955237694ed /src/gui/widgets
parent20d0c3ab6c19f2a53002699883ba4eb132d3a513 (diff)
downloadplus-7d3059516fc25134d0d29b497e546f2846162399.tar.gz
plus-7d3059516fc25134d0d29b497e546f2846162399.tar.bz2
plus-7d3059516fc25134d0d29b497e546f2846162399.tar.xz
plus-7d3059516fc25134d0d29b497e546f2846162399.zip
Add colors font color for highlighted and selected tab.
New colors: TAB_HIGHLIGHTED, TAB_SELECTED
Diffstat (limited to 'src/gui/widgets')
-rw-r--r--src/gui/widgets/tab.cpp9
-rw-r--r--src/gui/widgets/tab.h2
2 files changed, 10 insertions, 1 deletions
diff --git a/src/gui/widgets/tab.cpp b/src/gui/widgets/tab.cpp
index eb470cc02..479735e7c 100644
--- a/src/gui/widgets/tab.cpp
+++ b/src/gui/widgets/tab.cpp
@@ -64,6 +64,8 @@ ImageRect Tab::tabImg[TAB_COUNT];
Tab::Tab() :
gcn::Tab(),
mTabColor(&Theme::getThemeColor(Theme::TAB)),
+ mTabHighlightedColor(&Theme::getThemeColor(Theme::TAB_HIGHLIGHTED)),
+ mTabSelectedColor(&Theme::getThemeColor(Theme::TAB_SELECTED)),
mVertexes(new GraphicsVertexes()),
mRedraw(true),
mMode(0),
@@ -138,17 +140,22 @@ void Tab::draw(gcn::Graphics *graphics)
// check which type of tab to draw
if (mTabbedArea)
{
- mLabel->setForegroundColor(*mTabColor);
if (mTabbedArea->isTabSelected(this))
{
+ mLabel->setForegroundColor(*mTabSelectedColor);
mode = TAB_SELECTED;
// if tab is selected, it doesnt need to highlight activity
mFlash = 0;
}
else if (mHasMouse)
{
+ mLabel->setForegroundColor(*mTabHighlightedColor);
mode = TAB_HIGHLIGHTED;
}
+ else
+ {
+ mLabel->setForegroundColor(*mTabColor);
+ }
switch (mFlash)
{
diff --git a/src/gui/widgets/tab.h b/src/gui/widgets/tab.h
index 0907379d0..d0fa41eb6 100644
--- a/src/gui/widgets/tab.h
+++ b/src/gui/widgets/tab.h
@@ -87,6 +87,8 @@ class Tab : public gcn::Tab, public gcn::WidgetListener
static float mAlpha;
const gcn::Color *mTabColor;
+ const gcn::Color *mTabHighlightedColor;
+ const gcn::Color *mTabSelectedColor;
int mFlash;
GraphicsVertexes *mVertexes;
bool mRedraw;