diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-09-12 00:34:54 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-09-12 00:34:54 +0000 |
commit | 9925fc58bcca4faf6f6a356ace24acdf19556560 (patch) | |
tree | ba039e157eb6838fcfe0e2d178c92e1f86e2d08e /kdesktop/lock/main.cc | |
parent | 1f40ada72d693d681ec6a32c2ef717e8dd73b5bb (diff) | |
download | tdebase-9925fc58bcca4faf6f6a356ace24acdf19556560.tar.gz tdebase-9925fc58bcca4faf6f6a356ace24acdf19556560.zip |
Fix system modal dialogs
Fix shutdown background
Add code to make the desktop locking system use the system window decorations and generally use the same theme and style as the active desktop
This code is disabled for now, but can be enabled via the two new static variables in kdesktop/lock/main.cc
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1252900 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdesktop/lock/main.cc')
-rw-r--r-- | kdesktop/lock/main.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kdesktop/lock/main.cc b/kdesktop/lock/main.cc index 6e032bebb..667becaa0 100644 --- a/kdesktop/lock/main.cc +++ b/kdesktop/lock/main.cc @@ -34,6 +34,10 @@ #include <X11/Xlib.h> #include <fixx11h.h> +// [FIXME] These settings should be user configurable! +bool trinity_desktop_lock_use_system_modal_dialogs = FALSE; +bool trinity_desktop_lock_delay_screensaver_start = FALSE; + bool MyApp::x11EventFilter( XEvent *ev ) { if (ev->type == XKeyPress || ev->type == ButtonPress) |