diff options
author | Torbjörn Andersson | 2005-05-18 14:11:53 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2005-05-18 14:11:53 +0000 |
commit | 4aac7819d19251b99493570df72646d90ac19abf (patch) | |
tree | 735108e7b7a994e3b196e1c741ab07dded49b3ea /gui/dialog.h | |
parent | 81287495e954c17aa864416a26c08e0ab2753c76 (diff) | |
download | scummvm-rg350-4aac7819d19251b99493570df72646d90ac19abf.tar.gz scummvm-rg350-4aac7819d19251b99493570df72646d90ac19abf.tar.bz2 scummvm-rg350-4aac7819d19251b99493570df72646d90ac19abf.zip |
Some more scaling work. Parts of the options dialogs scale themselves. Some
of them better than others.
svn-id: r18165
Diffstat (limited to 'gui/dialog.h')
-rw-r--r-- | gui/dialog.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/dialog.h b/gui/dialog.h index 0309709a51..77e372144a 100644 --- a/gui/dialog.h +++ b/gui/dialog.h @@ -87,7 +87,9 @@ protected: Widget *findWidget(int x, int y); // Find the widget at pos x,y if any + ButtonWidget *addButton(GuiObject *boss, int x, int y, const Common::String &label, uint32 cmd, char hotkey, WidgetSize ws = kDefaultWidgetSize); ButtonWidget *addButton(int x, int y, const Common::String &label, uint32 cmd, char hotkey, WidgetSize ws = kDefaultWidgetSize); + CheckboxWidget *addCheckbox(GuiObject *boss, int x, int y, const Common::String &label, uint32 cmd, char hotkey, WidgetSize ws = kDefaultWidgetSize); CheckboxWidget *addCheckbox(int x, int y, const Common::String &label, uint32 cmd, char hotkey, WidgetSize ws = kDefaultWidgetSize); |