aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/MenuTheme.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/MenuTheme.hh')
-rw-r--r--src/FbTk/MenuTheme.hh11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/FbTk/MenuTheme.hh b/src/FbTk/MenuTheme.hh
index d39b5df..e217e7c 100644
--- a/src/FbTk/MenuTheme.hh
+++ b/src/FbTk/MenuTheme.hh
@@ -76,9 +76,12 @@ public:
76 Font &titleFont() { return *titlefont; } 76 Font &titleFont() { return *titlefont; }
77 const Font &frameFont() const { return *framefont; } 77 const Font &frameFont() const { return *framefont; }
78 Font &frameFont() { return *framefont; } 78 Font &frameFont() { return *framefont; }
79 const Font &hiliteFont() const { return *hilitefont; }
80 Font &hiliteFont() { return *hilitefont; }
79 ///@} 81 ///@}
80 82
81 Justify frameFontJustify() const { return *framefont_justify; } 83 Justify frameFontJustify() const { return *framefont_justify; }
84 Justify hiliteFontJustify() const { return *hilitefont_justify; }
82 Justify titleFontJustify() const { return *titlefont_justify; } 85 Justify titleFontJustify() const { return *titlefont_justify; }
83 86
84 /** 87 /**
@@ -87,13 +90,13 @@ public:
87 ///@{ 90 ///@{
88 const GContext &titleTextGC() const { return t_text_gc; } 91 const GContext &titleTextGC() const { return t_text_gc; }
89 const GContext &frameTextGC() const { return f_text_gc; } 92 const GContext &frameTextGC() const { return f_text_gc; }
90 const GContext &frameUnderlineGC() const { return u_text_gc; } 93 const GContext &hiliteUnderlineGC() const { return u_text_gc; }
91 const GContext &hiliteTextGC() const { return h_text_gc; } 94 const GContext &hiliteTextGC() const { return h_text_gc; }
92 const GContext &disableTextGC() const { return d_text_gc; } 95 const GContext &disableTextGC() const { return d_text_gc; }
93 const GContext &hiliteGC() const { return hilite_gc; } 96 const GContext &hiliteGC() const { return hilite_gc; }
94 GContext &titleTextGC() { return t_text_gc; } 97 GContext &titleTextGC() { return t_text_gc; }
95 GContext &frameTextGC() { return f_text_gc; } 98 GContext &frameTextGC() { return f_text_gc; }
96 GContext &frameUnderlineGC() { return u_text_gc; } 99 GContext &hiliteUnderlineGC() { return u_text_gc; }
97 GContext &hiliteTextGC() { return h_text_gc; } 100 GContext &hiliteTextGC() { return h_text_gc; }
98 GContext &disableTextGC() { return d_text_gc; } 101 GContext &disableTextGC() { return d_text_gc; }
99 GContext &hiliteGC() { return hilite_gc; } 102 GContext &hiliteGC() { return hilite_gc; }
@@ -138,8 +141,8 @@ public:
138private: 141private:
139 ThemeItem<Color> t_text, f_text, h_text, d_text, u_text; 142 ThemeItem<Color> t_text, f_text, h_text, d_text, u_text;
140 ThemeItem<Texture> title, frame, hilite; 143 ThemeItem<Texture> title, frame, hilite;
141 ThemeItem<Font> titlefont, framefont; 144 ThemeItem<Font> titlefont, framefont, hilitefont;
142 ThemeItem<Justify> framefont_justify, titlefont_justify; 145 ThemeItem<Justify> framefont_justify, hilitefont_justify, titlefont_justify;
143 ThemeItem<Justify> bullet_pos; 146 ThemeItem<Justify> bullet_pos;
144 ThemeItem<BulletType> m_bullet; 147 ThemeItem<BulletType> m_bullet;
145 ThemeItem<Shape::ShapePlace> m_shapeplace; 148 ThemeItem<Shape::ShapePlace> m_shapeplace;