aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/desktop-plugins/messagecenter/LXDG-DBusNotifier.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-01-19 16:51:58 -0500
committerKen Moore <ken@pcbsd.org>2015-01-19 16:51:58 -0500
commit8f6e2f0ded898ec48fdf0fd7f4ba4464879061c2 (patch)
tree67ce696889f3435d258779e23a1d4883b7b38eef /lumina-desktop/desktop-plugins/messagecenter/LXDG-DBusNotifier.h
parentClean up the active window detection/usage for the task manager. (diff)
downloadlumina-8f6e2f0ded898ec48fdf0fd7f4ba4464879061c2.tar.gz
lumina-8f6e2f0ded898ec48fdf0fd7f4ba4464879061c2.tar.bz2
lumina-8f6e2f0ded898ec48fdf0fd7f4ba4464879061c2.zip
Fix the global->local coordinates transformation for calculating whether the mouse has left a panel or not. Now it works properly on all screen edges.
Diffstat (limited to 'lumina-desktop/desktop-plugins/messagecenter/LXDG-DBusNotifier.h')
-rw-r--r--lumina-desktop/desktop-plugins/messagecenter/LXDG-DBusNotifier.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/lumina-desktop/desktop-plugins/messagecenter/LXDG-DBusNotifier.h b/lumina-desktop/desktop-plugins/messagecenter/LXDG-DBusNotifier.h
new file mode 100644
index 00000000..64413e95
--- /dev/null
+++ b/lumina-desktop/desktop-plugins/messagecenter/LXDG-DBusNotifier.h
@@ -0,0 +1,17 @@
+//===========================================
+// Lumina-DE source code
+// Copyright (c) 2015, Ken Moore
+// Available under the 3-clause BSD license
+// See the LICENSE file for full details
+//===========================================
+// Simple DBUS message handler for the FreeDesktop desktop notifications specification
+
+
+class LXDG-DBusNotifier : public QDBusVirtualObkect{
+ Q_OBJECT
+public:
+
+private:
+
+
+};
bgstack15