diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-24 21:27:16 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-24 21:27:16 +0000 |
| commit | 5869cc29ef15181427e65079d9a52c5d21190206 (patch) | |
| tree | 383c3373beab350f66cb4fa64dcc6aac262cbd3b /otk/style.hh | |
| parent | 2e273ae3ac020cc6a43c37942089b3eb7d214102 (diff) | |
wrap otk with swig/python
Diffstat (limited to 'otk/style.hh')
| -rw-r--r-- | otk/style.hh | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/otk/style.hh b/otk/style.hh index c0e0bbd9..ec9f3f8d 100644 --- a/otk/style.hh +++ b/otk/style.hh @@ -13,6 +13,11 @@ namespace otk { +struct PixmapMask { + Pixmap mask; + unsigned int w, h; +}; + class Style { public: @@ -23,11 +28,6 @@ public: enum TextJustify { LeftJustify = 1, RightJustify, CenterJustify }; enum BulletType { RoundBullet = 1, TriangleBullet, SquareBullet, NoBullet }; - struct PixmapMask { - Pixmap mask; - unsigned int w, h; - }; - // private: BImageControl *image_control; @@ -83,17 +83,12 @@ public: void load(const Configuration &style); - inline BColor *getBorderColor(void) { return &border_color; } - inline BColor *getTextFocus(void) { return &l_text_focus; } inline BColor *getTextUnfocus(void) { return &l_text_unfocus; } inline BColor *getButtonPicFocus(void) { return &b_pic_focus; } inline BColor *getButtonPicUnfocus(void) { return &b_pic_unfocus; } - inline BTexture *getFrameFocus(void) { return &f_focus; } - inline BTexture *getFrameUnfocus(void) { return &f_unfocus; } - inline BTexture *getTitleFocus(void) { return &t_focus; } inline BTexture *getTitleUnfocus(void) { return &t_unfocus; } |
