aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/NativeWindow.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-07-13 14:02:59 -0400
committerKen Moore <ken@ixsystems.com>2017-07-13 14:04:25 -0400
commit6a2af03c68033a9683de619b4ae6493a4f7254b7 (patch)
treeea0d5ca678e1177c3efa546664d09557c4849727 /src-qt5/core/libLumina/NativeWindow.h
parentinital commit of the lumina-theme-engine (diff)
downloadlumina-6a2af03c68033a9683de619b4ae6493a4f7254b7.tar.gz
lumina-6a2af03c68033a9683de619b4ae6493a4f7254b7.tar.bz2
lumina-6a2af03c68033a9683de619b4ae6493a4f7254b7.zip
Large update to the window embedding systems - almost have the compositing up and running.
Diffstat (limited to 'src-qt5/core/libLumina/NativeWindow.h')
-rw-r--r--src-qt5/core/libLumina/NativeWindow.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core/libLumina/NativeWindow.h b/src-qt5/core/libLumina/NativeWindow.h
index 62bb74b5..5fa194c9 100644
--- a/src-qt5/core/libLumina/NativeWindow.h
+++ b/src-qt5/core/libLumina/NativeWindow.h
@@ -95,6 +95,7 @@ signals:
void RequestPropertiesChange(WId, QList<NativeWindow::Property>, QList<QVariant>);
void WindowClosed(WId);
void WindowNotResponding(WId); //will be sent out if a window does not respond to a ping request
+ void VisualChanged();
//Action Requests (not automatically emitted - typically used to ask the WM to do something)
//Note: "WId" should be the NativeWindow id()
bgstack15