X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fopenbox.c;h=59ba762779005965f845304bb467822eb4e85937;hb=3c5f6db04cb577fa3f547b45283eac7a0664be39;hp=631395cc826b522c428d113bf149f1070e1e5085;hpb=c90da6da781932c2d178bfb7e39ec1d5003543b7;p=chaz%2Fopenbox diff --git a/openbox/openbox.c b/openbox/openbox.c index 631395cc..59ba7627 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -5,7 +5,6 @@ #include "event.h" #include "menu.h" #include "client.h" -#include "dispatch.h" #include "xerror.h" #include "prop.h" #include "startup.h" @@ -66,7 +65,7 @@ static Cursor cursors[OB_NUM_CURSORS]; static KeyCode keys[OB_NUM_KEYS]; static gchar *sm_save_file; -static void signal_handler(const ObEvent *e, void *data); +static void signal_handler(int signal); static void parse_args(int argc, char **argv); int main(int argc, char **argv) @@ -90,13 +89,9 @@ int main(int argc, char **argv) bind_textdomain_codeset(PACKAGE_NAME, "UTF-8"); textdomain(PACKAGE_NAME); - /* start our event dispatcher and register for signals */ - dispatch_startup(); - dispatch_register(Event_Signal, signal_handler, NULL); - /* set up signal handler */ sigemptyset(&sigset); - action.sa_handler = dispatch_signal; + action.sa_handler = signal_handler; action.sa_mask = sigset; action.sa_flags = SA_NOCLDSTOP | SA_NODEFER; sigaction(SIGUSR1, &action, (struct sigaction *) NULL); @@ -210,8 +205,10 @@ int main(int argc, char **argv) startup_save(); if (screen_annex()) { /* it will be ours! */ + ObParseInst *i; + /* startup the parsing so everything can register sections of the rc */ - parse_startup(); + i = parse_startup(); /* anything that is going to read data from the rc file needs to be in this group */ @@ -224,16 +221,19 @@ int main(int argc, char **argv) window_startup(); plugin_startup(); /* load the plugins specified in the pluginrc */ - plugin_loadall(); + plugin_loadall(i); /* set up the kernel config shit */ - config_startup(); - menu_startup(); + config_startup(i); + menu_startup(i); /* parse/load user options */ if (parse_load_rc(&doc, &node)) - parse_tree(doc, node->xmlChildrenNode, NULL); + parse_tree(i, doc, node->xmlChildrenNode); /* we're done with parsing now, kill it */ - parse_shutdown(); + xmlFreeDoc(doc); + parse_shutdown(i); + + menu_parse(); /* load the theme specified in the rc file */ ob_rr_theme = RrThemeNew(ob_rr_inst, config_theme); @@ -263,6 +263,7 @@ int main(int argc, char **argv) client_unmanage_all(); plugin_shutdown(); /* calls all the plugins' shutdown functions */ + menu_shutdown(); mouse_shutdown(); keyboard_shutdown(); dock_shutdown(); @@ -271,7 +272,6 @@ int main(int argc, char **argv) screen_shutdown(); focus_shutdown(); moveresize_shutdown(); - menu_shutdown(); window_shutdown(); grab_shutdown(); event_shutdown(); @@ -279,14 +279,16 @@ int main(int argc, char **argv) config_shutdown(); } - dispatch_shutdown(); - RrThemeFree(ob_rr_theme); RrInstanceFree(ob_rr_inst); session_shutdown(); g_free(ob_sm_id); +#ifdef USE_LIBSN + sn_display_unref(ob_sn_display); +#endif + XCloseDisplay(ob_display); if (restart) { @@ -312,12 +314,9 @@ int main(int argc, char **argv) return 0; } -static void signal_handler(const ObEvent *e, void *data) +static void signal_handler(int sig) { - int s; - - s = e->data.s.signal; - switch (s) { + switch (sig) { case SIGUSR1: fprintf(stderr, "Caught SIGUSR1 signal. Restarting."); ob_restart(); @@ -327,13 +326,13 @@ static void signal_handler(const ObEvent *e, void *data) case SIGINT: case SIGTERM: case SIGPIPE: - fprintf(stderr, "Caught signal %d. Exiting.", s); + fprintf(stderr, "Caught signal %d. Exiting.", sig); ob_exit(); break; case SIGFPE: case SIGSEGV: - fprintf(stderr, "Caught signal %d. Aborting and dumping core.", s); + fprintf(stderr, "Caught signal %d. Aborting and dumping core.", sig); abort(); } }