aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/SystemWindow.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-04-28 10:40:48 -0400
committerKen Moore <ken@pcbsd.org>2015-04-28 10:40:48 -0400
commit6d39518bed7e2cb8f135a78b1064855602e17767 (patch)
tree6f435af9f2c43f8dc035b8ded4c313e65d349784 /lumina-desktop/SystemWindow.h
parentFinal fix for the new panel window-reactivation routine: only re-activate the... (diff)
downloadlumina-6d39518bed7e2cb8f135a78b1064855602e17767.tar.gz
lumina-6d39518bed7e2cb8f135a78b1064855602e17767.tar.bz2
lumina-6d39518bed7e2cb8f135a78b1064855602e17767.zip
Update the system window a bit and how it is used in the session. Now there is only a single system window per session, and it is simply shown/hidden as necesary. This allow it to become visible *much* faster than creating the window from scratch every time.
Diffstat (limited to 'lumina-desktop/SystemWindow.h')
-rw-r--r--lumina-desktop/SystemWindow.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lumina-desktop/SystemWindow.h b/lumina-desktop/SystemWindow.h
index 4b1fab44..bf7a6b94 100644
--- a/lumina-desktop/SystemWindow.h
+++ b/lumina-desktop/SystemWindow.h
@@ -26,6 +26,8 @@ public:
SystemWindow();
~SystemWindow();
+ void updateWindow();
+
private:
Ui::SystemWindow *ui;
bgstack15