summaryrefslogtreecommitdiff
path: root/openbox/openbox.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-05-16 18:10:10 +0000
committerDana Jansens <danakj@orodu.net>2003-05-16 18:10:10 +0000
commitb77e40e1c7710323aa59a778338d8e18b591f718 (patch)
tree48ae520439b10bffa5c63f3cc5a7230ccab06331 /openbox/openbox.c
parent6e42b65bda1706887f3b2a7f9d79ba20f7611a06 (diff)
rename "Slit" to "Dock".
add config options to the rc3 for the dock. create a window_map, add DockApps to the ObWindow types, use the window_map for translating windows into objects for event handling (only one lookup now) and remove the old maps (client_map, menu_map).
Diffstat (limited to 'openbox/openbox.c')
-rw-r--r--openbox/openbox.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c
index 505dffbc..93e91a59 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -1,5 +1,5 @@
#include "openbox.h"
-#include "slit.h"
+#include "dock.h"
#include "event.h"
#include "menu.h"
#include "client.h"
@@ -184,6 +184,7 @@ int main(int argc, char **argv)
g_free(theme);
if (!theme) return 1;
+ window_startup();
menu_startup();
frame_startup();
moveresize_startup();
@@ -191,7 +192,7 @@ int main(int argc, char **argv)
screen_startup();
group_startup();
client_startup();
- slit_startup();
+ dock_startup();
/* call startup for all the plugins */
plugin_startall();
@@ -204,11 +205,11 @@ int main(int argc, char **argv)
event_loop();
ob_state = State_Exiting;
- slit_remove_all();
+ dock_remove_all();
client_unmanage_all();
plugin_shutdown(); /* calls all the plugins' shutdown functions */
- slit_shutdown();
+ dock_shutdown();
client_shutdown();
group_shutdown();
screen_shutdown();
@@ -216,6 +217,7 @@ int main(int argc, char **argv)
moveresize_shutdown();
frame_shutdown();
menu_shutdown();
+ window_shutdown();
grab_shutdown();
event_shutdown();
theme_shutdown();