diff options
author | Yohann Ferreira <bertram@cegetel.net> | 2005-09-29 19:46:12 +0000 |
---|---|---|
committer | Yohann Ferreira <bertram@cegetel.net> | 2005-09-29 19:46:12 +0000 |
commit | aac98cf8bcde36ba50ab45254866afc365a7908a (patch) | |
tree | 4e2ef7600f2ebd101484a305d3df6ca5135b39ef /src/gui/window.cpp | |
parent | c00d3acf930359740ae6125533b5233ae06b765e (diff) | |
download | mana-aac98cf8bcde36ba50ab45254866afc365a7908a.tar.gz mana-aac98cf8bcde36ba50ab45254866afc365a7908a.tar.bz2 mana-aac98cf8bcde36ba50ab45254866afc365a7908a.tar.xz mana-aac98cf8bcde36ba50ab45254866afc365a7908a.zip |
Improved a lot windows reset to default size and pos. Also corrected a few the default win position. And moved the setposition from game to each win, to clarify the code.
Diffstat (limited to 'src/gui/window.cpp')
-rw-r--r-- | src/gui/window.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/gui/window.cpp b/src/gui/window.cpp index 0446e6eb..5b125bd2 100644 --- a/src/gui/window.cpp +++ b/src/gui/window.cpp @@ -441,3 +441,24 @@ void Window::loadWindowState() } } } + +void Window::setDefaultSize(int defaultX, int defaultY, int defaultWidth, int defaultHeight) +{ + this->defaultX = defaultX; + this->defaultY = defaultY; + this->defaultWidth = defaultWidth; + this->defaultHeight = defaultHeight; + + setPosition(defaultX, defaultY); + setContentSize(defaultWidth, defaultHeight); +} + +void Window::resetToDefaultSize() +{ + setPosition(defaultX, defaultY); + setContentSize(defaultWidth, defaultHeight); + if (mContent != NULL) + { + mContent->setDimension(getContentDimension()); + } +} |