]> Dogcows Code - chaz/openbox/commitdiff
remove all the startup notification code from screen.c
authorDana Jansens <danakj@orodu.net>
Wed, 3 Sep 2003 20:32:21 +0000 (20:32 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 3 Sep 2003 20:32:21 +0000 (20:32 +0000)
openbox/screen.c
openbox/screen.h

index 41fee0b9f2efd69e89bba0afba435f4052239a4f..38ad8978d7cf32a56fc3e1637a46c8d4c210dd8e 100644 (file)
@@ -1,11 +1,10 @@
 #include "debug.h"
 #include "openbox.h"
-#include "mainloop.h"
 #include "dock.h"
 #include "xerror.h"
 #include "prop.h"
-#include "startup.h"
 #include "grab.h"
+#include "startupnotify.h"
 #include "config.h"
 #include "screen.h"
 #include "client.h"
 #include "extensions.h"
 #include "render/render.h"
 
-#ifdef USE_LIBSN
-#  define SN_API_NOT_YET_FROZEN
-#  include <libsn/sn.h>
-#endif
-
 #include <X11/Xlib.h>
 #ifdef HAVE_UNISTD_H
 #  include <sys/types.h>
@@ -48,15 +42,6 @@ static Rect  *monitor_area;
 
 static Popup *desktop_cycle_popup;
 
-#ifdef USE_LIBSN
-static SnMonitorContext *sn_context;
-static int sn_busy_cnt;
-
-static void sn_event_func(SnMonitorEvent *event, void *data);
-#endif
-
-static void set_root_cursor();
-
 static gboolean replace_wm()
 {
     char *wm_sn;
@@ -179,7 +164,7 @@ gboolean screen_annex()
     }
 
 
-    set_root_cursor();
+    screen_set_root_cursor();
 
     /* set the OPENBOX_PID hint */
     pid = getpid();
@@ -287,10 +272,7 @@ void screen_startup(gboolean reconfig)
         screen_num_desktops = 0;
     screen_set_num_desktops(config_desktops_num);
     if (!reconfig) {
-        if (startup_desktop >= screen_num_desktops)
-            startup_desktop = 0;
-        screen_desktop = startup_desktop;
-        screen_set_desktop(startup_desktop);
+        screen_set_desktop(0);
 
         /* don't start in showing-desktop mode */
         screen_showing_desktop = FALSE;
@@ -298,12 +280,6 @@ void screen_startup(gboolean reconfig)
                    net_showing_desktop, cardinal, screen_showing_desktop);
 
         screen_update_layout();
-
-#ifdef USE_LIBSN
-        sn_context = sn_monitor_context_new(ob_sn_display, ob_screen,
-                                            sn_event_func, NULL, NULL);
-        sn_busy_cnt = 0;
-#endif
     }
 }
 
@@ -314,10 +290,6 @@ void screen_shutdown(gboolean reconfig)
     popup_free(desktop_cycle_popup);
 
     if (!reconfig) {
-#ifdef USE_LIBSN
-        sn_monitor_context_unref(sn_context);
-#endif
-
         XSelectInput(ob_display, RootWindow(ob_display, ob_screen),
                      NoEventMask);
 
@@ -1078,66 +1050,15 @@ Rect *screen_physical_area_monitor(guint head)
     return &monitor_area[head];
 }
 
-static void set_root_cursor()
+void screen_set_root_cursor()
 {
-#ifdef USE_LIBSN
-        if (sn_busy_cnt)
-            XDefineCursor(ob_display, RootWindow(ob_display, ob_screen),
-                          ob_cursor(OB_CURSOR_BUSY));
-        else
-#endif
-            XDefineCursor(ob_display, RootWindow(ob_display, ob_screen),
-                          ob_cursor(OB_CURSOR_POINTER));
-}
-
-#ifdef USE_LIBSN
-static gboolean sn_timeout(gpointer data)
-{
-    sn_busy_cnt = 0;
-
-    set_root_cursor();
-
-    return FALSE; /* don't repeat */
-}
-
-static void sn_event_func(SnMonitorEvent *ev, void *data)
-{
-    SnStartupSequence *seq;
-    const char *seq_id, *bin_name;
-    int cnt = sn_busy_cnt;
-
-    if (!(seq = sn_monitor_event_get_startup_sequence(ev)))
-        return;
-
-    seq_id = sn_startup_sequence_get_id(seq);
-    bin_name = sn_startup_sequence_get_binary_name(seq);
-    
-    if (!(seq_id && bin_name))
-        return;
-
-    switch (sn_monitor_event_get_type(ev)) {
-    case SN_MONITOR_EVENT_INITIATED:
-        ++sn_busy_cnt;
-        ob_main_loop_timeout_remove(ob_main_loop, sn_timeout);
-        /* 30 second timeout for apps to start */
-        ob_main_loop_timeout_add(ob_main_loop, 30 * G_USEC_PER_SEC,
-                                 sn_timeout, NULL, NULL);
-        break;
-    case SN_MONITOR_EVENT_CHANGED:
-        break;
-    case SN_MONITOR_EVENT_COMPLETED:
-        if (sn_busy_cnt) --sn_busy_cnt;
-        ob_main_loop_timeout_remove(ob_main_loop, sn_timeout);
-        break;
-    case SN_MONITOR_EVENT_CANCELED:
-        if (sn_busy_cnt) --sn_busy_cnt;
-        ob_main_loop_timeout_remove(ob_main_loop, sn_timeout);
-    };
-
-    if (sn_busy_cnt != cnt)
-        set_root_cursor();
+    if (sn_app_starting())
+        XDefineCursor(ob_display, RootWindow(ob_display, ob_screen),
+                      ob_cursor(OB_CURSOR_BUSY));
+    else
+        XDefineCursor(ob_display, RootWindow(ob_display, ob_screen),
+                      ob_cursor(OB_CURSOR_POINTER));
 }
-#endif
 
 gboolean screen_pointer_pos(int *x, int *y)
 {
index ee966bb7aacd47ec03074acfd95fb07906011fef..782c7311085b6ac8e613d789ddae086552880357 100644 (file)
@@ -75,6 +75,10 @@ Rect *screen_area(guint desktop);
 
 Rect *screen_area_monitor(guint desktop, guint head);
 
+/*! Sets the root cursor. This function decides which cursor to use, but you
+  gotta call it to let it know it should change. */
+void screen_set_root_cursor();
+
 gboolean screen_pointer_pos(int *x, int *y);
 
 #endif
This page took 0.034869 seconds and 4 git commands to generate.