diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-06-01 23:16:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-06-01 23:16:44 +0300 |
commit | d0d120837ccf0a20c6d43a1193f257cfaeb194f6 (patch) | |
tree | 7efe3d94117946437d52929e69dfc2f0f31737a5 /src/gui/widgets/window.h | |
parent | ec552e6430ac86b1234c9a7798bf4e028a3c78c0 (diff) | |
download | plus-d0d120837ccf0a20c6d43a1193f257cfaeb194f6.tar.gz plus-d0d120837ccf0a20c6d43a1193f257cfaeb194f6.tar.bz2 plus-d0d120837ccf0a20c6d43a1193f257cfaeb194f6.tar.xz plus-d0d120837ccf0a20c6d43a1193f257cfaeb194f6.zip |
Change trade window font to secure font if need.
Diffstat (limited to 'src/gui/widgets/window.h')
-rw-r--r-- | src/gui/widgets/window.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/widgets/window.h b/src/gui/widgets/window.h index f455f1238..4e9a6d87b 100644 --- a/src/gui/widgets/window.h +++ b/src/gui/widgets/window.h @@ -384,6 +384,9 @@ class Window : public gcn::Window, gcn::WidgetListener bool isResizeAllowed(gcn::MouseEvent &event); + void setCaptionFont(gcn::Font *font) + { mCaptionFont = font; } + private: enum ResizeHandles { @@ -442,6 +445,7 @@ class Window : public gcn::Window, gcn::WidgetListener static const unsigned resizeBorderWidth = 10; GraphicsVertexes *mVertexes; bool mRedraw; + gcn::Font *mCaptionFont; }; #endif |