summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openbox/client.c12
-rw-r--r--openbox/dock.c2
-rw-r--r--openbox/focus_cycle_popup.c4
-rw-r--r--openbox/frame.c4
-rw-r--r--openbox/keyboard.c2
-rw-r--r--openbox/menuframe.c4
-rw-r--r--openbox/moveresize.c4
-rw-r--r--openbox/place.c2
-rw-r--r--openbox/popup.c2
-rw-r--r--openbox/prompt.c2
-rw-r--r--openbox/resist.c4
-rw-r--r--openbox/screen.c14
-rw-r--r--openbox/screen.h10
13 files changed, 34 insertions, 32 deletions
diff --git a/openbox/client.c b/openbox/client.c
index adbbc13b..755e9ad5 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -2043,7 +2043,7 @@ void client_update_strut(ObClient *self)
if (!got &&
OBT_PROP_GETA32(self->window, NET_WM_STRUT, CARDINAL, &data, &num)) {
if (num == 4) {
- Rect const *a;
+ const Rect *a;
got = TRUE;
@@ -2468,10 +2468,10 @@ gboolean client_has_parent(ObClient *self)
return self->parents != NULL;
}
-gboolean client_is_oldfullscreen(const ObClient const *self,
- const Rect const *area)
+gboolean client_is_oldfullscreen(const ObClient *self,
+ const Rect *area)
{
- Rect const *monitor, *allmonitors;
+ const Rect *monitor, *allmonitors;
/* No decorations and fills the monitor = oldskool fullscreen.
But not for maximized windows.
@@ -2489,7 +2489,7 @@ gboolean client_is_oldfullscreen(const ObClient const *self,
static ObStackingLayer calc_layer(ObClient *self)
{
ObStackingLayer l;
- Rect const *monitor, *allmonitors;
+ const Rect *monitor, *allmonitors;
monitor = screen_physical_area_monitor(client_monitor(self));
allmonitors = screen_physical_area_all_monitors();
@@ -2842,7 +2842,7 @@ void client_try_configure(ObClient *self, gint *x, gint *y, gint *w, gint *h,
/* set the size and position if fullscreen */
if (self->fullscreen) {
- Rect const *a;
+ const Rect *a;
guint i;
i = screen_find_monitor(&desired);
diff --git a/openbox/dock.c b/openbox/dock.c
index e3ad2bc6..3a58344e 100644
--- a/openbox/dock.c
+++ b/openbox/dock.c
@@ -236,7 +236,7 @@ void dock_configure(void)
gint gravity;
gint l, r, t, b;
gint strw, strh;
- Rect const *a;
+ const Rect *a;
gint hidesize;
RrMargins(dock->a_frame, &l, &t, &r, &b);
diff --git a/openbox/focus_cycle_popup.c b/openbox/focus_cycle_popup.c
index 16770ed7..ba2b4680 100644
--- a/openbox/focus_cycle_popup.c
+++ b/openbox/focus_cycle_popup.c
@@ -392,7 +392,7 @@ static void popup_render(ObFocusCyclePopup *p, const ObClient *c)
gint ml, mt, mr, mb;
gint l, t, r, b;
gint x, y, w, h;
- Rect const *screen_area = NULL;
+ const Rect *screen_area = NULL;
gint i;
GList *it;
const ObFocusCyclePopupTarget *newtarget;
@@ -759,7 +759,7 @@ void focus_cycle_popup_single_show(struct _ObClient *c,
/* do this stuff only when the dialog is first showing */
if (!popup.mapped) {
- Rect const *a;
+ const Rect *a;
popup_setup(&popup, FALSE, FALSE);
g_assert(popup.targets == NULL);
diff --git a/openbox/frame.c b/openbox/frame.c
index f6304f5d..f4a29289 100644
--- a/openbox/frame.c
+++ b/openbox/frame.c
@@ -1677,7 +1677,9 @@ static gboolean frame_animate_iconify(gpointer p)
if (self->client->icon_geometry.width == 0) {
/* there is no icon geometry set so just go straight down */
- Rect const *a = screen_physical_area_monitor(screen_find_monitor(&self->area));
+ const Rect *a;
+
+ a = screen_physical_area_monitor(screen_find_monitor(&self->area));
iconx = self->area.x + self->area.width / 2 + 32;
icony = a->y + a->width;
iconw = 64;
diff --git a/openbox/keyboard.c b/openbox/keyboard.c
index 9b74c284..ad4e4f3c 100644
--- a/openbox/keyboard.c
+++ b/openbox/keyboard.c
@@ -79,7 +79,7 @@ static void set_curpos(KeyBindingTree *newpos)
if (curpos != NULL) {
gchar *text = NULL;
GList *it;
- Rect const *a;
+ const Rect *a;
for (it = curpos->keylist; it; it = g_list_next(it)) {
gchar *oldtext = text;
diff --git a/openbox/menuframe.c b/openbox/menuframe.c
index 85f09519..9127257e 100644
--- a/openbox/menuframe.c
+++ b/openbox/menuframe.c
@@ -321,7 +321,7 @@ static void menu_frame_place_submenu(ObMenuFrame *self, gint *x, gint *y)
void menu_frame_move_on_screen(ObMenuFrame *self, gint x, gint y,
gint *dx, gint *dy)
{
- Rect const *a = NULL;
+ const Rect *a = NULL;
gint pos, half;
*dx = *dy = 0;
@@ -831,7 +831,7 @@ void menu_frame_render(ObMenuFrame *self)
static void menu_frame_update(ObMenuFrame *self)
{
GList *mit, *fit;
- Rect const *a;
+ const Rect *a;
gint h;
menu_pipe_execute(self->menu);
diff --git a/openbox/moveresize.c b/openbox/moveresize.c
index 466d8662..8609d3be 100644
--- a/openbox/moveresize.c
+++ b/openbox/moveresize.c
@@ -112,7 +112,7 @@ static void popup_coords(ObClient *c, const gchar *format, gint a, gint b)
c->frame->area.x + c->frame->area.width / 2,
c->frame->area.y + c->frame->area.height / 2);
else /* Fixed */ {
- Rect const *area = screen_physical_area_active();
+ const Rect *area = screen_physical_area_active();
gint gravity, x, y;
x = config_resize_popup_fixed.x.pos;
@@ -554,7 +554,7 @@ static void do_edge_warp(gint x, gint y)
dir = -1;
for (i = 0; i < screen_num_monitors; ++i) {
- Rect const *a = screen_physical_area_monitor(i);
+ const Rect *a = screen_physical_area_monitor(i);
if (x == RECT_LEFT(*a)) dir = OB_DIRECTION_WEST;
if (x == RECT_RIGHT(*a)) dir = OB_DIRECTION_EAST;
if (y == RECT_TOP(*a)) dir = OB_DIRECTION_NORTH;
diff --git a/openbox/place.c b/openbox/place.c
index 836c215d..c39d5069 100644
--- a/openbox/place.c
+++ b/openbox/place.c
@@ -107,7 +107,7 @@ static Rect **pick_head(ObClient *c)
screen_pointer_pos(&px, &py);
for (i = 0; i < screen_num_monitors; i++) {
- Rect const *monitor = screen_physical_area_monitor(i);
+ const Rect *monitor = screen_physical_area_monitor(i);
gboolean contain = RECT_CONTAINS(*monitor, px, py);
if (contain) {
add_choice(choice, i);
diff --git a/openbox/popup.c b/openbox/popup.c
index 8793accc..7d59d912 100644
--- a/openbox/popup.c
+++ b/openbox/popup.c
@@ -158,7 +158,7 @@ void popup_delay_show(ObPopup *self, gulong usec, gchar *text)
gint emptyx, emptyy; /* empty space between elements */
gint textx, texty, textw, texth;
gint iconx, icony, iconw, iconh;
- Rect const *area;
+ const Rect *area;
Rect mon;
gboolean hasicon = self->hasicon;
diff --git a/openbox/prompt.c b/openbox/prompt.c
index 3c5de401..50d09037 100644
--- a/openbox/prompt.c
+++ b/openbox/prompt.c
@@ -269,7 +269,7 @@ static void prompt_layout(ObPrompt *self)
b += OUTSIDE_MARGIN;
{
- Rect const *area = screen_physical_area_all_monitors();
+ const Rect *area = screen_physical_area_all_monitors();
maxw = MIN(MAX_WIDTH, area->width*4/5);
}
diff --git a/openbox/resist.c b/openbox/resist.c
index 927ee3a0..12f56329 100644
--- a/openbox/resist.c
+++ b/openbox/resist.c
@@ -136,7 +136,7 @@ void resist_move_windows(ObClient *c, gint resist, gint *x, gint *y)
void resist_move_monitors(ObClient *c, gint resist, gint *x, gint *y)
{
Rect *area;
- Rect const *parea;
+ const Rect *parea;
guint i;
gint l, t, r, b; /* requested edges */
gint al, at, ar, ab; /* screen area edges */
@@ -325,7 +325,7 @@ void resist_size_monitors(ObClient *c, gint resist, gint *w, gint *h,
gint l, t, r, b; /* my left, top, right and bottom sides */
gint dlt, drb; /* my destination left/top and right/bottom sides */
Rect *area;
- Rect const *parea;
+ const Rect *parea;
gint al, at, ar, ab; /* screen boundaries */
gint pl, pt, pr, pb; /* physical screen boundaries */
guint i;
diff --git a/openbox/screen.c b/openbox/screen.c
index d69b2447..e939b01d 100644
--- a/openbox/screen.c
+++ b/openbox/screen.c
@@ -939,7 +939,7 @@ static gboolean hide_desktop_popup_func(gpointer data)
void screen_show_desktop_popup(guint d, gboolean perm)
{
- Rect const *a;
+ const Rect *a;
/* 0 means don't show the popup */
if (!config_desktop_popup_time) return;
@@ -1617,14 +1617,14 @@ Rect* screen_area(guint desktop, guint head, Rect *search)
return a;
}
-guint screen_find_monitor(const Rect const *search)
+guint screen_find_monitor(const Rect *search)
{
guint i;
guint most = screen_num_monitors;
guint mostv = 0;
for (i = 0; i < screen_num_monitors; ++i) {
- Rect const *area = screen_physical_area_monitor(i);
+ const Rect *area = screen_physical_area_monitor(i);
if (RECT_INTERSECTS_RECT(*area, *search)) {
Rect r;
guint v;
@@ -1641,12 +1641,12 @@ guint screen_find_monitor(const Rect const *search)
return most;
}
-Rect const* screen_physical_area_all_monitors(void)
+const Rect* screen_physical_area_all_monitors(void)
{
return screen_physical_area_monitor(screen_num_monitors);
}
-Rect const* screen_physical_area_monitor(guint head)
+const Rect* screen_physical_area_monitor(guint head)
{
g_assert(head <= screen_num_monitors);
@@ -1670,7 +1670,7 @@ guint screen_monitor_active(void)
return screen_monitor_pointer();
}
-Rect const* screen_physical_area_active(void)
+const Rect* screen_physical_area_active(void)
{
return screen_physical_area_monitor(screen_monitor_active());
}
@@ -1691,7 +1691,7 @@ guint screen_monitor_primary(gboolean fixed)
return screen_monitor_pointer();
}
-Rect const *screen_physical_area_primary(gboolean fixed)
+const Rect* screen_physical_area_primary(gboolean fixed)
{
return screen_physical_area_monitor(screen_monitor_primary(fixed));
}
diff --git a/openbox/screen.h b/openbox/screen.h
index 0f796871..d15b352c 100644
--- a/openbox/screen.h
+++ b/openbox/screen.h
@@ -104,17 +104,17 @@ void screen_install_colormap(struct _ObClient *client, gboolean install);
void screen_update_areas(void);
-Rect const* screen_physical_area_all_monitors(void);
+const Rect* screen_physical_area_all_monitors(void);
/*! Returns a Rect which is owned by the screen code and should not be freed */
-Rect const* screen_physical_area_monitor(guint head);
+const Rect* screen_physical_area_monitor(guint head);
/*! Returns the monitor which contains the active window, or the one
containing the pointer otherwise. */
guint screen_monitor_active(void);
/*! Returns a Rect which is owned by the screen code and should not be freed */
-Rect const* screen_physical_area_active(void);
+const Rect* screen_physical_area_active(void);
/*! Returns the primary monitor, as specified by the config.
@fixed If TRUE, then this will always return a fixed monitor, otherwise
@@ -128,7 +128,7 @@ guint screen_monitor_primary(gboolean fixed);
See screen_monitor_primary().
@return A Rect which is owned by the screen code and should not be freed
*/
-Rect const *screen_physical_area_primary(gboolean fixed);
+const Rect* screen_physical_area_primary(gboolean fixed);
/* doesn't include struts which the search area is already outside of when
'search' is not NULL */
@@ -148,7 +148,7 @@ gboolean screen_physical_area_monitor_contains(guint head, Rect *search);
area of the part of the rectable on each monitor. The number of the
monitor containing the greatest area of the rectangle is returned.
*/
-guint screen_find_monitor(const Rect const *search);
+guint screen_find_monitor(const Rect *search);
/*! Finds the monitor which contains the point @x, @y */
guint screen_find_monitor_point(guint x, guint y);