aboutsummaryrefslogtreecommitdiff
path: root/gui/dialog.h
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-05-20 15:03:26 +0000
committerTorbjörn Andersson2005-05-20 15:03:26 +0000
commit801db4a5159728619d502ade157f81615ba93375 (patch)
tree0aa875e4e4df3fa17bf0f8553ef3ad9d0841af0b /gui/dialog.h
parent5eaedacce643c6a2e5a77d39fa61b8b4c67566b6 (diff)
downloadscummvm-rg350-801db4a5159728619d502ade157f81615ba93375.tar.gz
scummvm-rg350-801db4a5159728619d502ade157f81615ba93375.tar.bz2
scummvm-rg350-801db4a5159728619d502ade157f81615ba93375.zip
Added big editable text widget, and removed some cruft. I think this means
that all our widgets are able to scale themselves now, but I could be mistaken. svn-id: r18192
Diffstat (limited to 'gui/dialog.h')
-rw-r--r--gui/dialog.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/gui/dialog.h b/gui/dialog.h
index ec024d5df1..a45f26e026 100644
--- a/gui/dialog.h
+++ b/gui/dialog.h
@@ -88,16 +88,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);
-
SliderWidget *addSlider(GuiObject *boss, int x, int y, uint32 cmd, WidgetSize ws = kDefaultWidgetSize);
- SliderWidget *addSlider(int x, int y, uint32 cmd, WidgetSize ws = kDefaultWidgetSize);
-
PopUpWidget *addPopUp(GuiObject *boss, int x, int y, int w, const Common::String &label, uint labelWidth = 0, WidgetSize ws = kDefaultWidgetSize);
- PopUpWidget *addPopUp(int x, int y, int w, const Common::String &label, uint labelWidth = 0, WidgetSize ws = kDefaultWidgetSize);
void setResult(int result) { _result = result; }
int getResult() const { return _result; }