diff options
author | Ken Moore <ken@ixsystems.com> | 2017-08-31 21:59:44 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-08-31 21:59:44 -0400 |
commit | aa64ef84cd104cc9364ebf480117174540f69a88 (patch) | |
tree | 756030b17e2df6995875283ba144dd3d308f2a9f /src-qt5/core/libLumina/RootSubWindow.h | |
parent | A bit more cleanup. Nothing too special. (diff) | |
download | lumina-aa64ef84cd104cc9364ebf480117174540f69a88.tar.gz lumina-aa64ef84cd104cc9364ebf480117174540f69a88.tar.bz2 lumina-aa64ef84cd104cc9364ebf480117174540f69a88.zip |
Some more cleanup on Lumina2:
1) Get the JsonMenu plugin up and running again for the context menu
2) Get the LIconCache integrated into the context menu (replacing the old LXDG::findIcon calls).
3) Get the window property events working!!! (finally)
4) Start getting some automatic window-verification put in place (for snapping windows to various places and such).
Diffstat (limited to 'src-qt5/core/libLumina/RootSubWindow.h')
-rw-r--r-- | src-qt5/core/libLumina/RootSubWindow.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src-qt5/core/libLumina/RootSubWindow.h b/src-qt5/core/libLumina/RootSubWindow.h index c4dd2e0b..c1964724 100644 --- a/src-qt5/core/libLumina/RootSubWindow.h +++ b/src-qt5/core/libLumina/RootSubWindow.h @@ -67,7 +67,7 @@ private: public slots: void giveMouseFocus(){ WinWidget->raiseWindow(); } void removeMouseFocus(){ WinWidget->lowerWindow(); } - void giveKeyboardFocus(){ WIN->requestProperty(NativeWindow::Active, true); } + void giveKeyboardFocus(){ WIN->requestProperty(NativeWindow::Active, true, true); } void clientClosed(); void LoadAllProperties(); @@ -99,7 +99,9 @@ protected: //void enterEvent(QEvent *ev); void moveEvent(QMoveEvent *ev); - +signals: + void windowMoved(RootSubWindow*); + void windowAnimFinished(); }; #endif |