From 4406b2fd90a5d4656bc923bf5c751e4c5250a0d2 Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Mon, 22 Feb 2010 00:02:09 -0700 Subject: Cleanup some popup-related code and make sure BeingPopup is included --- src/gui/widgets/popup.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/gui/widgets/popup.cpp') diff --git a/src/gui/widgets/popup.cpp b/src/gui/widgets/popup.cpp index 6f551317..391b0eed 100644 --- a/src/gui/widgets/popup.cpp +++ b/src/gui/widgets/popup.cpp @@ -170,3 +170,19 @@ void Popup::scheduleDelete() windowContainer->scheduleDelete(this); } +void Popup::position(int x, int y) +{ + const int distance = 20; + + int posX = std::max(0, x - getWidth() / 2); + int posY = y + distance; + + if (posX > graphics->getWidth() - getWidth()) + posX = graphics->getWidth() - getWidth(); + if (posY > graphics->getHeight() - getHeight()) + posY = y - getHeight() - distance; + + setPosition(posX, posY); + setVisible(true); + requestMoveToTop(); +} -- cgit v1.2.3-70-g09d2