diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-08-31 23:24:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-08-31 23:24:57 +0300 |
commit | adeb8e6091694e228f081ca8843e101ae598f26c (patch) | |
tree | a8a9caf4cbaf6b5d9a99f9b5e4e56f9b3203aa38 /src/gui/chatwindow.cpp | |
parent | 6d349121a70377723e53b92a8990e56ee3e4fd88 (diff) | |
download | plus-adeb8e6091694e228f081ca8843e101ae598f26c.tar.gz plus-adeb8e6091694e228f081ca8843e101ae598f26c.tar.bz2 plus-adeb8e6091694e228f081ca8843e101ae598f26c.tar.xz plus-adeb8e6091694e228f081ca8843e101ae598f26c.zip |
Add ability to lock any window position and size. Using sticky image for this.
Diffstat (limited to 'src/gui/chatwindow.cpp')
-rw-r--r-- | src/gui/chatwindow.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/chatwindow.cpp b/src/gui/chatwindow.cpp index 9c75320a6..784fb812a 100644 --- a/src/gui/chatwindow.cpp +++ b/src/gui/chatwindow.cpp @@ -167,6 +167,8 @@ ChatWindow::ChatWindow(): setResizable(true); setDefaultVisible(true); setSaveVisible(true); + setStickyButtonLock(true); + setDefaultSize(600, 123, ImageRect::LOWER_LEFT); setMinWidth(150); setMinHeight(90); @@ -660,7 +662,7 @@ void ChatWindow::mouseDragged(gcn::MouseEvent &event) if (event.isConsumed()) return; - if (isMovable() && mMoved) + if (canMove() && isMovable() && mMoved) { int newX = std::max(0, getX() + event.getX() - mDragOffsetX); int newY = std::max(0, getY() + event.getY() - mDragOffsetY); |