client: export skip_taskbar

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-10-20 17:27:18 +02:00
parent 7984b22f7a
commit 5c8a4dee4a
2 changed files with 6 additions and 2 deletions

View File

@ -1325,6 +1325,7 @@ luaA_client_newindex(lua_State *L)
* \return The number of elements pushed on stack. * \return The number of elements pushed on stack.
* \luastack * \luastack
* \lfield name The client title. * \lfield name The client title.
* \lfield skip_taskbar True if the client does not want to be in taskbar.
* \lfield type The window type (desktop, normal, dock, ). * \lfield type The window type (desktop, normal, dock, ).
* \lfield class The client class. * \lfield class The client class.
* \lfield instance The client instance. * \lfield instance The client instance.
@ -1333,8 +1334,7 @@ luaA_client_newindex(lua_State *L)
* \lfield machine The machine client is running on. * \lfield machine The machine client is running on.
* \lfield icon_name The client name when iconified. * \lfield icon_name The client name when iconified.
* \lfield screen Client screen number. * \lfield screen Client screen number.
* \lfield hide Define if the client must be hidden, i.e. never mapped, not * \lfield hide Define if the client must be hidden, i.e. never mapped,
* visible in taskbar.
* invisible in taskbar. * invisible in taskbar.
* \lfield minimize Define it the client must be iconify, i.e. only visible in * \lfield minimize Define it the client must be iconify, i.e. only visible in
* taskbar. * taskbar.
@ -1375,6 +1375,9 @@ luaA_client_index(lua_State *L)
case A_TK_NAME: case A_TK_NAME:
lua_pushstring(L, (*c)->name); lua_pushstring(L, (*c)->name);
break; break;
case A_TK_SKIP_TASKBAR:
lua_pushboolean(L, (*c)->skiptb);
break;
case A_TK_TYPE: case A_TK_TYPE:
switch((*c)->type) switch((*c)->type)
{ {

View File

@ -72,6 +72,7 @@ shadow_offset
Shift Shift
show_icons show_icons
sizehints sizehints
skip_taskbar
south south
sticky sticky
text text