aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/RootSubWindow.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/RootSubWindow.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/RootSubWindow.h')
-rw-r--r--src-qt5/core/libLumina/RootSubWindow.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src-qt5/core/libLumina/RootSubWindow.h b/src-qt5/core/libLumina/RootSubWindow.h
index de6aba89..079a6201 100644
--- a/src-qt5/core/libLumina/RootSubWindow.h
+++ b/src-qt5/core/libLumina/RootSubWindow.h
@@ -39,6 +39,7 @@ private:
//Functions for getting/setting state
ModState getStateAtPoint(QPoint pt, bool setoffset = false); //generally used for mouse location detection
void setMouseCursor(ModState, bool override = false); //Update the mouse cursor based on state
+
//Native window embed objects
NativeWindow *WIN;
NativeEmbedWidget *WinWidget;
@@ -60,10 +61,14 @@ private:
void LoadProperties( QList< NativeWindow::Property> list);
+ static QStringList validAnimations(NativeWindow::Property);
+
public slots:
void clientClosed();
void LoadAllProperties();
+ QRect clientGlobalGeom();
+
//Button Actions - public so they can be tied to key shortcuts and stuff as well
void toggleMinimize();
void toggleMaximize();
@@ -77,6 +82,8 @@ public slots:
private slots:
void propertiesChanged(QList<NativeWindow::Property>, QList<QVariant>);
+
+ void loadAnimation(QString name, NativeWindow::Property, QVariant nval); //new val
void animFinished();
protected:
bgstack15