13 #include "extensions.h"
14 #include "render/render.h"
17 # define SN_API_NOT_YET_FROZEN
18 # include <libsn/sn.h>
23 # include <sys/types.h>
27 /*! The event mask to grab on the root window */
28 #define ROOT_EVENTMASK (StructureNotifyMask | PropertyChangeMask | \
29 EnterWindowMask | LeaveWindowMask | \
30 SubstructureNotifyMask | SubstructureRedirectMask | \
31 ButtonPressMask | ButtonReleaseMask | ButtonMotionMask)
33 guint screen_num_desktops
= 0;
34 guint screen_num_xin_areas
= 0;
35 guint screen_desktop
= 0;
36 Size screen_physical_size
;
37 gboolean screen_showing_desktop
;
38 DesktopLayout screen_desktop_layout
;
39 char **screen_desktop_names
= NULL
;
41 static Rect
**area
= NULL
; /* array of desktop holding array of
43 static Rect
*xin_areas
= NULL
;
44 static Window support_window
= None
;
47 static SnMonitorContext
*sn_context
;
48 static int sn_busy_cnt
;
49 static Timer
*sn_timer
= NULL
;
51 static void sn_event_func(SnMonitorEvent
*event
, void *data
);
54 static void set_root_cursor();
56 static gboolean running
;
57 static int another_running(Display
*d
, XErrorEvent
*e
)
60 g_message("A window manager is already running on screen %d",
66 gboolean
screen_annex()
74 old
= XSetErrorHandler(another_running
);
75 XSelectInput(ob_display
, ob_root
, ROOT_EVENTMASK
);
76 XSync(ob_display
, FALSE
);
77 XSetErrorHandler(old
);
81 g_message("Managing screen %d", ob_screen
);
85 /* set the OPENBOX_PID hint */
87 PROP_SET32(ob_root
, openbox_pid
, cardinal
, pid
);
89 /* create the netwm support window */
90 support_window
= XCreateSimpleWindow(ob_display
, ob_root
, 0,0,1,1,0,0,0);
92 /* set supporting window */
93 PROP_SET32(ob_root
, net_supporting_wm_check
, window
, support_window
);
95 /* set properties on the supporting window */
96 PROP_SETS(support_window
, net_wm_name
, "Openbox");
97 PROP_SET32(support_window
, net_supporting_wm_check
, window
,support_window
);
99 /* set the _NET_SUPPORTED_ATOMS hint */
102 supported
= g_new(guint32
, num_support
);
103 supported
[i
++] = prop_atoms
.net_current_desktop
;
104 supported
[i
++] = prop_atoms
.net_number_of_desktops
;
105 supported
[i
++] = prop_atoms
.net_desktop_geometry
;
106 supported
[i
++] = prop_atoms
.net_desktop_viewport
;
107 supported
[i
++] = prop_atoms
.net_active_window
;
108 supported
[i
++] = prop_atoms
.net_workarea
;
109 supported
[i
++] = prop_atoms
.net_client_list
;
110 supported
[i
++] = prop_atoms
.net_client_list_stacking
;
111 supported
[i
++] = prop_atoms
.net_desktop_names
;
112 supported
[i
++] = prop_atoms
.net_close_window
;
113 supported
[i
++] = prop_atoms
.net_desktop_layout
;
114 supported
[i
++] = prop_atoms
.net_showing_desktop
;
115 supported
[i
++] = prop_atoms
.net_wm_name
;
116 supported
[i
++] = prop_atoms
.net_wm_visible_name
;
117 supported
[i
++] = prop_atoms
.net_wm_icon_name
;
118 supported
[i
++] = prop_atoms
.net_wm_visible_icon_name
;
119 supported
[i
++] = prop_atoms
.net_wm_desktop
;
120 supported
[i
++] = prop_atoms
.net_wm_strut
;
121 supported
[i
++] = prop_atoms
.net_wm_window_type
;
122 supported
[i
++] = prop_atoms
.net_wm_window_type_desktop
;
123 supported
[i
++] = prop_atoms
.net_wm_window_type_dock
;
124 supported
[i
++] = prop_atoms
.net_wm_window_type_toolbar
;
125 supported
[i
++] = prop_atoms
.net_wm_window_type_menu
;
126 supported
[i
++] = prop_atoms
.net_wm_window_type_utility
;
127 supported
[i
++] = prop_atoms
.net_wm_window_type_splash
;
128 supported
[i
++] = prop_atoms
.net_wm_window_type_dialog
;
129 supported
[i
++] = prop_atoms
.net_wm_window_type_normal
;
130 supported
[i
++] = prop_atoms
.net_wm_allowed_actions
;
131 supported
[i
++] = prop_atoms
.net_wm_action_move
;
132 supported
[i
++] = prop_atoms
.net_wm_action_resize
;
133 supported
[i
++] = prop_atoms
.net_wm_action_minimize
;
134 supported
[i
++] = prop_atoms
.net_wm_action_shade
;
135 supported
[i
++] = prop_atoms
.net_wm_action_maximize_horz
;
136 supported
[i
++] = prop_atoms
.net_wm_action_maximize_vert
;
137 supported
[i
++] = prop_atoms
.net_wm_action_fullscreen
;
138 supported
[i
++] = prop_atoms
.net_wm_action_change_desktop
;
139 supported
[i
++] = prop_atoms
.net_wm_action_close
;
140 supported
[i
++] = prop_atoms
.net_wm_state
;
141 supported
[i
++] = prop_atoms
.net_wm_state_modal
;
142 supported
[i
++] = prop_atoms
.net_wm_state_maximized_vert
;
143 supported
[i
++] = prop_atoms
.net_wm_state_maximized_horz
;
144 supported
[i
++] = prop_atoms
.net_wm_state_shaded
;
145 supported
[i
++] = prop_atoms
.net_wm_state_skip_taskbar
;
146 supported
[i
++] = prop_atoms
.net_wm_state_skip_pager
;
147 supported
[i
++] = prop_atoms
.net_wm_state_hidden
;
148 supported
[i
++] = prop_atoms
.net_wm_state_fullscreen
;
149 supported
[i
++] = prop_atoms
.net_wm_state_above
;
150 supported
[i
++] = prop_atoms
.net_wm_state_below
;
151 supported
[i
++] = prop_atoms
.net_moveresize_window
;
152 supported
[i
++] = prop_atoms
.net_wm_moveresize
;
153 supported
[i
++] = prop_atoms
.net_wm_moveresize_size_topleft
;
154 supported
[i
++] = prop_atoms
.net_wm_moveresize_size_top
;
155 supported
[i
++] = prop_atoms
.net_wm_moveresize_size_topright
;
156 supported
[i
++] = prop_atoms
.net_wm_moveresize_size_right
;
157 supported
[i
++] = prop_atoms
.net_wm_moveresize_size_bottomright
;
158 supported
[i
++] = prop_atoms
.net_wm_moveresize_size_bottom
;
159 supported
[i
++] = prop_atoms
.net_wm_moveresize_size_bottomleft
;
160 supported
[i
++] = prop_atoms
.net_wm_moveresize_size_left
;
161 supported
[i
++] = prop_atoms
.net_wm_moveresize_move
;
162 supported
[i
++] = prop_atoms
.net_wm_moveresize_size_keyboard
;
163 supported
[i
++] = prop_atoms
.net_wm_moveresize_move_keyboard
;
164 g_assert(i
== num_support
);
166 supported[] = prop_atoms.net_wm_action_stick;
169 PROP_SETA32(ob_root
, net_supported
, atom
, supported
, num_support
);
175 void screen_startup()
180 /* get the initial size */
181 screen_resize(WidthOfScreen(ScreenOfDisplay(ob_display
, ob_screen
)),
182 HeightOfScreen(ScreenOfDisplay(ob_display
, ob_screen
)));
185 screen_desktop_names
= g_new(char*,
186 g_slist_length(config_desktops_names
) + 1);
187 for (i
= 0, it
= config_desktops_names
; it
; ++i
, it
= it
->next
)
188 screen_desktop_names
[i
] = it
->data
; /* dont strdup */
189 screen_desktop_names
[i
] = NULL
;
190 PROP_SETSS(ob_root
, net_desktop_names
, screen_desktop_names
);
191 g_free(screen_desktop_names
); /* dont free the individual strings */
192 screen_desktop_names
= NULL
;
194 screen_num_desktops
= 0;
195 screen_set_num_desktops(config_desktops_num
);
196 if (startup_desktop
>= screen_num_desktops
)
198 screen_desktop
= startup_desktop
;
199 screen_set_desktop(startup_desktop
);
201 /* don't start in showing-desktop mode */
202 screen_showing_desktop
= FALSE
;
203 PROP_SET32(ob_root
, net_showing_desktop
, cardinal
, screen_showing_desktop
);
205 screen_update_layout();
208 sn_context
= sn_monitor_context_new(ob_sn_display
, ob_screen
,
209 sn_event_func
, NULL
, NULL
);
214 void screen_shutdown()
218 XSelectInput(ob_display
, ob_root
, NoEventMask
);
220 PROP_ERASE(ob_root
, openbox_pid
); /* we're not running here no more! */
221 PROP_ERASE(ob_root
, net_supported
); /* not without us */
222 PROP_ERASE(ob_root
, net_showing_desktop
); /* don't keep this mode */
224 XDestroyWindow(ob_display
, support_window
);
226 g_strfreev(screen_desktop_names
);
227 for (r
= area
; *r
; ++r
)
232 void screen_resize(int w
, int h
)
237 /* Set the _NET_DESKTOP_GEOMETRY hint */
238 screen_physical_size
.width
= geometry
[0] = w
;
239 screen_physical_size
.height
= geometry
[1] = h
;
240 PROP_SETA32(ob_root
, net_desktop_geometry
, cardinal
, geometry
, 2);
242 if (ob_state
== State_Starting
)
246 screen_update_areas();
248 for (it
= client_list
; it
; it
= it
->next
)
249 client_move_onscreen(it
->data
);
252 void screen_set_num_desktops(guint num
)
260 old
= screen_num_desktops
;
261 screen_num_desktops
= num
;
262 PROP_SET32(ob_root
, net_number_of_desktops
, cardinal
, num
);
264 /* set the viewport hint */
265 viewport
= g_new0(guint32
, num
* 2);
266 PROP_SETA32(ob_root
, net_desktop_viewport
, cardinal
, viewport
, num
* 2);
269 /* the number of rows/columns will differ */
270 screen_update_layout();
272 /* may be some unnamed desktops that we need to fill in with names */
273 screen_update_desktop_names();
275 /* update the focus lists */
276 /* free our lists for the desktops which have disappeared */
277 for (i
= num
; i
< old
; ++i
)
278 g_list_free(focus_order
[i
]);
279 /* realloc the array */
280 focus_order
= g_renew(GList
*, focus_order
, num
);
281 /* set the new lists to be empty */
282 for (i
= old
; i
< num
; ++i
)
283 focus_order
[i
] = NULL
;
285 /* move windows on desktops that will no longer exist! */
286 for (it
= client_list
; it
!= NULL
; it
= it
->next
) {
287 Client
*c
= it
->data
;
288 if (c
->desktop
>= num
&& c
->desktop
!= DESKTOP_ALL
)
289 client_set_desktop(c
, num
- 1, FALSE
);
292 /* change our struts/area to match (after moving windows) */
293 screen_update_areas();
295 dispatch_ob(Event_Ob_NumDesktops
, num
, old
);
297 /* change our desktop if we're on one that no longer exists! */
298 if (screen_desktop
>= screen_num_desktops
)
299 screen_set_desktop(num
- 1);
302 void screen_set_desktop(guint num
)
308 g_assert(num
< screen_num_desktops
);
310 old
= screen_desktop
;
311 screen_desktop
= num
;
312 PROP_SET32(ob_root
, net_current_desktop
, cardinal
, num
);
314 if (old
== num
) return;
316 g_message("Moving to desktop %d", num
+1);
318 /* show windows before hiding the rest to lessen the enter/leave events */
320 /* show windows from top to bottom */
321 for (it
= stacking_list
; it
!= NULL
; it
= it
->next
) {
322 if (WINDOW_IS_CLIENT(it
->data
)) {
323 Client
*c
= it
->data
;
324 if (!c
->frame
->visible
&& client_should_show(c
))
325 frame_show(c
->frame
);
329 /* hide windows from bottom to top */
330 for (it
= g_list_last(stacking_list
); it
!= NULL
; it
= it
->prev
) {
331 if (WINDOW_IS_CLIENT(it
->data
)) {
332 Client
*c
= it
->data
;
333 if (c
->frame
->visible
&& !client_should_show(c
))
334 frame_hide(c
->frame
);
338 /* focus the last focused window on the desktop, and ignore enter events
339 from the switch so it doesnt mess with the focus */
340 while (XCheckTypedEvent(ob_display
, EnterNotify
, &e
));
341 g_message("switch fallback");
342 focus_fallback(Fallback_Desktop
);
343 g_message("/switch fallback");
345 dispatch_ob(Event_Ob_Desktop
, num
, old
);
348 void screen_update_layout()
350 guint32
*data
= NULL
;
354 screen_desktop_layout
.orientation
= prop_atoms
.net_wm_orientation_horz
;
355 screen_desktop_layout
.start_corner
= prop_atoms
.net_wm_topleft
;
356 screen_desktop_layout
.rows
= 1;
357 screen_desktop_layout
.columns
= screen_num_desktops
;
359 if (PROP_GETA32(ob_root
, net_desktop_layout
, cardinal
, &data
, &num
)) {
360 if (num
== 3 || num
== 4) {
361 if (data
[0] == prop_atoms
.net_wm_orientation_vert
)
362 screen_desktop_layout
.orientation
= data
[0];
364 screen_desktop_layout
.start_corner
=
365 prop_atoms
.net_wm_topright
;
367 if (data
[3] == prop_atoms
.net_wm_topright
)
368 screen_desktop_layout
.start_corner
= data
[3];
369 else if (data
[3] == prop_atoms
.net_wm_bottomright
)
370 screen_desktop_layout
.start_corner
= data
[3];
371 else if (data
[3] == prop_atoms
.net_wm_bottomleft
)
372 screen_desktop_layout
.start_corner
= data
[3];
375 /* fill in a zero rows/columns */
376 if (!(data
[1] == 0 && data
[2] == 0)) { /* both 0's is bad data.. */
378 data
[1] = (screen_num_desktops
+
379 screen_num_desktops
% data
[2]) / data
[2];
380 } else if (data
[2] == 0) {
381 data
[2] = (screen_num_desktops
+
382 screen_num_desktops
% data
[1]) / data
[1];
384 screen_desktop_layout
.columns
= data
[1];
385 screen_desktop_layout
.rows
= data
[2];
388 /* bounds checking */
389 if (screen_desktop_layout
.orientation
==
390 prop_atoms
.net_wm_orientation_horz
) {
391 if (screen_desktop_layout
.rows
> screen_num_desktops
)
392 screen_desktop_layout
.rows
= screen_num_desktops
;
393 if (screen_desktop_layout
.columns
>
394 ((screen_num_desktops
+ screen_num_desktops
%
395 screen_desktop_layout
.rows
) /
396 screen_desktop_layout
.rows
))
397 screen_desktop_layout
.columns
=
398 (screen_num_desktops
+ screen_num_desktops
%
399 screen_desktop_layout
.rows
) /
400 screen_desktop_layout
.rows
;
402 if (screen_desktop_layout
.columns
> screen_num_desktops
)
403 screen_desktop_layout
.columns
= screen_num_desktops
;
404 if (screen_desktop_layout
.rows
>
405 ((screen_num_desktops
+ screen_num_desktops
%
406 screen_desktop_layout
.columns
) /
407 screen_desktop_layout
.columns
))
408 screen_desktop_layout
.rows
=
409 (screen_num_desktops
+ screen_num_desktops
%
410 screen_desktop_layout
.columns
) /
411 screen_desktop_layout
.columns
;
418 void screen_update_desktop_names()
422 /* empty the array */
423 g_strfreev(screen_desktop_names
);
424 screen_desktop_names
= NULL
;
426 if (PROP_GETSS(ob_root
, net_desktop_names
, utf8
, &screen_desktop_names
))
427 for (i
= 0; screen_desktop_names
[i
] && i
<= screen_num_desktops
; ++i
);
430 if (i
<= screen_num_desktops
) {
431 screen_desktop_names
= g_renew(char*, screen_desktop_names
,
432 screen_num_desktops
+ 1);
433 screen_desktop_names
[screen_num_desktops
] = NULL
;
434 for (; i
< screen_num_desktops
; ++i
)
435 screen_desktop_names
[i
] = g_strdup("Unnamed Desktop");
439 void screen_show_desktop(gboolean show
)
443 if (show
== screen_showing_desktop
) return; /* no change */
445 screen_showing_desktop
= show
;
449 for (it
= g_list_last(stacking_list
); it
!= NULL
; it
= it
->prev
) {
450 if (WINDOW_IS_CLIENT(it
->data
)) {
451 Client
*client
= it
->data
;
452 if (client
->frame
->visible
&& !client_should_show(client
))
453 frame_hide(client
->frame
);
458 for (it
= stacking_list
; it
!= NULL
; it
= it
->next
) {
459 if (WINDOW_IS_CLIENT(it
->data
)) {
460 Client
*client
= it
->data
;
461 if (!client
->frame
->visible
&& client_should_show(client
))
462 frame_show(client
->frame
);
469 for (it
= focus_order
[screen_desktop
]; it
; it
= it
->next
)
470 if (((Client
*)it
->data
)->type
== Type_Desktop
&&
471 client_focus(it
->data
))
474 focus_fallback(Fallback_NoFocus
);
477 show
= !!show
; /* make it boolean */
478 PROP_SET32(ob_root
, net_showing_desktop
, cardinal
, show
);
480 dispatch_ob(Event_Ob_ShowDesktop
, show
, 0);
483 void screen_install_colormap(Client
*client
, gboolean install
)
485 XWindowAttributes wa
;
487 if (client
== NULL
) {
489 XInstallColormap(RrDisplay(ob_rr_inst
), RrColormap(ob_rr_inst
));
491 XUninstallColormap(RrDisplay(ob_rr_inst
), RrColormap(ob_rr_inst
));
493 if (XGetWindowAttributes(ob_display
, client
->window
, &wa
) &&
494 wa
.colormap
!= None
) {
495 xerror_set_ignore(TRUE
);
497 XInstallColormap(RrDisplay(ob_rr_inst
), wa
.colormap
);
499 XUninstallColormap(RrDisplay(ob_rr_inst
), wa
.colormap
);
500 xerror_set_ignore(FALSE
);
505 void screen_update_areas()
509 Rect
**old_area
= area
;
514 extensions_xinerama_screens(&xin_areas
, &screen_num_xin_areas
);
517 for (i
= 0; area
[i
]; ++i
)
522 area
= g_new(Rect
*, screen_num_desktops
+ 2);
523 for (i
= 0; i
< screen_num_desktops
+ 1; ++i
)
524 area
[i
] = g_new(Rect
, screen_num_xin_areas
+ 1);
527 dims
= g_new(guint32
, 4 * screen_num_desktops
);
530 for (i
= 0; i
< screen_num_desktops
+ 1; ++i
) {
534 /* calc the xinerama areas */
535 for (x
= 0; x
< screen_num_xin_areas
; ++x
) {
536 area
[i
][x
] = xin_areas
[x
];
540 r
= xin_areas
[x
].x
+ xin_areas
[x
].width
- 1;
541 b
= xin_areas
[x
].y
+ xin_areas
[x
].height
- 1;
543 l
= MIN(l
, xin_areas
[x
].x
);
544 t
= MIN(t
, xin_areas
[x
].y
);
545 r
= MAX(r
, xin_areas
[x
].x
+ xin_areas
[x
].width
- 1);
546 b
= MAX(b
, xin_areas
[x
].y
+ xin_areas
[x
].height
- 1);
549 RECT_SET(area
[i
][x
], l
, t
, r
- l
+ 1, b
- t
+ 1);
552 STRUT_SET(s
, 0, 0, 0, 0);
553 for (it
= client_list
; it
; it
= it
->next
)
554 STRUT_ADD(s
, ((Client
*)it
->data
)->strut
);
555 STRUT_ADD(s
, dock_strut
);
560 /* find the left-most xin heads, i do this in 2 loops :| */
562 for (x
= 1; x
< screen_num_xin_areas
; ++x
)
563 o
= MIN(o
, area
[i
][x
].x
);
565 for (x
= 0; x
< screen_num_xin_areas
; ++x
) {
566 int edge
= o
+ s
.left
- area
[i
][x
].x
;
568 area
[i
][x
].x
+= edge
;
569 area
[i
][x
].width
-= edge
;
573 area
[i
][screen_num_xin_areas
].x
+= s
.left
;
574 area
[i
][screen_num_xin_areas
].width
-= s
.left
;
579 /* find the left-most xin heads, i do this in 2 loops :| */
581 for (x
= 1; x
< screen_num_xin_areas
; ++x
)
582 o
= MIN(o
, area
[i
][x
].y
);
584 for (x
= 0; x
< screen_num_xin_areas
; ++x
) {
585 int edge
= o
+ s
.top
- area
[i
][x
].y
;
587 area
[i
][x
].y
+= edge
;
588 area
[i
][x
].height
-= edge
;
592 area
[i
][screen_num_xin_areas
].y
+= s
.top
;
593 area
[i
][screen_num_xin_areas
].height
-= s
.top
;
598 /* find the bottom-most xin heads, i do this in 2 loops :| */
599 o
= area
[i
][0].x
+ area
[i
][0].width
- 1;
600 for (x
= 1; x
< screen_num_xin_areas
; ++x
)
601 o
= MAX(o
, area
[i
][x
].x
+ area
[i
][x
].width
- 1);
603 for (x
= 0; x
< screen_num_xin_areas
; ++x
) {
604 int edge
= (area
[i
][x
].x
+ area
[i
][x
].width
- 1) -
607 area
[i
][x
].width
-= edge
;
610 area
[i
][screen_num_xin_areas
].width
-= s
.right
;
615 /* find the bottom-most xin heads, i do this in 2 loops :| */
616 o
= area
[i
][0].y
+ area
[i
][0].height
- 1;
617 for (x
= 1; x
< screen_num_xin_areas
; ++x
)
618 o
= MAX(o
, area
[i
][x
].y
+ area
[i
][x
].height
- 1);
620 for (x
= 0; x
< screen_num_xin_areas
; ++x
) {
621 int edge
= (area
[i
][x
].y
+ area
[i
][x
].height
- 1) -
624 area
[i
][x
].height
-= edge
;
627 area
[i
][screen_num_xin_areas
].height
-= s
.bottom
;
630 /* XXX when dealing with partial struts, if its in a single
631 xinerama area, then only subtract it from that area's space
632 for (x = 0; x < screen_num_xin_areas; ++x) {
636 do something smart with it for the 'all xinerama areas' one...
638 for (it = client_list; it; it = it->next) {
640 XXX if gunna test this shit, then gotta worry about when
641 the client moves between xinerama heads..
643 if (RECT_CONTAINS_RECT(((Client*)it->data)->frame->area,
651 /* XXX optimize when this is run? */
653 /* the area has changed, adjust all the maximized
655 for (it
= client_list
; it
; it
= it
->next
) {
656 Client
*c
= it
->data
;
657 if (i
< screen_num_desktops
) {
659 client_reconfigure(c
);
660 } else if (c
->desktop
== DESKTOP_ALL
)
661 client_reconfigure(c
);
663 if (i
< screen_num_desktops
) {
664 /* don't set these for the 'all desktops' area */
665 dims
[(i
* 4) + 0] = area
[i
][screen_num_xin_areas
].x
;
666 dims
[(i
* 4) + 1] = area
[i
][screen_num_xin_areas
].y
;
667 dims
[(i
* 4) + 2] = area
[i
][screen_num_xin_areas
].width
;
668 dims
[(i
* 4) + 3] = area
[i
][screen_num_xin_areas
].height
;
671 PROP_SETA32(ob_root
, net_workarea
, cardinal
,
672 dims
, 4 * screen_num_desktops
);
677 Rect
*screen_area(guint desktop
)
679 return screen_area_xinerama(desktop
, screen_num_xin_areas
);
682 Rect
*screen_area_xinerama(guint desktop
, guint head
)
684 if (head
> screen_num_xin_areas
)
686 if (desktop
>= screen_num_desktops
) {
687 if (desktop
== DESKTOP_ALL
)
688 return &area
[screen_num_desktops
][head
];
691 return &area
[desktop
][head
];
694 Rect
*screen_physical_area()
696 return screen_physical_area_xinerama(screen_num_xin_areas
);
699 Rect
*screen_physical_area_xinerama(guint head
)
701 if (head
> screen_num_xin_areas
)
703 return &xin_areas
[head
];
706 static void set_root_cursor()
710 XDefineCursor(ob_display
, ob_root
, ob_cursors
.busy
);
713 XDefineCursor(ob_display
, ob_root
, ob_cursors
.ptr
);
717 static void sn_timeout(void *data
)
719 timer_stop(sn_timer
);
726 static void sn_event_func(SnMonitorEvent
*ev
, void *data
)
728 SnStartupSequence
*seq
;
729 const char *seq_id
, *bin_name
;
730 int cnt
= sn_busy_cnt
;
732 if (!(seq
= sn_monitor_event_get_startup_sequence(ev
)))
735 seq_id
= sn_startup_sequence_get_id(seq
);
736 bin_name
= sn_startup_sequence_get_binary_name(seq
);
738 if (!(seq_id
&& bin_name
))
741 switch (sn_monitor_event_get_type(ev
)) {
742 case SN_MONITOR_EVENT_INITIATED
:
745 timer_stop(sn_timer
);
746 /* 30 second timeout for apps to start */
747 sn_timer
= timer_start(30 * 1000000, sn_timeout
, NULL
);
749 case SN_MONITOR_EVENT_CHANGED
:
751 case SN_MONITOR_EVENT_COMPLETED
:
752 if (sn_busy_cnt
) --sn_busy_cnt
;
754 timer_stop(sn_timer
);
758 case SN_MONITOR_EVENT_CANCELED
:
759 if (sn_busy_cnt
) --sn_busy_cnt
;
761 timer_stop(sn_timer
);
766 if (sn_busy_cnt
!= cnt
)