From b9e8307f606b970ceefa27a988543c5850e50225 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Tue, 1 Jul 2008 20:07:21 +0200 Subject: [PATCH] client: merge border_set into index Signed-off-by: Julien Danjou --- awesomerc.lua.in | 11 ++++++----- client.c | 49 +++++++++++++++++++----------------------------- structs.h | 1 + 3 files changed, 26 insertions(+), 35 deletions(-) diff --git a/awesomerc.lua.in b/awesomerc.lua.in index 06a352f94..a01a59731 100644 --- a/awesomerc.lua.in +++ b/awesomerc.lua.in @@ -284,25 +284,25 @@ end -- Hook function to execute when focusing a client. function hook_focus(c) if not awful.client.ismarked(c) then - c:border_set({ width = border_width, color = border_focus }) + c.border_color = border_focus end end -- Hook function to execute when unfocusing a client. function hook_unfocus(c) if not awful.client.ismarked(c) then - c:border_set({ width = border_width, color = border_normal }) + c.border_color = border_normal end end -- Hook function to execute when marking a client function hook_marked(c) - c:border_set({ width = border_width, color = border_marked }) + c.border_color = border_marked end -- Hook function to execute when unmarking a client function hook_unmarked(c) - c:border_set({ width = border_width, color = border_focus }) + c.border_color = border_focus end -- Hook function to execute when the mouse is over a client. @@ -321,7 +321,8 @@ function hook_manage(c) c:mouse_add(mouse({ modkey }, 3, function (c) c:mouse_resize() end)) -- New client may not receive focus -- if they're not focusable, so set border anyway. - c:border_set({ width = border_width, color = border_normal }) + c.border_width = border_width + c.border_color = border_normal c:focus_set() if floatings[c.name:lower()] then c.floating = true diff --git a/client.c b/client.c index 65d686d30..4343ae365 100644 --- a/client.c +++ b/client.c @@ -969,34 +969,6 @@ client_setborder(client_t *c, int width) globalconf.screens[c->screen].need_arrange = true; } -/** Set the client border width and color. - * \param L The Lua VM state. - * \luastack - * \lvalue A client. - * \lparam A table with `width' key for the border width in pixel and `color' key - * for the border color. - */ -static int -luaA_client_border_set(lua_State *L) -{ - client_t **c = luaA_checkudata(L, 1, "client"); - int width = luaA_getopt_number(L, 2, "width", (*c)->border); - const char *colorstr = luaA_getopt_string(L, 2, "color", NULL); - xcolor_t color; - - client_setborder(*c, width); - - if(colorstr - && xcolor_new(globalconf.connection, (*c)->phys_screen, colorstr, &color)) - { - xcb_change_window_attributes(globalconf.connection, (*c)->win, XCB_CW_BORDER_PIXEL, - &color.pixel); - xcolor_wipe(&color); - } - - return 0; -} - /** Move the client to another screen. * \param L The Lua VM state. * \luastack @@ -1327,6 +1299,7 @@ luaA_client_newindex(lua_State *L) const char *buf = luaL_checklstring(L, 2, &len); bool b; double d; + xcolor_t color; switch(a_tokenize(buf, len)) { @@ -1360,10 +1333,22 @@ luaA_client_newindex(lua_State *L) client_setfloating(*c, luaA_checkboolean(L, 3)); break; case A_TK_HONORSIZEHINTS: - (*c)->honorsizehints = true; + (*c)->honorsizehints = luaA_checkboolean(L, 3); if(client_isvisible(*c, (*c)->screen)) globalconf.screens[(*c)->screen].need_arrange = true; break; + case A_TK_BORDER_WIDTH: + client_setborder(*c, luaL_checknumber(L, 3)); + break; + case A_TK_BORDER_COLOR: + if((buf = luaL_checkstring(L, 3)) + && xcolor_new(globalconf.connection, (*c)->phys_screen, buf, &color)) + { + xcolor_wipe(&(*c)->border_color); + (*c)->border_color = color; + xcb_change_window_attributes(globalconf.connection, (*c)->win, XCB_CW_BORDER_PIXEL, &color.pixel); + } + break; default: return 0; } @@ -1402,6 +1387,11 @@ luaA_client_index(lua_State *L) case A_TK_HONORSIZEHINTS: lua_pushboolean(L, (*c)->honorsizehints); break; + case A_TK_BORDER_WIDTH: + lua_pushnumber(L, (*c)->border); + break; + case A_TK_BORDER_COLOR: + lua_pushstring(L, (*c)->border_color.name); default: return 0; } @@ -1423,7 +1413,6 @@ const struct luaL_reg awesome_client_meta[] = { "titlebar_get", luaA_client_titlebar_get }, { "screen_set", luaA_client_screen_set }, { "screen_get", luaA_client_screen_get }, - { "border_set", luaA_client_border_set }, { "tag", luaA_client_tag }, { "istagged", luaA_client_istagged }, { "coords_get", luaA_client_coords_get }, diff --git a/structs.h b/structs.h index 3c3dfb0fd..41c1fef3c 100644 --- a/structs.h +++ b/structs.h @@ -250,6 +250,7 @@ struct client_t /** Respect resize hints */ bool honorsizehints; int border, oldborder; + xcolor_t border_color; /** True if the client does not want any border */ bool noborder; /** Has urgency hint */