aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop/src-cpp/PanelObject.h
diff options
context:
space:
mode:
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.h3
1 files changed, 2 insertions, 1 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 5ae75ea4..645e20c0 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
@@ -25,7 +25,7 @@ class PanelObject : public QObject {
private:
QString panel_id, bg;
- QRect geom;
+ QRect geom, fullside_geom;
QStringList panel_plugins;
public:
@@ -42,6 +42,7 @@ public:
Q_INVOKABLE bool isVertical();
Q_INVOKABLE QStringList plugins();
Q_INVOKABLE QRect geometry(){ return geom; }
+ Q_INVOKABLE QRect fullSideGeometry(){ return fullside_geom; }
public slots:
void setBackground(QString fileOrColor);
bgstack15