You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
554 lines
20 KiB
554 lines
20 KiB
15 years ago
|
/* This file is part of the KDE project
|
||
|
Copyright (C) 1999 David Faure
|
||
|
Copyright (c) 2003 Oswald Buddenhagen <ossi@kde.org>
|
||
13 years ago
|
Copyright (c) 2010-2012 Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||
15 years ago
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2 of the License, or (at your option) any later version.
|
||
|
|
||
|
This library is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public License
|
||
|
along with this library; see the file COPYING.LIB. If not, write to
|
||
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
12 years ago
|
#include <config.h>
|
||
|
|
||
15 years ago
|
#include "lockprocess.h"
|
||
|
#include "main.h"
|
||
|
#include "kdesktopsettings.h"
|
||
|
|
||
12 years ago
|
#include <tqfileinfo.h>
|
||
|
|
||
12 years ago
|
#include <tdecmdlineargs.h>
|
||
12 years ago
|
#include <tdelocale.h>
|
||
|
#include <tdeglobal.h>
|
||
15 years ago
|
#include <kdebug.h>
|
||
12 years ago
|
#include <tdeglobalsettings.h>
|
||
15 years ago
|
#include <dcopref.h>
|
||
13 years ago
|
#include <ksimpleconfig.h>
|
||
12 years ago
|
#include <kstandarddirs.h>
|
||
15 years ago
|
|
||
13 years ago
|
#include <tdmtsak.h>
|
||
13 years ago
|
|
||
15 years ago
|
#include <stdlib.h>
|
||
|
|
||
12 years ago
|
#if defined(Q_WS_X11) && defined(HAVE_XRENDER) && TQT_VERSION >= 0x030300
|
||
|
#define COMPOSITE
|
||
|
#endif
|
||
|
|
||
|
#ifdef COMPOSITE
|
||
|
# include <X11/Xlib.h>
|
||
|
# include <X11/extensions/Xrender.h>
|
||
|
# include <fixx11h.h>
|
||
|
# include <dlfcn.h>
|
||
|
#else
|
||
|
# include <X11/Xlib.h>
|
||
|
# include <fixx11h.h>
|
||
|
#endif
|
||
15 years ago
|
|
||
13 years ago
|
|
||
12 years ago
|
TQXLibWindowList trinity_desktop_lock_hidden_window_list;
|
||
|
|
||
13 years ago
|
// [FIXME] Add GUI configuration checkboxes for these three settings (see kdesktoprc [ScreenSaver] UseUnmanagedLockWindows, DelaySaverStart, and UseTDESAK)
|
||
13 years ago
|
bool trinity_desktop_lock_use_system_modal_dialogs = FALSE;
|
||
|
bool trinity_desktop_lock_delay_screensaver_start = FALSE;
|
||
13 years ago
|
bool trinity_desktop_lock_use_sak = FALSE;
|
||
12 years ago
|
bool trinity_desktop_lock_hide_active_windows = FALSE;
|
||
11 years ago
|
bool trinity_desktop_lock_hide_cancel_button = FALSE;
|
||
13 years ago
|
bool trinity_desktop_lock_forced = FALSE;
|
||
|
|
||
10 years ago
|
LockProcess* trinity_desktop_lock_process = NULL;
|
||
|
|
||
13 years ago
|
bool signalled_forcelock;
|
||
|
bool signalled_dontlock;
|
||
|
bool signalled_securedialog;
|
||
|
bool signalled_blank;
|
||
|
bool signalled_run;
|
||
|
bool in_internal_mode = FALSE;
|
||
|
|
||
12 years ago
|
bool argb_visual = FALSE;
|
||
12 years ago
|
pid_t kdesktop_pid = -1;
|
||
10 years ago
|
bool trinity_desktop_lock_settings_initialized = FALSE;
|
||
12 years ago
|
|
||
|
static void sigusr1_handler(int)
|
||
|
{
|
||
|
signalled_forcelock = TRUE;
|
||
|
}
|
||
|
|
||
|
static void sigusr2_handler(int)
|
||
|
{
|
||
|
signalled_dontlock = TRUE;
|
||
|
}
|
||
|
|
||
|
static void sigusr3_handler(int)
|
||
|
{
|
||
|
signalled_securedialog = TRUE;
|
||
|
}
|
||
|
|
||
|
static void sigusr4_handler(int)
|
||
|
{
|
||
|
signalled_blank = TRUE;
|
||
|
}
|
||
|
|
||
|
static void sigusr5_handler(int)
|
||
|
{
|
||
|
signalled_run = TRUE;
|
||
|
}
|
||
|
|
||
|
static int trapXErrors(Display *, XErrorEvent *)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
15 years ago
|
bool MyApp::x11EventFilter( XEvent *ev )
|
||
|
{
|
||
13 years ago
|
if (ev->type == ButtonPress || ev->type == ButtonRelease || ev->type == MotionNotify) {
|
||
|
emit mouseInteraction(ev);
|
||
|
}
|
||
13 years ago
|
if (ev->type == XKeyPress || ev->type == ButtonPress) {
|
||
15 years ago
|
emit activity();
|
||
13 years ago
|
}
|
||
15 years ago
|
else if (ev->type == MotionNotify) {
|
||
|
time_t tick = time( 0 );
|
||
|
if (tick != lastTick) {
|
||
|
lastTick = tick;
|
||
|
emit activity();
|
||
|
}
|
||
|
}
|
||
12 years ago
|
else if (ev->type == MapNotify) {
|
||
|
// HACK
|
||
12 years ago
|
// Hide all tooltips and notification windows
|
||
12 years ago
|
XMapEvent map_event = ev->xmap;
|
||
|
XWindowAttributes childAttr;
|
||
|
Window childTransient;
|
||
|
if (XGetWindowAttributes(map_event.display, map_event.window, &childAttr) && XGetTransientForHint(map_event.display, map_event.window, &childTransient)) {
|
||
|
if((childAttr.map_state == IsViewable) && (childAttr.override_redirect) && (childTransient)) {
|
||
12 years ago
|
if (!trinity_desktop_lock_hidden_window_list.contains(map_event.window)) {
|
||
|
trinity_desktop_lock_hidden_window_list.append(map_event.window);
|
||
|
}
|
||
|
XLowerWindow(map_event.display, map_event.window);
|
||
12 years ago
|
XFlush(map_event.display);
|
||
12 years ago
|
}
|
||
|
}
|
||
|
}
|
||
12 years ago
|
else if (ev->type == VisibilityNotify) {
|
||
|
// HACK
|
||
|
// Hide all tooltips and notification windows
|
||
|
XVisibilityEvent visibility_event = ev->xvisibility;
|
||
|
XWindowAttributes childAttr;
|
||
|
Window childTransient;
|
||
|
if ((visibility_event.state == VisibilityUnobscured) || (visibility_event.state == VisibilityPartiallyObscured)) {
|
||
|
if (XGetWindowAttributes(visibility_event.display, visibility_event.window, &childAttr) && XGetTransientForHint(visibility_event.display, visibility_event.window, &childTransient)) {
|
||
|
if((childAttr.map_state == IsViewable) && (childAttr.override_redirect) && (childTransient)) {
|
||
|
if (!trinity_desktop_lock_hidden_window_list.contains(visibility_event.window)) {
|
||
|
trinity_desktop_lock_hidden_window_list.append(visibility_event.window);
|
||
|
}
|
||
|
XLowerWindow(visibility_event.display, visibility_event.window);
|
||
12 years ago
|
XFlush(visibility_event.display);
|
||
12 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
12 years ago
|
else if (ev->type == CreateNotify) {
|
||
|
// HACK
|
||
|
// Close all tooltips and notification windows
|
||
|
XCreateWindowEvent create_event = ev->xcreatewindow;
|
||
|
XWindowAttributes childAttr;
|
||
|
Window childTransient;
|
||
12 years ago
|
|
||
|
// XGetWindowAttributes may generate BadWindow errors, so make sure they are silently ignored
|
||
|
int (*oldHandler)(Display *, XErrorEvent *);
|
||
|
oldHandler = XSetErrorHandler(trapXErrors);
|
||
12 years ago
|
if (XGetWindowAttributes(create_event.display, create_event.window, &childAttr) && XGetTransientForHint(create_event.display, create_event.window, &childTransient)) {
|
||
|
if ((childAttr.override_redirect) && (childTransient)) {
|
||
|
if (!trinity_desktop_lock_hidden_window_list.contains(create_event.window)) {
|
||
|
trinity_desktop_lock_hidden_window_list.append(create_event.window);
|
||
|
}
|
||
|
XLowerWindow(create_event.display, create_event.window);
|
||
|
XFlush(create_event.display);
|
||
|
}
|
||
|
}
|
||
12 years ago
|
XSetErrorHandler(oldHandler);
|
||
12 years ago
|
}
|
||
12 years ago
|
else if (ev->type == DestroyNotify) {
|
||
|
XDestroyWindowEvent destroy_event = ev->xdestroywindow;
|
||
|
if (trinity_desktop_lock_hidden_window_list.contains(destroy_event.window)) {
|
||
|
trinity_desktop_lock_hidden_window_list.remove(destroy_event.window);
|
||
|
}
|
||
|
}
|
||
|
#if 0
|
||
12 years ago
|
else if (ev->type == CreateNotify) {
|
||
|
// HACK
|
||
|
// Close all tooltips and notification windows
|
||
|
XCreateWindowEvent create_event = ev->xcreatewindow;
|
||
|
XWindowAttributes childAttr;
|
||
|
Window childTransient;
|
||
|
if (XGetWindowAttributes(create_event.display, create_event.window, &childAttr) && XGetTransientForHint(create_event.display, create_event.window, &childTransient)) {
|
||
|
if ((childAttr.override_redirect) && (childTransient)) {
|
||
|
XDestroyWindow(create_event.display, create_event.window);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
12 years ago
|
#endif
|
||
12 years ago
|
return TDEApplication::x11EventFilter( ev );
|
||
15 years ago
|
}
|
||
|
|
||
|
|
||
12 years ago
|
static TDECmdLineOptions options[] =
|
||
15 years ago
|
{
|
||
|
{ "forcelock", I18N_NOOP("Force session locking"), 0 },
|
||
|
{ "dontlock", I18N_NOOP("Only start screensaver"), 0 },
|
||
13 years ago
|
{ "securedialog", I18N_NOOP("Launch the secure dialog"), 0 },
|
||
15 years ago
|
{ "blank", I18N_NOOP("Only use the blank screensaver"), 0 },
|
||
13 years ago
|
{ "internal <pid>", I18N_NOOP("TDE internal command for background process loading"), 0 },
|
||
12 years ago
|
TDECmdLineLastOption
|
||
15 years ago
|
};
|
||
|
|
||
12 years ago
|
void restore_hidden_override_redirect_windows() {
|
||
|
TQXLibWindowList::iterator it;
|
||
|
for (it = trinity_desktop_lock_hidden_window_list.begin(); it != trinity_desktop_lock_hidden_window_list.end(); ++it) {
|
||
|
Window win = *it;
|
||
|
XRaiseWindow(tqt_xdisplay(), win);
|
||
|
}
|
||
|
}
|
||
|
|
||
15 years ago
|
// -----------------------------------------------------------------------------
|
||
|
|
||
|
int main( int argc, char **argv )
|
||
|
{
|
||
12 years ago
|
TDELocale::setMainCatalogue("kdesktop");
|
||
15 years ago
|
|
||
12 years ago
|
TDECmdLineArgs::init( argc, argv, "kdesktop_lock", I18N_NOOP("KDesktop Locker"), I18N_NOOP("Session Locker for KDesktop"), "2.1" );
|
||
|
TDECmdLineArgs::addCmdLineOptions( options );
|
||
|
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
|
||
15 years ago
|
|
||
|
putenv(strdup("SESSION_MANAGER="));
|
||
|
|
||
12 years ago
|
TDEApplication::disableAutoDcopRegistration(); // not needed
|
||
15 years ago
|
|
||
12 years ago
|
XSetErrorHandler(trapXErrors);
|
||
|
|
||
10 years ago
|
MyApp* app = NULL;
|
||
|
|
||
13 years ago
|
while (1 == 1) {
|
||
|
signalled_forcelock = FALSE;
|
||
|
signalled_dontlock = FALSE;
|
||
|
signalled_securedialog = FALSE;
|
||
|
signalled_blank = FALSE;
|
||
|
signalled_run = FALSE;
|
||
15 years ago
|
|
||
13 years ago
|
int kdesktop_screen_number = 0;
|
||
|
int starting_screen = 0;
|
||
|
|
||
|
bool child = false;
|
||
|
int parent_connection = 0; // socket to the parent saver
|
||
|
TQValueList<int> child_sockets;
|
||
|
|
||
12 years ago
|
if (TDEGlobalSettings::isMultiHead())
|
||
13 years ago
|
{
|
||
|
Display *dpy = XOpenDisplay(NULL);
|
||
|
if (! dpy) {
|
||
|
fprintf(stderr,
|
||
|
"%s: FATAL ERROR: couldn't open display '%s'\n",
|
||
|
argv[0], XDisplayName(NULL));
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
|
int number_of_screens = ScreenCount(dpy);
|
||
|
starting_screen = kdesktop_screen_number = DefaultScreen(dpy);
|
||
|
int pos;
|
||
|
TQCString display_name = XDisplayString(dpy);
|
||
|
XCloseDisplay(dpy);
|
||
|
kdDebug() << "screen " << number_of_screens << " " << kdesktop_screen_number << " " << display_name << " " << starting_screen << endl;
|
||
|
dpy = 0;
|
||
|
|
||
|
if ((pos = display_name.findRev('.')) != -1)
|
||
|
display_name.remove(pos, 10);
|
||
|
|
||
|
TQCString env;
|
||
|
if (number_of_screens != 1) {
|
||
|
for (int i = 0; i < number_of_screens; i++) {
|
||
|
if (i != starting_screen) {
|
||
|
int fd[2];
|
||
|
if (pipe(fd)) {
|
||
|
perror("pipe");
|
||
|
break;
|
||
|
}
|
||
|
if (fork() == 0) {
|
||
|
child = true;
|
||
|
kdesktop_screen_number = i;
|
||
|
parent_connection = fd[0];
|
||
|
// break here because we are the child process, we don't
|
||
|
// want to fork() anymore
|
||
|
break;
|
||
|
} else {
|
||
|
child_sockets.append(fd[1]);
|
||
|
}
|
||
15 years ago
|
}
|
||
|
}
|
||
|
|
||
13 years ago
|
env.sprintf("DISPLAY=%s.%d", display_name.data(),
|
||
|
kdesktop_screen_number);
|
||
|
kdDebug() << "env " << env << endl;
|
||
15 years ago
|
|
||
13 years ago
|
if (putenv(strdup(env.data()))) {
|
||
|
fprintf(stderr,
|
||
|
"%s: WARNING: unable to set DISPLAY environment variable\n",
|
||
|
argv[0]);
|
||
|
perror("putenv()");
|
||
|
}
|
||
15 years ago
|
}
|
||
|
}
|
||
|
|
||
10 years ago
|
if (!app) {
|
||
12 years ago
|
#ifdef COMPOSITE
|
||
10 years ago
|
app = new MyApp(TDEApplication::openX11RGBADisplay());
|
||
|
argb_visual = app->isX11CompositionAvailable();
|
||
12 years ago
|
#else
|
||
10 years ago
|
app = new MyApp;
|
||
12 years ago
|
#endif
|
||
10 years ago
|
}
|
||
12 years ago
|
|
||
6 years ago
|
TDELockFile lock(locateLocal("tmp", TQString("kdesktop_lock_lockfile.%1").arg(getenv("DISPLAY"))));
|
||
12 years ago
|
lock.setStaleTime(0);
|
||
|
TDELockFile::LockResult lockRet = lock.lock();
|
||
|
if (lockRet != TDELockFile::LockOK) {
|
||
|
// Terminate existing (stale) process if needed
|
||
|
int pid;
|
||
|
TQString hostName;
|
||
|
TQString appName;
|
||
|
if (lock.getLockInfo(pid, hostName, appName)) {
|
||
|
// Verify that the pid in question is an instance of kdesktop_lock
|
||
|
int len;
|
||
|
char procpath[PATH_MAX];
|
||
|
char fullpath[PATH_MAX];
|
||
5 years ago
|
#if defined(__dilos__)
|
||
|
snprintf(procpath, sizeof(procpath), "/proc/%d/path/a.out", pid);
|
||
5 years ago
|
#elif defined(__FreeBSD__) || defined (__DragonFly__)
|
||
|
snprintf(procpath, sizeof(procpath), "/compat/linux/proc/%d/exe", pid);
|
||
|
#else /* Linux way as default */
|
||
5 years ago
|
snprintf(procpath, sizeof(procpath), "/proc/%d/exe", pid);
|
||
5 years ago
|
#endif
|
||
12 years ago
|
len = readlink( procpath, fullpath, sizeof(fullpath) );
|
||
|
if (len >= 0) {
|
||
|
fullpath[len] = 0;
|
||
|
TQFileInfo fileInfo(fullpath);
|
||
|
if (fileInfo.baseName() == "kdesktop_lock") {
|
||
|
// Verify that pid in question is owned by current user before killing it
|
||
|
uid_t current_uid = geteuid();
|
||
|
|
||
|
struct stat info;
|
||
|
if (lstat(procpath, &info) == 0) {
|
||
|
if (info.st_uid == current_uid) {
|
||
|
kill(pid, SIGKILL);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Force a relock as a stale lockfile or process may have been dealt with above
|
||
|
if (!lock.isLocked()) {
|
||
|
lockRet = lock.lock(TDELockFile::LockNoBlock | TDELockFile::LockForce);
|
||
|
}
|
||
|
|
||
13 years ago
|
kdDebug() << "app " << kdesktop_screen_number << " " << starting_screen << " " << child << " " << child_sockets.count() << " " << parent_connection << endl;
|
||
10 years ago
|
app->disableSessionManagement();
|
||
12 years ago
|
TDEGlobal::locale()->insertCatalogue("libdmctl");
|
||
13 years ago
|
|
||
13 years ago
|
struct stat st;
|
||
|
KSimpleConfig* tdmconfig;
|
||
6 years ago
|
if( stat( KDE_CONFDIR "/tdm/tdmdistrc" , &st ) == 0) {
|
||
|
tdmconfig = new KSimpleConfig( TQString::fromLatin1( KDE_CONFDIR "/tdm/tdmdistrc" ));
|
||
|
}
|
||
|
else {
|
||
|
tdmconfig = new KSimpleConfig( TQString::fromLatin1( KDE_CONFDIR "/tdm/tdmrc" ));
|
||
|
}
|
||
|
tdmconfig->setGroup("X-:*-Greeter");
|
||
12 years ago
|
|
||
10 years ago
|
trinity_desktop_lock_process = new LockProcess;
|
||
13 years ago
|
|
||
|
// Start loading core functions, such as the desktop wallpaper interface
|
||
10 years ago
|
app->processEvents();
|
||
13 years ago
|
|
||
|
if (args->isSet( "internal" )) {
|
||
11 years ago
|
kdesktop_pid = atoi(args->getOption( "internal" ));
|
||
10 years ago
|
sigset_t new_mask;
|
||
|
sigset_t orig_mask;
|
||
|
struct sigaction act;
|
||
|
|
||
|
in_internal_mode = TRUE;
|
||
|
|
||
|
// handle SIGUSR1
|
||
|
act.sa_handler= sigusr1_handler;
|
||
|
sigemptyset(&(act.sa_mask));
|
||
|
sigaddset(&(act.sa_mask), SIGUSR1);
|
||
|
act.sa_flags = 0;
|
||
|
sigaction(SIGUSR1, &act, 0L);
|
||
|
// handle SIGUSR2
|
||
|
act.sa_handler= sigusr2_handler;
|
||
|
sigemptyset(&(act.sa_mask));
|
||
|
sigaddset(&(act.sa_mask), SIGUSR2);
|
||
|
act.sa_flags = 0;
|
||
|
sigaction(SIGUSR2, &act, 0L);
|
||
|
// handle SIGWINCH (an ersatz SIGUSR3)
|
||
|
act.sa_handler= sigusr3_handler;
|
||
|
sigemptyset(&(act.sa_mask));
|
||
|
sigaddset(&(act.sa_mask), SIGWINCH);
|
||
|
act.sa_flags = 0;
|
||
|
sigaction(SIGWINCH, &act, 0L);
|
||
|
// handle SIGTTIN (an ersatz SIGUSR4)
|
||
|
act.sa_handler= sigusr4_handler;
|
||
|
sigemptyset(&(act.sa_mask));
|
||
|
sigaddset(&(act.sa_mask), SIGTTIN);
|
||
|
act.sa_flags = 0;
|
||
|
sigaction(SIGTTIN, &act, 0L);
|
||
|
// handle SIGTTOU (an ersatz SIGUSR5)
|
||
|
act.sa_handler= sigusr5_handler;
|
||
|
sigemptyset(&(act.sa_mask));
|
||
|
sigaddset(&(act.sa_mask), SIGTTOU);
|
||
|
act.sa_flags = 0;
|
||
|
sigaction(SIGTTOU, &act, 0L);
|
||
|
|
||
|
// initialize the signal masks
|
||
|
sigemptyset(&new_mask);
|
||
|
sigaddset(&new_mask,SIGUSR1);
|
||
|
sigaddset(&new_mask,SIGUSR2);
|
||
|
sigaddset(&new_mask,SIGWINCH);
|
||
|
sigaddset(&new_mask,SIGTTIN);
|
||
|
sigaddset(&new_mask,SIGTTOU);
|
||
13 years ago
|
|
||
10 years ago
|
while (signalled_run == FALSE) {
|
||
11 years ago
|
// let kdesktop know the saver process is ready
|
||
|
if (kill(kdesktop_pid, SIGTTIN) < 0) {
|
||
|
// The controlling kdesktop process probably died. Commit suicide...
|
||
|
return 12;
|
||
|
}
|
||
|
|
||
10 years ago
|
// Get root window attributes
|
||
|
XWindowAttributes rootAttr;
|
||
|
XGetWindowAttributes(tqt_xdisplay(), RootWindow(tqt_xdisplay(), tqt_xscreen()), &rootAttr);
|
||
|
|
||
|
// Disable reception of all X11 events on the root window
|
||
|
XSelectInput( tqt_xdisplay(), tqt_xrootwin(), 0 );
|
||
10 years ago
|
app->processEvents();
|
||
10 years ago
|
|
||
13 years ago
|
// wait for SIGUSR1, SIGUSR2, SIGWINCH, SIGTTIN, or SIGTTOU
|
||
10 years ago
|
sigprocmask(SIG_BLOCK, &new_mask, &orig_mask);
|
||
|
if (signalled_run != TRUE) {
|
||
|
sigsuspend(&orig_mask);
|
||
|
}
|
||
|
sigprocmask(SIG_UNBLOCK, &new_mask, NULL);
|
||
10 years ago
|
|
||
|
// Reenable reception of X11 events on the root window
|
||
|
XSelectInput( tqt_xdisplay(), tqt_xrootwin(), rootAttr.your_event_mask );
|
||
13 years ago
|
}
|
||
10 years ago
|
|
||
|
// Block reception of all signals in this thread
|
||
|
sigprocmask(SIG_BLOCK, &new_mask, NULL);
|
||
13 years ago
|
}
|
||
|
|
||
10 years ago
|
// (re)load settings here so that they actually reflect reality
|
||
13 years ago
|
// we need to read from the right rc file - possibly taking screen number in account
|
||
10 years ago
|
if (!trinity_desktop_lock_settings_initialized) {
|
||
|
KDesktopSettings::instance("kdesktoprc");
|
||
|
trinity_desktop_lock_settings_initialized = true;
|
||
|
}
|
||
|
else {
|
||
|
KDesktopSettings::self()->readConfig();
|
||
|
}
|
||
13 years ago
|
trinity_desktop_lock_use_system_modal_dialogs = !KDesktopSettings::useUnmanagedLockWindows();
|
||
|
trinity_desktop_lock_delay_screensaver_start = KDesktopSettings::delaySaverStart();
|
||
|
if (trinity_desktop_lock_use_system_modal_dialogs) {
|
||
12 years ago
|
#ifdef BUILD_TSAK
|
||
11 years ago
|
trinity_desktop_lock_use_sak = tdmconfig->readBoolEntry("UseSAK", false) && KDesktopSettings::useTDESAK();
|
||
12 years ago
|
#else
|
||
|
trinity_desktop_lock_use_sak = false;
|
||
|
#endif
|
||
13 years ago
|
}
|
||
|
else {
|
||
13 years ago
|
trinity_desktop_lock_use_sak = false; // If SAK is enabled with unmanaged windows, the SAK dialog will never close and will "burn in" the screen
|
||
|
trinity_desktop_lock_delay_screensaver_start = false; // If trinity_desktop_lock_delay_screensaver_start is true with unmanaged windows, the lock dialog may never appear
|
||
13 years ago
|
}
|
||
12 years ago
|
trinity_desktop_lock_hide_active_windows = KDesktopSettings::hideActiveWindowsFromSaver();
|
||
11 years ago
|
trinity_desktop_lock_hide_cancel_button = KDesktopSettings::hideCancelButton();
|
||
13 years ago
|
|
||
|
delete tdmconfig;
|
||
|
|
||
13 years ago
|
if (args->isSet( "forcelock" ) || (signalled_forcelock == TRUE)) {
|
||
13 years ago
|
trinity_desktop_lock_forced = TRUE;
|
||
13 years ago
|
}
|
||
13 years ago
|
|
||
10 years ago
|
trinity_desktop_lock_process->init(child, (args->isSet( "blank" ) || (signalled_blank == TRUE)));
|
||
13 years ago
|
if (!child) {
|
||
10 years ago
|
trinity_desktop_lock_process->setChildren(child_sockets);
|
||
13 years ago
|
}
|
||
|
else {
|
||
10 years ago
|
trinity_desktop_lock_process->setParent(parent_connection);
|
||
13 years ago
|
}
|
||
13 years ago
|
|
||
|
bool rt;
|
||
13 years ago
|
if( (((!child) && (args->isSet( "forcelock" ))) || (signalled_forcelock == TRUE))) {
|
||
10 years ago
|
rt = trinity_desktop_lock_process->lock();
|
||
13 years ago
|
}
|
||
|
else if( child || (args->isSet( "dontlock" ) || (signalled_dontlock == TRUE))) {
|
||
10 years ago
|
rt = trinity_desktop_lock_process->dontLock();
|
||
13 years ago
|
}
|
||
|
else if( child || (args->isSet( "securedialog" ) || (signalled_securedialog == TRUE))) {
|
||
|
int retcode = tde_sak_verify_calling_process();
|
||
|
if (retcode == 0) {
|
||
10 years ago
|
rt = trinity_desktop_lock_process->runSecureDialog();
|
||
13 years ago
|
}
|
||
|
else {
|
||
|
return 1;
|
||
|
}
|
||
13 years ago
|
}
|
||
|
else {
|
||
10 years ago
|
rt = trinity_desktop_lock_process->defaultSave();
|
||
13 years ago
|
}
|
||
|
if (!rt) {
|
||
13 years ago
|
return 0;
|
||
13 years ago
|
}
|
||
15 years ago
|
|
||
13 years ago
|
if (in_internal_mode == FALSE) {
|
||
12 years ago
|
trinity_desktop_lock_hidden_window_list.clear();
|
||
10 years ago
|
int ret = app->exec();
|
||
12 years ago
|
restore_hidden_override_redirect_windows();
|
||
|
return ret;
|
||
13 years ago
|
}
|
||
|
else {
|
||
12 years ago
|
if (kill(kdesktop_pid, 0) < 0) {
|
||
13 years ago
|
// The controlling kdesktop process probably died. Commit suicide...
|
||
|
return 12;
|
||
|
}
|
||
12 years ago
|
trinity_desktop_lock_hidden_window_list.clear();
|
||
10 years ago
|
app->exec();
|
||
12 years ago
|
restore_hidden_override_redirect_windows();
|
||
13 years ago
|
if (kill(kdesktop_pid, SIGUSR1) < 0) {
|
||
|
// The controlling kdesktop process probably died. Commit suicide...
|
||
|
return 12;
|
||
|
}
|
||
15 years ago
|
|
||
10 years ago
|
delete trinity_desktop_lock_process;
|
||
|
trinity_desktop_lock_process = NULL;
|
||
|
|
||
13 years ago
|
// FIXME
|
||
|
// We should not have to return (restart) at all,
|
||
|
// but it seems that some X11 connections are left active,
|
||
|
// preventing the lock process from restarting properly in the while() loop above.
|
||
|
return 0;
|
||
|
}
|
||
|
}
|
||
15 years ago
|
}
|
||
|
|
||
|
#include "main.moc"
|