aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/PanelObject.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-04-09 14:30:07 -0400
committerKen Moore <ken@ixsystems.com>2018-04-09 14:30:07 -0400
commitfcc83830947c56b04680fa18b97a5b0b05097e04 (patch)
treef14068ea39ab2bc17e1ecceaa9fab806315eb8a6 /src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/PanelObject.h
parentRemoved dangling code (diff)
downloadlumina-fcc83830947c56b04680fa18b97a5b0b05097e04.tar.gz
lumina-fcc83830947c56b04680fa18b97a5b0b05097e04.tar.bz2
lumina-fcc83830947c56b04680fa18b97a5b0b05097e04.zip
Add in the widgets-based version of panels.
This seems to be working fine right now - just need to "turn on" the plugins later once we have a couple for testing.
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/PanelObject.h')
-rw-r--r--src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/PanelObject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/PanelObject.h b/src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/PanelObject.h
index 945deec0..5ae75ea4 100644
--- a/src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/PanelObject.h
+++ b/src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/PanelObject.h
@@ -41,6 +41,7 @@ public:
Q_INVOKABLE int height();
Q_INVOKABLE bool isVertical();
Q_INVOKABLE QStringList plugins();
+ Q_INVOKABLE QRect geometry(){ return geom; }
public slots:
void setBackground(QString fileOrColor);
bgstack15