diff options
author | Ken Moore <ken@ixsystems.com> | 2017-08-27 11:29:43 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-08-27 11:29:43 -0400 |
commit | 39c9a096ef2bee1e224561ed5daa6a63a9018b36 (patch) | |
tree | 320766d6583e8fcb9682412d79246182a19c38c2 /src-qt5/core/libLumina/NativeEmbedWidget.h | |
parent | Add 3 simple window arrangements to Lumina 2. (diff) | |
download | lumina-39c9a096ef2bee1e224561ed5daa6a63a9018b36.tar.gz lumina-39c9a096ef2bee1e224561ed5daa6a63a9018b36.tar.bz2 lumina-39c9a096ef2bee1e224561ed5daa6a63a9018b36.zip |
A bunch more work on Lumina 2 mouse focus settings and such.
Diffstat (limited to 'src-qt5/core/libLumina/NativeEmbedWidget.h')
-rw-r--r-- | src-qt5/core/libLumina/NativeEmbedWidget.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/NativeEmbedWidget.h b/src-qt5/core/libLumina/NativeEmbedWidget.h index 523ff790..7e129fa3 100644 --- a/src-qt5/core/libLumina/NativeEmbedWidget.h +++ b/src-qt5/core/libLumina/NativeEmbedWidget.h @@ -43,9 +43,9 @@ public: bool detachWindow(); bool isEmbedded(); //status of the embed +public slots: void raiseWindow(); -public slots: //Pause/resume void pause(); void resume(); @@ -59,6 +59,8 @@ protected: void showEvent(QShowEvent *ev); void hideEvent(QHideEvent *ev); void paintEvent(QPaintEvent *ev); + void enterEvent(QEvent *ev); + void leaveEvent(QEvent *ev); bool nativeEvent(const QByteArray &eventType, void *message, long *result); }; |