diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/gui.cpp | 14 | ||||
-rw-r--r-- | src/gui/gui.h | 5 | ||||
-rw-r--r-- | src/gui/widgets/window.cpp | 85 | ||||
-rw-r--r-- | src/gui/widgets/window.h | 15 | ||||
-rw-r--r-- | src/gui/widgets/windowcontainer.cpp | 10 | ||||
-rw-r--r-- | src/gui/widgets/windowcontainer.h | 6 |
6 files changed, 76 insertions, 59 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 593bed10..70086eb6 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -102,8 +102,7 @@ Gui::Gui(Graphics *graphics): // Initialize top GUI widget WindowContainer *guiTop = new WindowContainer; guiTop->setFocusable(true); - guiTop->setDimension(gcn::Rectangle(0, 0, - graphics->getWidth(), graphics->getHeight())); + guiTop->setSize(graphics->getWidth(), graphics->getHeight()); guiTop->setOpaque(false); Window::setWindowContainer(guiTop); setTop(guiTop); @@ -221,6 +220,17 @@ void Gui::draw() mGraphics->popClipArea(); } +void Gui::videoResized() +{ + WindowContainer *top = static_cast<WindowContainer*>(getTop()); + + int oldWidth = top->getWidth(); + int oldHeight = top->getHeight(); + + top->setSize(graphics->getWidth(), graphics->getHeight()); + top->adjustAfterResize(oldWidth, oldHeight); +} + void Gui::setUseCustomCursor(bool customCursor) { if (customCursor != mCustomCursor) diff --git a/src/gui/gui.h b/src/gui/gui.h index 6b40282f..b8aee7b5 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -63,6 +63,11 @@ class Gui : public gcn::Gui */ void draw(); + /** + * Called when the application window has been resized. + */ + void videoResized(); + gcn::FocusHandler *getFocusHandler() const { return mFocusHandler; } diff --git a/src/gui/widgets/window.cpp b/src/gui/widgets/window.cpp index aa8e6df3..88c6da8a 100644 --- a/src/gui/widgets/window.cpp +++ b/src/gui/widgets/window.cpp @@ -328,7 +328,7 @@ void Window::setVisible(bool visible, bool forceSticky) // Check if the window is off screen... if (visible) - checkIfIsOffScreen(); + ensureOnScreen(); gcn::Window::setVisible((!forceSticky && isSticky()) || visible); } @@ -547,7 +547,7 @@ void Window::loadWindowState() } // Check if the window is off screen... - checkIfIsOffScreen(); + ensureOnScreen(); } void Window::saveWindowState() @@ -666,6 +666,22 @@ void Window::resetToDefaultSize() saveWindowState(); } +void Window::adjustPositionAfterResize(int oldScreenWidth, int oldScreenHeight) +{ + gcn::Rectangle dimension = getDimension(); + + // If window was aligned to the right or bottom, keep it there + const int rightMargin = oldScreenWidth - (getX() + getWidth()); + const int bottomMargin = oldScreenHeight - (getY() + getHeight()); + if (getX() > 0 && getX() > rightMargin) + dimension.x = graphics->getWidth() - rightMargin - getWidth(); + if (getY() > 0 && getY() > bottomMargin) + dimension.y = graphics->getHeight() - bottomMargin - getHeight(); + + setDimension(dimension); + ensureOnScreen(); +} + int Window::getResizeHandles(gcn::MouseEvent &event) { int resizeHandles = 0; @@ -761,62 +777,25 @@ void Window::center() setLocationRelativeTo(getParent()); } -void Window::checkIfIsOffScreen(bool partially, bool entirely) +void Window::ensureOnScreen() { - // Move the window onto screen if it has become off screen - // For instance, because of resolution change... - - // First of all, don't deal when a window hasn't got - // any size initialized yet... + // Skip when a window hasn't got any size initialized yet if (getWidth() == 0 && getHeight() == 0) return; - // Made partially the default behaviour - if (!partially && !entirely) - partially = true; - - // Keep guichan window inside screen (supports resizing any side) + gcn::Rectangle dimension = getDimension(); - gcn::Rectangle winDimension = getDimension(); + // Check the left and bottom screen boundaries + if (dimension.x + dimension.width > graphics->getWidth()) + dimension.x = graphics->getWidth() - dimension.width; + if (dimension.y + dimension.height > graphics->getHeight()) + dimension.y = graphics->getHeight() - dimension.height; - if (winDimension.x < 0) - { - winDimension.width += winDimension.x; - winDimension.x = 0; - } - if (winDimension.y < 0) - { - winDimension.height += winDimension.y; - winDimension.y = 0; - } + // But never allow the windows to disappear in to the right and top + if (dimension.x < 0) + dimension.x = 0; + if (dimension.y < 0) + dimension.y = 0; - // Look if the window is partially off-screen limits... - if (partially) - { - if (winDimension.x + winDimension.width > graphics->getWidth()) - { - winDimension.x = graphics->getWidth() - winDimension.width; - } - - if (winDimension.y + winDimension.height > graphics->getHeight()) - { - winDimension.y = graphics->getHeight() - winDimension.height; - } - setDimension(winDimension); - return; - } - - if (entirely) - { - if (winDimension.x > graphics->getWidth()) - { - winDimension.x = graphics->getWidth() - winDimension.width; - } - - if (winDimension.y > graphics->getHeight()) - { - winDimension.y = graphics->getHeight() - winDimension.height; - } - } - setDimension(winDimension); + setDimension(dimension); } diff --git a/src/gui/widgets/window.h b/src/gui/widgets/window.h index 64631287..945e3276 100644 --- a/src/gui/widgets/window.h +++ b/src/gui/widgets/window.h @@ -295,6 +295,13 @@ class Window : public gcn::Window, gcn::WidgetListener virtual void resetToDefaultSize(); /** + * Adjusts the window position after the application window has been + * resized. + */ + void adjustPositionAfterResize(int oldScreenWidth, + int oldScreenHeight); + + /** * Gets the layout handler for this window. */ Layout &getLayout(); @@ -352,11 +359,11 @@ class Window : public gcn::Window, gcn::WidgetListener }; /** - * Check if the window is off-screen and then move it to be visible - * again. This is internally used by loadWindowState - * and setVisible(true) members. + * Ensures the window is on the screen, moving it if necessary. This is + * used by loadWindowState and setVisible(true), and when the screen + * is resized. */ - void checkIfIsOffScreen(bool partially = true, bool entirely = true); + void ensureOnScreen(); /** * Determines if the mouse is in a resize area and returns appropriate diff --git a/src/gui/widgets/windowcontainer.cpp b/src/gui/widgets/windowcontainer.cpp index 7d5ecd37..99bf7b9f 100644 --- a/src/gui/widgets/windowcontainer.cpp +++ b/src/gui/widgets/windowcontainer.cpp @@ -21,6 +21,8 @@ #include "gui/widgets/windowcontainer.h" +#include "gui/widgets/window.h" + #include "utils/dtor.h" WindowContainer *windowContainer = NULL; @@ -37,3 +39,11 @@ void WindowContainer::scheduleDelete(gcn::Widget *widget) { mDeathList.push_back(widget); } + +void WindowContainer::adjustAfterResize(int oldScreenWidth, + int oldScreenHeight) +{ + for (WidgetListIterator i = mWidgets.begin(); i != mWidgets.end(); ++i) + if (Window *window = dynamic_cast<Window*>(*i)) + window->adjustPositionAfterResize(oldScreenWidth, oldScreenHeight); +} diff --git a/src/gui/widgets/windowcontainer.h b/src/gui/widgets/windowcontainer.h index 2ec65d15..ce6989c6 100644 --- a/src/gui/widgets/windowcontainer.h +++ b/src/gui/widgets/windowcontainer.h @@ -45,6 +45,12 @@ class WindowContainer : public Container */ void scheduleDelete(gcn::Widget *widget); + /** + * Ensures that all visible windows are on the screen after the screen + * has been resized. + */ + void adjustAfterResize(int oldScreenWidth, int oldScreenHeight); + private: /** * List of widgets that are scheduled to be deleted. |