aboutsummaryrefslogtreecommitdiff
path: root/gui/object.h
diff options
context:
space:
mode:
authorEugene Sandulenko2006-03-07 13:41:36 +0000
committerEugene Sandulenko2006-03-07 13:41:36 +0000
commit1eff73cb412c6c403be82cde77ee61b9944f805e (patch)
tree532b9085f3093085034ea779732312d13170b5e0 /gui/object.h
parent059c7a0296fdf71e80caf15092d3f629a6c43122 (diff)
downloadscummvm-rg350-1eff73cb412c6c403be82cde77ee61b9944f805e.tar.gz
scummvm-rg350-1eff73cb412c6c403be82cde77ee61b9944f805e.tar.bz2
scummvm-rg350-1eff73cb412c6c403be82cde77ee61b9944f805e.zip
GUI widget positions:
o Add 'true' and 'false' constants o add .visible widget property o allow dots to be part of section and key names in configs svn-id: r21123
Diffstat (limited to 'gui/object.h')
-rw-r--r--gui/object.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/object.h b/gui/object.h
index c9fe097a06..5067ab8354 100644
--- a/gui/object.h
+++ b/gui/object.h
@@ -59,11 +59,12 @@ class GuiObject : public CommandReceiver {
protected:
int16 _x, _y;
uint16 _w, _h;
+ Common::String _name;
Widget *_firstWidget;
public:
- GuiObject(int x, int y, int w, int h) : _x(x), _y(y), _w(w), _h(h), _firstWidget(0) { }
+ GuiObject(int x, int y, int w, int h) : _x(x), _y(y), _w(w), _h(h), _firstWidget(0), _name("") { }
GuiObject(Common::String name);
virtual int16 getAbsX() const { return _x; }