all repos — openbox @ db75d406ce6194dd85c142616071e55f9b831f60

openbox fork - make it a bit more like ryudo

rm the focused member from the client struct, it was redundant with the focus_client variable around
Dana Jansens danakj@orodu.net
commit

db75d406ce6194dd85c142616071e55f9b831f60

parent

ca45916f77822dcd48a4d4f459c719e5e000a4b7

4 files changed, 36 insertions(+), 20 deletions(-)

jump to
M engines/openbox/openbox.cengines/openbox/openbox.c

@@ -23,6 +23,9 @@ #define HANDLE_WIDTH(f) (f->width - (GRIP_WIDTH + f->bwidth) * 2)

#define PLATE_EVENTMASK (SubstructureRedirectMask | ButtonPressMask) #define FRAME_EVENTMASK (EnterWindowMask | LeaveWindowMask) +#define ELEMENT_EVENTMASK (ButtonPressMask | ButtonReleaseMask | \ + ButtonMotionMask | ExposureMask | \ + EnterWindowMask | LeaveWindowMask) /* style settings - geometry */ int s_bevel;

@@ -268,8 +271,7 @@ mask = 0;

self->frame.plate = createWindow(self->frame.window, mask, &attrib); mask = CWEventMask; - attrib.event_mask = (ButtonPressMask | ButtonReleaseMask | - ButtonMotionMask | ExposureMask); + attrib.event_mask = ELEMENT_EVENTMASK; self->title = createWindow(self->frame.window, mask, &attrib); self->label = createWindow(self->title, mask, &attrib); self->max = createWindow(self->title, mask, &attrib);

@@ -729,7 +731,7 @@ }

static void render(ObFrame *self) { - if (self->frame.client->focused) { + if (client_focused(self->frame.client)) { XSetWindowBorder(ob_display, self->frame.plate, s_cb_focused_color->pixel); } else {

@@ -738,7 +740,7 @@ s_cb_unfocused_color->pixel);

} if (self->frame.client->decorations & Decor_Titlebar) { - paint(self->title, (self->frame.client->focused ? + paint(self->title, (client_focused(self->frame.client) ? self->a_focused_title : self->a_unfocused_title), 0, 0, self->width, TITLE_HEIGHT);

@@ -751,16 +753,16 @@ render_close(self);

} if (self->frame.client->decorations & Decor_Handle) { - paint(self->handle, (self->frame.client->focused ? + paint(self->handle, (client_focused(self->frame.client) ? self->a_focused_handle : self->a_unfocused_handle), GRIP_WIDTH + self->bwidth, 0, HANDLE_WIDTH(self), s_handle_height); - paint(self->lgrip, (self->frame.client->focused ? + paint(self->lgrip, (client_focused(self->frame.client) ? a_focused_grip : a_unfocused_grip), 0, 0, GRIP_WIDTH, s_handle_height); - paint(self->rgrip, (self->frame.client->focused ? + paint(self->rgrip, (client_focused(self->frame.client) ? a_focused_grip : a_unfocused_grip), 0, 0, GRIP_WIDTH, s_handle_height);

@@ -773,7 +775,7 @@ Appearance *a;

if (self->label_x < 0) return; - a = (self->frame.client->focused ? + a = (client_focused(self->frame.client) ? self->a_focused_label : self->a_unfocused_label); /* set the texture's text! */

@@ -797,7 +799,7 @@ self->frame.client->max_vert || self->frame.client->max_horz;

if (self->max_x < 0) return; - paint(self->max, (self->frame.client->focused ? + paint(self->max, (client_focused(self->frame.client) ? (press ? a_focused_pressed_max : a_focused_unpressed_max) :

@@ -811,7 +813,7 @@ static void render_iconify(ObFrame *self)

{ if (self->iconify_x < 0) return; - paint(self->iconify, (self->frame.client->focused ? + paint(self->iconify, (client_focused(self->frame.client) ? (self->iconify_press ? a_focused_pressed_iconify : a_focused_unpressed_iconify) :

@@ -828,7 +830,7 @@ self->frame.client->desktop == DESKTOP_ALL;

if (self->desk_x < 0) return; - paint(self->desk, (self->frame.client->focused ? + paint(self->desk, (client_focused(self->frame.client) ? (press ? a_focused_pressed_desk : a_focused_unpressed_desk) :

@@ -842,7 +844,7 @@ static void render_close(ObFrame *self)

{ if (self->close_x < 0) return; - paint(self->close, (self->frame.client->focused ? + paint(self->close, (client_focused(self->frame.client) ? (self->close_press ? a_focused_pressed_close : a_focused_unpressed_close) :
M openbox/client.copenbox/client.c

@@ -276,7 +276,7 @@ }

/* unfocus the client (dispatchs the focus event) (we're out of the transient lists already, so being modal doesn't matter) */ - if (client->focused) + if (client_focused(client)) client_unfocus(client); if (ob_state != State_Exiting) {

@@ -385,7 +385,6 @@ self->frame = NULL;

self->title = self->icon_title = NULL; self->res_name = self->res_class = self->role = NULL; self->wmstate = NormalState; - self->focused = FALSE; self->transient = FALSE; self->transients = NULL; self->transient_for = NULL;

@@ -1171,7 +1170,7 @@ for (it = node->transients; it != NULL; it = g_slist_next(it)) {

Client *c = it->data; if (c == skip) continue; /* circular? */ if ((ret = search_focus_tree(c, skip))) return ret; - if (c->focused) return c; + if (client_focused(c)) return c; } return NULL; }

@@ -1898,6 +1897,11 @@ XPutBackEvent(ob_display, &ev);

return FALSE; } } + + if (client_focused(self)) + return TRUE; + + g_print("Focusing: %lx\n", self->window); if (self->can_focus) XSetInputFocus(ob_display, self->window, RevertToNone, CurrentTime);

@@ -1917,12 +1921,18 @@ ce.xclient.data.l[4] = 0l;

XSendEvent(ob_display, self->window, FALSE, NoEventMask, &ce); } - /*XSync(ob_display, FALSE); XXX Why sync? */ + /* XSync(ob_display, FALSE); XXX Why sync? */ return TRUE; } void client_unfocus(Client *self) { g_assert(focus_client == self); + g_print("UNFocusing: %lx\n", self->window); focus_set_client(NULL); } + +gboolean client_focused(Client *self) +{ + return self == focus_client; +}
M openbox/client.hopenbox/client.h

@@ -217,8 +217,6 @@ /*! Urgency flag */

gboolean urgent; /*! Notify the window when it receives focus? */ gboolean focus_notify; - /*! Does the client window have the input focus? */ - gboolean focused; /*! The window uses shape extension to be non-rectangular? */ gboolean shaped;

@@ -318,6 +316,9 @@ /*! Returns if the window should be treated as a normal window.

Some windows (desktops, docks, splash screens) have special rules applied to them in a number of places regarding focus or user interaction. */ gboolean client_normal(Client *self); + +/* Returns if the window is focused */ +gboolean client_focused(Client *self); /*! Move and/or resize the window. This also maintains things like the client's minsize, and size increments.
M plugins/focus.cplugins/focus.c

@@ -76,6 +76,7 @@ }

static void events(ObEvent *e, void *foo) { + g_message("event %d", e->type); switch (e->type) { case Event_Client_Mapped: if (focus_new && client_normal(e->data.c.client))

@@ -85,7 +86,7 @@

case Event_Client_Unmapped: if (ob_state == State_Exiting) break; - if (e->data.c.client->focused) + if (client_focused(e->data.c.client)) if (!follow_mouse || !focus_under_pointer()) focus_fallback(FALSE); break;

@@ -110,8 +111,10 @@ g_message("skipped enter 'root'");

--skip_enter; } else*/ - if (e->data.x.client != NULL && client_normal(e->data.x.client)) + if (e->data.x.client != NULL && client_normal(e->data.x.client)) { client_focus(e->data.x.client); + g_message("enter %lx", e->data.x.client->window); + } break; default: