aboutsummaryrefslogtreecommitdiff
path: root/gui/dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/dialog.h')
-rw-r--r--gui/dialog.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/gui/dialog.h b/gui/dialog.h
index d17d3a5ad1..71edb63ee3 100644
--- a/gui/dialog.h
+++ b/gui/dialog.h
@@ -48,15 +48,15 @@ protected:
Widget *_focusedWidget;
Widget *_dragWidget;
bool _visible;
- uint16 _drawingHints;
+
+ Theme::DialogBackground _backgroundType;
private:
int _result;
- bool _dimsInactive;
public:
- Dialog(int x, int y, int w, int h, bool dimsInactive = true);
- Dialog(const Common::String &name, bool dimsInactive = true);
+ Dialog(int x, int y, int w, int h);
+ Dialog(const Common::String &name);
virtual int runModal();
@@ -90,9 +90,6 @@ protected:
void setResult(int result) { _result = result; }
int getResult() const { return _result; }
-
- // Whether dialog dims all underneath dialogs or not when active
- bool dimsInactive() { return _dimsInactive; }
};
} // End of namespace GUI