]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/screen.h
add all files using _() and remove some that do not
[mikachu/openbox.git] / openbox / screen.h
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    screen.h for the Openbox window manager
4    Copyright (c) 2003-2007   Dana Jansens
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    See the COPYING file for a copy of the GNU General Public License.
17 */
18
19 #ifndef __screen_h
20 #define __screen_h
21
22 #include "misc.h"
23 #include "geom.h"
24
25 struct _ObClient;
26
27 #define DESKTOP_ALL (0xffffffff)
28
29 /*! The number of available desktops */
30 extern guint screen_num_desktops;
31 /*! The number of virtual "xinerama" screens/heads */
32 extern guint screen_num_monitors;
33 /*! The current desktop */
34 extern guint screen_desktop;
35 /*! The desktop which was last visible */
36 extern guint screen_last_desktop;
37 /*! Are we in showing-desktop mode? */
38 extern gboolean screen_showing_desktop;
39 /*! The support window also used for focus and stacking */
40 extern Window screen_support_win;
41 /*! The last time at which the user changed desktops */
42 extern Time screen_desktop_user_time;
43
44 typedef struct DesktopLayout {
45     ObOrientation orientation;
46     ObCorner start_corner;
47     guint rows;
48     guint columns;
49 } DesktopLayout;
50 extern DesktopLayout screen_desktop_layout;
51
52 /*! An array of gchar*'s which are desktop names in UTF-8 format */
53 extern gchar **screen_desktop_names;
54
55 /*! Take over the screen, set the basic hints on it claming it as ours */
56 gboolean screen_annex(const gchar *program_name);
57
58 /*! Once the screen is ours, set up its initial state */
59 void screen_startup(gboolean reconfig);
60 /*! Free resources */
61 void screen_shutdown(gboolean reconfig);
62
63 /*! Figure out the new size of the screen and adjust stuff for it */
64 void screen_resize();
65
66 /*! Change the number of available desktops */
67 void screen_set_num_desktops(guint num);
68 /*! Change the current desktop */
69 void screen_set_desktop(guint num, gboolean dofocus);
70 /*! Interactively change desktops */
71 guint screen_cycle_desktop(ObDirection dir, gboolean wrap, gboolean linear,
72                            gboolean dialog, gboolean done, gboolean cancel);
73
74 /*! Show/hide the desktop popup (pager) for the given desktop */
75 void screen_desktop_popup(guint d, gboolean show);
76
77 /*! Shows and focuses the desktop and hides all the client windows, or
78   returns to the normal state, showing client windows. */
79 void screen_show_desktop(gboolean show, gboolean restore_focus);
80
81 /*! Updates the desktop layout from the root property if available */
82 void screen_update_layout();
83
84 /*! Get desktop names from the root window property */
85 void screen_update_desktop_names();
86
87 /*! Installs or uninstalls a colormap for a client. If client is NULL, then
88   it handles the root colormap. */
89 void screen_install_colormap(struct _ObClient *client, gboolean install);
90
91 void screen_update_areas();
92
93 Rect *screen_physical_area();
94
95 Rect *screen_physical_area_monitor(guint head);
96
97 Rect *screen_area(guint desktop);
98
99 Rect *screen_area_monitor(guint desktop, guint head);
100
101 /*! Determines which physical monitor a rectangle is on by calculating the
102     area of the part of the rectable on each monitor.  The number of the
103     monitor containing the greatest area of the rectangle is returned.*/
104 guint screen_find_monitor(Rect *search);
105
106 /*! Sets the root cursor. This function decides which cursor to use, but you
107   gotta call it to let it know it should change. */
108 void screen_set_root_cursor();
109
110 gboolean screen_pointer_pos(gint *x, gint *y);
111
112 #endif