summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-13 22:31:36 +0000
committerDana Jansens <danakj@orodu.net>2007-05-13 22:31:36 +0000
commit99e23015cf2b7780f4a684669008ae38abe62932 (patch)
tree27512dc70fbd4727bf4e52e9a1769656d4f9eaf7 /openbox
parent2676b61b0f4caa8639ce9509f00b0ea2773b731e (diff)
rename the openbox_* atoms back to ob_*
Diffstat (limited to 'openbox')
-rw-r--r--openbox/client.c10
-rw-r--r--openbox/event.c2
-rw-r--r--openbox/openbox.c4
-rw-r--r--openbox/prop.c8
-rw-r--r--openbox/prop.h8
-rw-r--r--openbox/screen.c12
6 files changed, 22 insertions, 22 deletions
diff --git a/openbox/client.c b/openbox/client.c
index 3d6ae529..dd47fff4 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -1181,7 +1181,7 @@ static void client_get_state(ObClient *self)
self->below = TRUE;
else if (state[i] == prop_atoms.net_wm_state_demands_attention)
self->demands_attention = TRUE;
- else if (state[i] == prop_atoms.openbox_wm_state_undecorated)
+ else if (state[i] == prop_atoms.ob_wm_state_undecorated)
self->undecorated = TRUE;
}
@@ -2296,7 +2296,7 @@ static void client_change_state(ObClient *self)
if (self->demands_attention)
netstate[num++] = prop_atoms.net_wm_state_demands_attention;
if (self->undecorated)
- netstate[num++] = prop_atoms.openbox_wm_state_undecorated;
+ netstate[num++] = prop_atoms.ob_wm_state_undecorated;
PROP_SETA32(self->window, net_wm_state, atom, netstate, num);
if (self->frame)
@@ -3224,7 +3224,7 @@ void client_set_state(ObClient *self, Atom action, glong data1, glong data2)
action = self->demands_attention ?
prop_atoms.net_wm_state_remove :
prop_atoms.net_wm_state_add;
- else if (state == prop_atoms.openbox_wm_state_undecorated)
+ else if (state == prop_atoms.ob_wm_state_undecorated)
action = undecorated ? prop_atoms.net_wm_state_remove :
prop_atoms.net_wm_state_add;
}
@@ -3254,7 +3254,7 @@ void client_set_state(ObClient *self, Atom action, glong data1, glong data2)
below = TRUE;
} else if (state == prop_atoms.net_wm_state_demands_attention) {
demands_attention = TRUE;
- } else if (state == prop_atoms.openbox_wm_state_undecorated) {
+ } else if (state == prop_atoms.ob_wm_state_undecorated) {
undecorated = TRUE;
}
@@ -3281,7 +3281,7 @@ void client_set_state(ObClient *self, Atom action, glong data1, glong data2)
below = FALSE;
} else if (state == prop_atoms.net_wm_state_demands_attention) {
demands_attention = FALSE;
- } else if (state == prop_atoms.openbox_wm_state_undecorated) {
+ } else if (state == prop_atoms.ob_wm_state_undecorated) {
undecorated = FALSE;
}
}
diff --git a/openbox/event.c b/openbox/event.c
index e431e8f4..3acb5d1f 100644
--- a/openbox/event.c
+++ b/openbox/event.c
@@ -681,7 +681,7 @@ static void event_handle_root(XEvent *e)
screen_set_num_desktops(d);
} else if (msgtype == prop_atoms.net_showing_desktop) {
screen_show_desktop(e->xclient.data.l[0] != 0, NULL);
- } else if (msgtype == prop_atoms.openbox_control) {
+ } else if (msgtype == prop_atoms.ob_control) {
if (e->xclient.data.l[0] == 1)
ob_reconfigure();
else if (e->xclient.data.l[0] == 2)
diff --git a/openbox/openbox.c b/openbox/openbox.c
index d5501564..2de1f7e7 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -150,7 +150,7 @@ gint main(gint argc, gchar **argv)
* remote_control = 1 -> reconfigure
* remote_control = 2 -> restart */
PROP_MSG(RootWindow(ob_display, ob_screen),
- openbox_control, remote_control, 0, 0, 0);
+ ob_control, remote_control, 0, 0, 0);
XCloseDisplay(ob_display);
exit(EXIT_SUCCESS);
}
@@ -242,7 +242,7 @@ gint main(gint argc, gchar **argv)
if (config_type != NULL)
PROP_SETS(RootWindow(ob_display, ob_screen),
- openbox_config, config_type);
+ ob_config, config_type);
/* we're done with parsing now, kill it */
parse_shutdown(i);
diff --git a/openbox/prop.c b/openbox/prop.c
index 5b611f2d..4cf832ff 100644
--- a/openbox/prop.c
+++ b/openbox/prop.c
@@ -170,10 +170,10 @@ void prop_startup()
CREATE(esetrootid, "ESETROOT_PMAP_ID");
*/
- CREATE(openbox_pid, "_OPENBOX_PID");
- CREATE(openbox_config, "_OPENBOX_CONFIG");
- CREATE(openbox_wm_state_undecorated, "_OB_WM_STATE_UNDECORATED");
- CREATE(openbox_control, "_OPENBOX_CONTROL");
+ CREATE(ob_pid, "_OB_PID");
+ CREATE(ob_config, "_OB_CONFIG");
+ CREATE(ob_wm_state_undecorated, "_OB_WM_STATE_UNDECORATED");
+ CREATE(ob_control, "_OB_CONTROL");
}
#include <X11/Xutil.h>
diff --git a/openbox/prop.h b/openbox/prop.h
index 8f81eff0..a1d9f52e 100644
--- a/openbox/prop.h
+++ b/openbox/prop.h
@@ -190,10 +190,10 @@ typedef struct Atoms {
/* Openbox specific atoms */
- Atom openbox_wm_state_undecorated;
- Atom openbox_pid;
- Atom openbox_config;
- Atom openbox_control;
+ Atom ob_wm_state_undecorated;
+ Atom ob_pid; /* this is depreecated in favour of ob_control */
+ Atom ob_config;
+ Atom ob_control;
} Atoms;
Atoms prop_atoms;
diff --git a/openbox/screen.c b/openbox/screen.c
index 97fa8849..684dd5bb 100644
--- a/openbox/screen.c
+++ b/openbox/screen.c
@@ -196,7 +196,7 @@ gboolean screen_annex(const gchar *program_name)
/* set the OPENBOX_PID hint */
pid = getpid();
PROP_SET32(RootWindow(ob_display, ob_screen),
- openbox_pid, cardinal, pid);
+ ob_pid, cardinal, pid);
/* set supporting window */
PROP_SET32(RootWindow(ob_display, ob_screen),
@@ -289,10 +289,10 @@ gboolean screen_annex(const gchar *program_name)
supported[i++] = prop_atoms.kde_net_wm_frame_strut;
supported[i++] = prop_atoms.kde_net_wm_window_type_override;
- supported[i++] = prop_atoms.openbox_wm_state_undecorated;
- supported[i++] = prop_atoms.openbox_pid;
- supported[i++] = prop_atoms.openbox_config;
- supported[i++] = prop_atoms.openbox_control;
+ supported[i++] = prop_atoms.ob_wm_state_undecorated;
+ supported[i++] = prop_atoms.ob_pid;
+ supported[i++] = prop_atoms.ob_config;
+ supported[i++] = prop_atoms.ob_control;
g_assert(i == num_support);
PROP_SETA32(RootWindow(ob_display, ob_screen),
@@ -373,7 +373,7 @@ void screen_shutdown(gboolean reconfig)
NoEventMask);
/* we're not running here no more! */
- PROP_ERASE(RootWindow(ob_display, ob_screen), openbox_pid);
+ PROP_ERASE(RootWindow(ob_display, ob_screen), ob_pid);
/* not without us */
PROP_ERASE(RootWindow(ob_display, ob_screen), net_supported);
/* don't keep this mode */