aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/NativeEmbedWidget.h
diff options
context:
space:
mode:
authorWeblate <noreply@weblate.org>2017-07-21 16:38:39 +0000
committerWeblate <noreply@weblate.org>2017-07-21 16:38:39 +0000
commit3df1486ca0c7ccd701386d0e5280650ce71aa773 (patch)
tree98080650bb7e680f28df520da61ae4e1463c1339 /src-qt5/core/libLumina/NativeEmbedWidget.h
parentTranslated using Weblate (Catalan) (diff)
parentMerge branch 'master' of https://github.com/trueos/lumina (diff)
downloadlumina-3df1486ca0c7ccd701386d0e5280650ce71aa773.tar.gz
lumina-3df1486ca0c7ccd701386d0e5280650ce71aa773.tar.bz2
lumina-3df1486ca0c7ccd701386d0e5280650ce71aa773.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src-qt5/core/libLumina/NativeEmbedWidget.h')
-rw-r--r--src-qt5/core/libLumina/NativeEmbedWidget.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src-qt5/core/libLumina/NativeEmbedWidget.h b/src-qt5/core/libLumina/NativeEmbedWidget.h
index 78c11dfc..65e03c51 100644
--- a/src-qt5/core/libLumina/NativeEmbedWidget.h
+++ b/src-qt5/core/libLumina/NativeEmbedWidget.h
@@ -24,6 +24,8 @@ class NativeEmbedWidget : public QWidget{
private:
NativeWindow *WIN;
QSize winSize;
+ QImage winImage;
+ bool paused;
private slots:
//Simplification functions
@@ -41,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