1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
6 * Copyright (C) 2004 Novell, Inc.
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.
35 #include <X11/extensions/scrnsaver.h>
37 // Once an X-connection is eshtablished, if it breaks, the program terminates.
38 // So, we can safely store the DISPLAY once it is set and re-use it.
39 static Display
*dsp
= NULL
;
43 screensaver_glue_init ()
46 // screensaver_info is called only from the Scheduler thread; thus we dont need to enable XInitThreads()
47 dsp
= XOpenDisplay(getenv("DISPLAY"));
48 return (dsp
== NULL
? 0 : 1);
55 screensaver_info (int *state
, int *kind
, unsigned long *til_or_since
, unsigned long *idle
)
58 XScreenSaverInfo ss_info
;
60 static int inited
= 0;
61 int event_base
, error_base
;
67 if (XScreenSaverQueryExtension (dsp
, &event_base
, &error_base
))
68 retval
= XScreenSaverQueryInfo (dsp
, RootWindow(dsp
, XDefaultScreen(dsp
)), &ss_info
);
73 *state
= ss_info
.state
;
75 *til_or_since
= ss_info
.til_or_since
;