aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/NativeEmbedWidget.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-07-20 17:17:54 -0400
committerKen Moore <ken@ixsystems.com>2017-07-20 17:17:54 -0400
commit334bb3d2ebb26ea518c0f2c98490d79d6b3e77ef (patch)
treec211f9cbb2ca6a03d75fe1b95abb71d82bf99b10 /src-qt5/core/libLumina/NativeEmbedWidget.h
parentAdd a window animation framework, with 7 visibility animations for starters. (diff)
downloadlumina-334bb3d2ebb26ea518c0f2c98490d79d6b3e77ef.tar.gz
lumina-334bb3d2ebb26ea518c0f2c98490d79d6b3e77ef.tar.bz2
lumina-334bb3d2ebb26ea518c0f2c98490d79d6b3e77ef.zip
Get the compositing and window interactions all cleaned up. Seems to work great now.
Diffstat (limited to 'src-qt5/core/libLumina/NativeEmbedWidget.h')
-rw-r--r--src-qt5/core/libLumina/NativeEmbedWidget.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src-qt5/core/libLumina/NativeEmbedWidget.h b/src-qt5/core/libLumina/NativeEmbedWidget.h
index 756c8317..65e03c51 100644
--- a/src-qt5/core/libLumina/NativeEmbedWidget.h
+++ b/src-qt5/core/libLumina/NativeEmbedWidget.h
@@ -25,6 +25,7 @@ private:
NativeWindow *WIN;
QSize winSize;
QImage winImage;
+ bool paused;
private slots:
//Simplification functions
@@ -42,7 +43,13 @@ public:
bool detachWindow();
bool isEmbedded(); //status of the embed
+
+
public slots:
+ //Pause/resume
+ void pause();
+ void resume();
+
void resyncWindow();
void repaintWindow();
bgstack15