2006-04-25 Hendrik Brandt <heb@gnome-de.org>
[beagle.git] / glue / screensaver-glue.c
blob12ba0d9161482f65667cd1997e86fe9a0f52e0f8
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 /*
4 * screensaver-glue.c
6 * Copyright (C) 2004 Novell, Inc.
8 */
11 * Permission is hereby granted, free of charge, to any person obtaining a
12 * copy of this software and associated documentation files (the "Software"),
13 * to deal in the Software without restriction, including without limitation
14 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
18 * The above copyright notice and this permission notice shall be included in
19 * all copies or substantial portions of the Software.
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27 * DEALINGS IN THE SOFTWARE.
30 #include <gdk/gdk.h>
31 #include <gdk/gdkx.h>
32 #include <X11/Xlib.h>
33 #include <X11/extensions/scrnsaver.h>
36 int
37 screensaver_info (int *state, int *kind, unsigned long *til_or_since, unsigned long *idle)
39 #if HAVE_LIBXSS == 1
40 XScreenSaverInfo ss_info;
41 int retval;
42 static int inited = 0;
43 int event_base, error_base;
45 if (GDK_DISPLAY () == NULL)
46 return 0;
48 /* FIXME: This should be called somewhere else. */
49 if (! inited) {
50 gdk_threads_init ();
51 inited = 1;
54 gdk_threads_enter ();
55 if (XScreenSaverQueryExtension (GDK_DISPLAY (), &event_base, &error_base))
56 retval = XScreenSaverQueryInfo (GDK_DISPLAY (), DefaultRootWindow (GDK_DISPLAY ()), &ss_info);
57 else
58 retval = 0;
59 gdk_threads_leave ();
61 if (retval != 0) {
62 *state = ss_info.state;
63 *kind = ss_info.kind;
64 *til_or_since = ss_info.til_or_since;
65 *idle = ss_info.idle;
66 return 1;
67 } else {
68 return 0;
70 #else
71 return 0;
72 #endif