summaryrefslogtreecommitdiff
path: root/src/gui/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/window.h')
-rw-r--r--src/gui/window.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gui/window.h b/src/gui/window.h
index 05d9291b..a48d3851 100644
--- a/src/gui/window.h
+++ b/src/gui/window.h
@@ -179,6 +179,18 @@ class Window : public gcn::Window
*/
void loadWindowState();
+ /**
+ * Set the default win pos and size.
+ * (which can be different of the actual ones.)
+ */
+ void setDefaultSize(int defaultX, int defaultY,
+ int defaultWidth, int defaultHeight);
+
+ /**
+ * Reset the win pos and size to default.
+ * Don't forget to set defaults first.
+ */
+ void resetToDefaultSize();
protected:
gcn::Container *chrome; /**< Contained container */
@@ -195,6 +207,8 @@ class Window : public gcn::Window
int minWinHeight; /**< Minimum window height */
int maxWinWidth; /**< Maximum window width */
int maxWinHeight; /**< Maximum window height */
+ int defaultX, defaultY; /**< Default Win Pos and size */
+ int defaultWidth, defaultHeight;
/** The window container windows add themselves to. */
static WindowContainer* windowContainer;