aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-01-29 14:19:45 -0500
committerKen Moore <ken@ixsystems.com>2018-01-29 14:19:45 -0500
commit06622b28748bcf07ffe75ac9427e4a00373e99d7 (patch)
treecfcacd852b0d528c1a24ada09adfc128f6925b4a /src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h
parentAdd a quick 10-second failover timer to LScreensaver: (diff)
downloadlumina-06622b28748bcf07ffe75ac9427e4a00373e99d7.tar.gz
lumina-06622b28748bcf07ffe75ac9427e4a00373e99d7.tar.bz2
lumina-06622b28748bcf07ffe75ac9427e4a00373e99d7.zip
Some more updates for Lumina 2:
Almost have the transparent windows getting layered properly.
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h')
-rw-r--r--src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h b/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h
index 5810fc36..74849cf4 100644
--- a/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h
+++ b/src-qt5/core/lumina-desktop-unified/src-events/NativeWindowSystem.h
@@ -80,6 +80,9 @@ public:
static Qt::Key KeycodeToQt(int keycode);
static NativeWindowSystem::MouseButton MouseToQt(int button);
+ void raiseWindow(NativeWindowObject *win);
+ void lowerWindow(NativeWindowObject *win);
+
public slots:
//These are the slots which are typically only used by the desktop system itself or the NativeWindowEventFilter
bgstack15