diff options
Diffstat (limited to 'src/Theme.hh')
-rw-r--r-- | src/Theme.hh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/Theme.hh b/src/Theme.hh index fa1dabe..3ab4f27 100644 --- a/src/Theme.hh +++ b/src/Theme.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Theme.hh,v 1.15 2002/10/15 10:52:18 fluxgen Exp $ | 25 | // $Id: Theme.hh,v 1.16 2002/10/15 17:07:32 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef THEME_HH | 27 | #ifndef THEME_HH |
28 | #define THEME_HH | 28 | #define THEME_HH |
@@ -59,12 +59,14 @@ public: | |||
59 | int bullet, bullet_pos; | 59 | int bullet, bullet_pos; |
60 | } MenuStyle; | 60 | } MenuStyle; |
61 | 61 | ||
62 | typedef struct LabelStyle | 62 | typedef struct LabelStyle { |
63 | { | 63 | LabelStyle(const char *fontname="fixed"):font(fontname) { } |
64 | |||
64 | FbTk::Texture l_focus, l_unfocus, | 65 | FbTk::Texture l_focus, l_unfocus, |
65 | t_focus, t_unfocus; | 66 | t_focus, t_unfocus; |
66 | GC l_text_focus_gc, l_text_unfocus_gc; | 67 | GC l_text_focus_gc, l_text_unfocus_gc; |
67 | DrawUtil::Font font; | 68 | FbTk::Font font; |
69 | DrawUtil::Font::FontJustify justify; | ||
68 | FbTk::Color l_text_focus, l_text_unfocus; | 70 | FbTk::Color l_text_focus, l_text_unfocus; |
69 | } LabelStyle; | 71 | } LabelStyle; |
70 | 72 | ||