http://se.aminet.net/pub/Linux/distributions/slackware/slackware-10.1/source/xap...
[xscreensaver] / driver / xscreensaver.h
1 /* xscreensaver, Copyright (c) 1993-2004 Jamie Zawinski <jwz@jwz.org>
2  *
3  * Permission to use, copy, modify, distribute, and sell this software and its
4  * documentation for any purpose is hereby granted without fee, provided that
5  * the above copyright notice appear in all copies and that both that
6  * copyright notice and this permission notice appear in supporting
7  * documentation.  No representations are made about the suitability of this
8  * software for any purpose.  It is provided "as is" without express or 
9  * implied warranty.
10  */
11
12 #ifndef __XSCREENSAVER_H__
13 #define __XSCREENSAVER_H__
14
15 #include <stdlib.h>
16 #ifdef HAVE_UNISTD_H
17 # include <unistd.h>
18 #endif
19
20 #include <string.h>
21 #include <stdio.h>
22
23 #ifdef HAVE_SIGACTION
24 # include <signal.h>    /* for sigset_t */
25 #endif
26
27 #include "prefs.h"
28
29 extern char *progname;
30 extern char *progclass;
31
32 typedef struct saver_info saver_info;
33 typedef struct saver_screen_info saver_screen_info;
34 typedef struct passwd_dialog_data passwd_dialog_data;
35 typedef struct splash_dialog_data splash_dialog_data;
36
37 #undef countof
38 #define countof(x) (sizeof((x))/sizeof((*x)))
39
40
41
42 /* This structure holds all the data that applies to the program as a whole,
43    or to the non-screen-specific parts of the display connection.
44
45    The saver_preferences structure (prefs.h) holds all the user-specified
46    parameters, read from the command line, the resource database, or entered
47    through a dialog box.
48  */
49 struct saver_info {
50   char *version;
51   saver_preferences prefs;
52
53   int nscreens;
54   saver_screen_info *screens;
55   saver_screen_info *default_screen;    /* ...on which dialogs will appear. */
56
57
58   /* =======================================================================
59      global connection info
60      ======================================================================= */
61
62   XtAppContext app;
63   Display *dpy;
64
65   /* =======================================================================
66      server extension info
67      ======================================================================= */
68
69   Bool xinerama_p;                 /* Whether Xinerama is in use.            */
70   Bool using_xidle_extension;      /* which extension is being used.         */
71   Bool using_mit_saver_extension;  /* Note that `p->use_*' is the *request*, */
72   Bool using_sgi_saver_extension;  /* and `si->using_*' is the *reality*.    */
73   Bool using_proc_interrupts;
74
75 # ifdef HAVE_MIT_SAVER_EXTENSION
76   int mit_saver_ext_event_number;
77   int mit_saver_ext_error_number;
78 # endif
79 # ifdef HAVE_SGI_SAVER_EXTENSION
80   int sgi_saver_ext_event_number;
81   int sgi_saver_ext_error_number;
82 # endif
83 # ifdef HAVE_RANDR
84   int randr_event_number;
85   int randr_error_number;
86 # endif
87
88
89   /* =======================================================================
90      blanking
91      ======================================================================= */
92
93   Bool screen_blanked_p;        /* Whether the saver is currently active. */
94   Window mouse_grab_window;     /* Window holding our mouse grab */
95   Window keyboard_grab_window;  /* Window holding our keyboard grab */
96   int mouse_grab_screen;        /* The screen number the mouse grab is on */
97   int keyboard_grab_screen;     /* The screen number the keyboard grab is on */
98   Bool fading_possible_p;       /* Whether fading to/from black is possible. */
99   Bool throttled_p;             /* Whether we should temporarily just blank
100                                    the screen, not run hacks. (Deprecated:
101                                    users should use "xset dpms force off"
102                                    instead.) */
103   time_t blank_time;            /* The time at which the screen was blanked
104                                    (if currently blanked) or unblanked (if
105                                    not blanked.) */
106
107
108   /* =======================================================================
109      locking and runtime privileges
110      ======================================================================= */
111
112   Bool locked_p;                /* Whether the screen is currently locked. */
113   Bool dbox_up_p;               /* Whether the demo-mode or passwd dialogs
114                                    are currently visible */
115
116   Bool locking_disabled_p;      /* Sometimes locking is impossible. */
117   char *nolock_reason;          /* This is why. */
118
119   char *orig_uid;               /* What uid/gid we had at startup, before
120                                    discarding privileges. */
121   char *uid_message;            /* Any diagnostics from our attempt to
122                                    discard privileges (printed only in
123                                    -verbose mode.) */
124   Bool dangerous_uid_p;         /* Set to true if we're running as a user id
125                                    which is known to not be a normal, non-
126                                    privileged user. */
127
128   Window passwd_dialog;         /* The password dialog, if its up. */
129   passwd_dialog_data *pw_data;  /* Other info necessary to draw it. */
130
131   int unlock_failures;          /* Counts failed login attempts while the
132                                    screen is locked. */
133
134   char *unlock_typeahead;       /* If the screen is locked, and the user types
135                                    a character, we assume that it is the first
136                                    character of the password.  It's stored here
137                                    for the password dialog to use to populate
138                                    itself. */
139
140
141   /* =======================================================================
142      demoing
143      ======================================================================= */
144
145   Bool demoing_p;               /* Whether we are demoing a single hack
146                                    (without UI.) */
147
148   Window splash_dialog;         /* The splash dialog, if its up. */
149   splash_dialog_data *sp_data;  /* Other info necessary to draw it. */
150
151
152   /* =======================================================================
153      timers
154      ======================================================================= */
155
156   XtIntervalId lock_id;         /* Timer to implement `prefs.lock_timeout' */
157   XtIntervalId cycle_id;        /* Timer to implement `prefs.cycle' */
158   XtIntervalId timer_id;        /* Timer to implement `prefs.timeout' */
159   XtIntervalId watchdog_id;     /* Timer to implement `prefs.watchdog */
160   XtIntervalId check_pointer_timer_id;  /* `prefs.pointer_timeout' */
161
162   XtIntervalId de_race_id;      /* Timer to make sure screen un-blanks */
163   int de_race_ticks;
164
165   time_t last_activity_time;               /* Used only when no server exts. */
166   time_t last_wall_clock_time;             /* Used to detect laptop suspend. */
167   saver_screen_info *last_activity_screen;
168
169   Bool emergency_lock_p;        /* Set when the wall clock has jumped
170                                    (presumably due to laptop suspend) and we
171                                    need to lock down right away instead of
172                                    waiting for the lock timer to go off. */
173
174
175   /* =======================================================================
176      remote control
177      ======================================================================= */
178
179   int selection_mode;           /* Set to -1 if the NEXT ClientMessage has just
180                                    been received; set to -2 if PREV has just
181                                    been received; set to N if SELECT or DEMO N
182                                    has been received.  (This is kind of nasty.)
183                                  */
184
185   /* =======================================================================
186      subprocs
187      ======================================================================= */
188
189   XtIntervalId stderr_popup_timer;
190
191 };
192
193
194 /* This structure holds all the data that applies to the screen-specific parts
195    of the display connection; if the display has multiple screens, there will
196    be one of these for each screen.
197  */
198 struct saver_screen_info {
199   saver_info *global;
200
201   int number;                   /* The internal ordinal of this screen,
202                                    counting Xinerama rectangles as separate
203                                    screens. */
204   int real_screen_number;       /* The number of the underlying X screen on
205                                    which this rectangle lies. */
206   Screen *screen;               /* The X screen in question. */
207
208   int x, y, width, height;      /* The size and position of this rectangle
209                                    on its underlying X screen. */
210
211   Bool real_screen_p;           /* This will be true of exactly one ssi per
212                                    X screen. */
213
214   Widget toplevel_shell;
215
216   /* =======================================================================
217      blanking
218      ======================================================================= */
219
220   Window screensaver_window;    /* The window that will impersonate the root,
221                                    when the screensaver activates.  Note that
222                                    the window stored here may change, as we
223                                    destroy and recreate it on different
224                                    visuals. */
225   Colormap cmap;                /* The colormap that goes with the window. */
226   Bool install_cmap_p;          /* Whether this screen should have its own
227                                    colormap installed, for whichever of several
228                                    reasons.  This is definitive (even a false
229                                    value here overrides prefs->install_cmap_p.)
230                                  */
231   Visual *current_visual;       /* The visual of the window. */
232   int current_depth;            /* How deep the visual (and the window) are. */
233
234   Visual *default_visual;       /* visual to use when none other specified */
235   Visual *best_gl_visual;       /* visual to use for GL hacks */
236
237   Window real_vroot;            /* The original virtual-root window. */
238   Window real_vroot_value;      /* What was in the __SWM_VROOT property. */
239
240   Cursor cursor;                /* A blank cursor that goes with the
241                                    real root window. */
242   unsigned long black_pixel;    /* Black, allocated from `cmap'. */
243
244   int blank_vp_x, blank_vp_y;   /* Where the virtual-scrolling viewport was
245                                    when the screen went blank.  We need to
246                                    prevent the X server from letting the mouse
247                                    bump the edges to scroll while the screen
248                                    is locked, so we reset to this when it has
249                                    moved, and the lock dialog is up... */
250
251 # ifdef HAVE_MIT_SAVER_EXTENSION
252   Window server_mit_saver_window;
253 # endif
254
255
256   /* =======================================================================
257      demoing
258      ======================================================================= */
259
260   Colormap demo_cmap;           /* The colormap that goes with the dialogs:
261                                    this might be the same as `cmap' so care
262                                    must be taken not to free it while it's
263                                    still in use. */
264
265   /* =======================================================================
266      timers
267      ======================================================================= */
268
269   int poll_mouse_last_root_x;           /* Used only when no server exts. */
270   int poll_mouse_last_root_y;
271   Window poll_mouse_last_child;
272   unsigned int poll_mouse_last_mask;
273
274
275   /* =======================================================================
276      subprocs
277      ======================================================================= */
278
279   int current_hack;             /* Index into `prefs.screenhacks' */
280   pid_t pid;
281
282   int stderr_text_x;
283   int stderr_text_y;
284   int stderr_line_height;
285   XFontStruct *stderr_font;
286   GC stderr_gc;
287   Window stderr_overlay_window;    /* Used if the server has overlay planes */
288   Colormap stderr_cmap;
289 };
290
291
292 \f
293
294 /* =======================================================================
295    server extensions and virtual roots
296    ======================================================================= */
297
298 extern Bool restore_real_vroot (saver_info *si);
299 extern void disable_builtin_screensaver (saver_info *, Bool unblank_screen_p);
300 extern Bool ensure_no_screensaver_running (Display *, Screen *);
301
302 #ifdef HAVE_MIT_SAVER_EXTENSION
303 extern Bool query_mit_saver_extension (saver_info *);
304 #endif
305 #ifdef HAVE_SGI_SAVER_EXTENSION
306 extern Bool query_sgi_saver_extension (saver_info *);
307 #endif
308 #ifdef HAVE_XIDLE_EXTENSION
309 extern Bool query_xidle_extension (saver_info *);
310 #endif
311 #ifdef HAVE_RANDR
312 extern Bool query_randr_extension (saver_info *);
313 #endif
314 #ifdef HAVE_PROC_INTERRUPTS
315 extern Bool query_proc_interrupts_available (saver_info *, const char **why);
316 #endif
317
318 /* Display Power Management System (DPMS) interface. */
319 extern Bool monitor_powered_on_p (saver_info *si);
320 extern void monitor_power_on (saver_info *si);
321
322
323 /* =======================================================================
324    blanking
325    ======================================================================= */
326
327 extern void initialize_screensaver_window (saver_info *si);
328 extern void raise_window (saver_info *si,
329                             Bool inhibit_fade, Bool between_hacks_p,
330                             Bool dont_clear);
331 extern Bool blank_screen (saver_info *si);
332 extern void unblank_screen (saver_info *si);
333 extern void resize_screensaver_window (saver_info *si);
334
335 extern void get_screen_viewport (saver_screen_info *ssi,
336                                  int *x_ret, int *y_ret,
337                                  int *w_ret, int *h_ret,
338                                  int target_x, int target_y,
339                                  Bool verbose_p);
340
341
342 /* =======================================================================
343    locking
344    ======================================================================= */
345
346 #ifndef NO_LOCKING
347 extern Bool unlock_p (saver_info *si);
348 extern Bool lock_priv_init (int argc, char **argv, Bool verbose_p);
349 extern Bool lock_init (int argc, char **argv, Bool verbose_p);
350 extern Bool passwd_valid_p (const char *typed_passwd, Bool verbose_p);
351 #endif /* NO_LOCKING */
352
353 extern void set_locked_p (saver_info *si, Bool locked_p);
354 extern int move_mouse_grab (saver_info *si, Window to, Cursor cursor,
355                             int to_screen_no);
356 extern int mouse_screen (saver_info *si);
357
358
359 /* =======================================================================
360    runtime privileges
361    ======================================================================= */
362
363 extern void hack_uid (saver_info *si);
364 extern void describe_uids (saver_info *si, FILE *out);
365
366 /* =======================================================================
367    demoing
368    ======================================================================= */
369
370 extern void draw_shaded_rectangle (Display *dpy, Window window,
371                                    int x, int y,
372                                    int width, int height,
373                                    int thickness,
374                                    unsigned long top_color,
375                                    unsigned long bottom_color);
376 extern int string_width (XFontStruct *font, char *s);
377
378 extern void make_splash_dialog (saver_info *si);
379 extern void handle_splash_event (saver_info *si, XEvent *e);
380
381
382 /* =======================================================================
383    timers
384    ======================================================================= */
385
386 extern void start_notice_events_timer (saver_info *, Window, Bool verbose_p);
387 extern void cycle_timer (XtPointer si, XtIntervalId *id);
388 extern void activate_lock_timer (XtPointer si, XtIntervalId *id);
389 extern void reset_watchdog_timer (saver_info *si, Bool on_p);
390 extern void idle_timer (XtPointer si, XtIntervalId *id);
391 extern void de_race_timer (XtPointer si, XtIntervalId *id);
392 extern void sleep_until_idle (saver_info *si, Bool until_idle_p);
393 extern void reset_timers (saver_info *si);
394 extern void schedule_wakeup_event (saver_info *si, Time when, Bool verbose_p);
395
396
397 /* =======================================================================
398    remote control
399    ======================================================================= */
400
401 extern Bool handle_clientmessage (saver_info *, XEvent *, Bool);
402 extern void maybe_reload_init_file (saver_info *);
403
404 /* =======================================================================
405    subprocs
406    ======================================================================= */
407
408 extern void handle_signals (saver_info *si);
409 #ifdef HAVE_SIGACTION
410  extern sigset_t block_sigchld (void);
411 #else  /* !HAVE_SIGACTION */
412  extern int block_sigchld (void);
413 #endif /* !HAVE_SIGACTION */
414 extern void unblock_sigchld (void);
415 extern void hack_environment (saver_info *si);
416 extern void hack_subproc_environment (saver_screen_info *ssi);
417 extern void init_sigchld (void);
418 extern void spawn_screenhack (saver_info *si, Bool first_time_p);
419 extern void kill_screenhack (saver_info *si);
420 extern void suspend_screenhack (saver_info *si, Bool suspend_p);
421 extern Bool screenhack_running_p (saver_info *si);
422 extern void emergency_kill_subproc (saver_info *si);
423 extern Bool select_visual (saver_screen_info *ssi, const char *visual_name);
424 extern void store_saver_status (saver_info *si);
425 extern const char *signal_name (int signal);
426 extern void exec_command (const char *shell, const char *command,
427                           int nice_level);
428
429 /* =======================================================================
430    subprocs diagnostics
431    ======================================================================= */
432
433 extern FILE *real_stderr;
434 extern FILE *real_stdout;
435 extern void initialize_stderr (saver_info *si);
436 extern void reset_stderr (saver_screen_info *ssi);
437 extern void clear_stderr (saver_screen_info *ssi);
438 extern void shutdown_stderr (saver_info *si);
439
440
441 /* =======================================================================
442    misc
443    ======================================================================= */
444
445 extern const char *blurb (void);
446 extern void save_argv (int argc, char **argv);
447 extern void saver_exit (saver_info *si, int status, const char *core_reason);
448 extern void restart_process (saver_info *si);
449
450 extern int saver_ehandler (Display *dpy, XErrorEvent *error);
451 extern int BadWindow_ehandler (Display *dpy, XErrorEvent *error);
452 extern Bool window_exists_p (Display *dpy, Window window);
453 extern char *timestring (void);
454 extern Bool display_is_on_console_p (saver_info *si);
455 extern Visual *get_best_gl_visual (saver_screen_info *ssi);
456 extern void check_for_leaks (const char *where);
457
458 extern Atom XA_VROOT, XA_XSETROOT_ID, XA_ESETROOT_PMAP_ID, XA_XROOTPMAP_ID;
459 extern Atom XA_SCREENSAVER, XA_SCREENSAVER_VERSION, XA_SCREENSAVER_ID;
460 extern Atom XA_SCREENSAVER_STATUS, XA_LOCK, XA_BLANK;
461 extern Atom XA_DEMO, XA_PREFS;
462
463 #endif /* __XSCREENSAVER_H__ */