2008-06-09 21:43:09 +02:00
|
|
|
/*
|
|
|
|
* tag.c - tag management
|
|
|
|
*
|
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "screen.h"
|
|
|
|
#include "tag.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "ewmh.h"
|
|
|
|
#include "widget.h"
|
|
|
|
|
|
|
|
#include "layouts/magnifier.h"
|
|
|
|
#include "layouts/tile.h"
|
|
|
|
#include "layouts/max.h"
|
|
|
|
#include "layouts/floating.h"
|
|
|
|
#include "layouts/fibonacci.h"
|
|
|
|
|
|
|
|
#include "layoutgen.h"
|
|
|
|
|
|
|
|
extern awesome_t globalconf;
|
|
|
|
|
2008-06-18 18:31:35 +02:00
|
|
|
DO_LUA_NEW(extern, tag_t, tag, "tag", tag_ref)
|
|
|
|
DO_LUA_GC(tag_t, tag, "tag", tag_unref)
|
|
|
|
DO_LUA_EQ(tag_t, tag, "tag")
|
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
/** View or unview a tag.
|
|
|
|
* \param tag the tag
|
|
|
|
* \param view set visible or not
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
tag_view(tag_t *tag, bool view)
|
|
|
|
{
|
|
|
|
tag->selected = view;
|
|
|
|
ewmh_update_net_current_desktop(screen_virttophys(tag->screen));
|
|
|
|
widget_invalidate_cache(tag->screen, WIDGET_CACHE_TAGS);
|
|
|
|
globalconf.screens[tag->screen].need_arrange = true;
|
|
|
|
}
|
|
|
|
|
2008-06-18 19:44:31 +02:00
|
|
|
/** Create a new tag. Parameters values are checked.
|
2008-07-01 14:44:19 +02:00
|
|
|
* \param name Tag name.
|
|
|
|
* \param len Tag name length.
|
|
|
|
* \param layout Layout to use.
|
|
|
|
* \param mwfact Master width factor.
|
|
|
|
* \param nmaster Number of master windows.
|
|
|
|
* \param ncol Number of columns for slaves windows.
|
|
|
|
* \return A new tag with all these parameters.
|
2008-06-09 21:43:09 +02:00
|
|
|
*/
|
|
|
|
tag_t *
|
2008-07-01 14:44:19 +02:00
|
|
|
tag_new(const char *name, ssize_t len, layout_t *layout, double mwfact, int nmaster, int ncol)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
|
|
|
tag_t *tag;
|
|
|
|
|
|
|
|
tag = p_new(tag_t, 1);
|
2008-07-01 14:44:19 +02:00
|
|
|
a_iso2utf8(&tag->name, name, len);
|
2008-06-09 21:43:09 +02:00
|
|
|
tag->layout = layout;
|
|
|
|
|
2008-07-01 13:59:40 +02:00
|
|
|
/* to avoid error */
|
2008-07-24 17:37:24 +02:00
|
|
|
tag->screen = SCREEN_UNDEF;
|
2008-07-01 13:59:40 +02:00
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
tag->mwfact = mwfact;
|
|
|
|
if(tag->mwfact <= 0 || tag->mwfact >= 1)
|
|
|
|
tag->mwfact = 0.5;
|
|
|
|
|
|
|
|
if((tag->nmaster = nmaster) < 0)
|
|
|
|
tag->nmaster = 1;
|
|
|
|
|
|
|
|
if((tag->ncol = ncol) < 1)
|
|
|
|
tag->ncol = 1;
|
|
|
|
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Append a tag to a screen.
|
|
|
|
* \param tag the tag to append
|
|
|
|
* \param screen the screen id
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
tag_append_to_screen(tag_t *tag, int screen)
|
|
|
|
{
|
|
|
|
int phys_screen = screen_virttophys(screen);
|
|
|
|
|
|
|
|
tag->screen = screen;
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_array_append(&globalconf.screens[screen].tags, tag_ref(&tag));
|
2008-06-09 21:43:09 +02:00
|
|
|
ewmh_update_net_numbers_of_desktop(phys_screen);
|
|
|
|
ewmh_update_net_desktop_names(phys_screen);
|
2008-06-17 22:12:30 +02:00
|
|
|
ewmh_update_workarea(phys_screen);
|
2008-06-09 21:43:09 +02:00
|
|
|
widget_invalidate_cache(screen, WIDGET_CACHE_TAGS);
|
|
|
|
}
|
|
|
|
|
2008-08-08 14:39:03 +02:00
|
|
|
/** Remove a tag from screen. Tag must be on a screen and have no clients.
|
|
|
|
* \param tag The tag to remove.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
tag_remove_from_screen(tag_t *tag)
|
|
|
|
{
|
|
|
|
int phys_screen = screen_virttophys(tag->screen);
|
|
|
|
tag_array_t *tags = &globalconf.screens[tag->screen].tags;
|
|
|
|
|
|
|
|
for(int i = 0; i < tags->len; i++)
|
|
|
|
if(tags->tab[i] == tag)
|
|
|
|
{
|
|
|
|
tag_array_take(tags, i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ewmh_update_net_numbers_of_desktop(phys_screen);
|
|
|
|
ewmh_update_net_desktop_names(phys_screen);
|
|
|
|
ewmh_update_workarea(phys_screen);
|
|
|
|
widget_invalidate_cache(tag->screen, WIDGET_CACHE_TAGS);
|
|
|
|
tag->screen = SCREEN_UNDEF;
|
|
|
|
tag_unref(&tag);
|
|
|
|
}
|
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
/** Tag a client with specified tag.
|
|
|
|
* \param c the client to tag
|
|
|
|
* \param t the tag to tag the client with
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
tag_client(client_t *c, tag_t *t)
|
|
|
|
{
|
|
|
|
/* don't tag twice */
|
|
|
|
if(is_client_tagged(c, t))
|
|
|
|
return;
|
|
|
|
|
2008-06-24 14:16:37 +02:00
|
|
|
client_array_append(&t->clients, c);
|
2008-06-09 21:43:09 +02:00
|
|
|
client_saveprops(c);
|
|
|
|
widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
|
|
|
|
globalconf.screens[c->screen].need_arrange = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Untag a client with specified tag.
|
|
|
|
* \param c the client to tag
|
|
|
|
* \param t the tag to tag the client with
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
untag_client(client_t *c, tag_t *t)
|
|
|
|
{
|
2008-06-24 14:16:37 +02:00
|
|
|
for(int i = 0; i < t->clients.len; i++)
|
|
|
|
if(t->clients.tab[i] == c)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
2008-06-24 14:16:37 +02:00
|
|
|
client_array_take(&t->clients, i);
|
2008-06-09 21:43:09 +02:00
|
|
|
client_saveprops(c);
|
|
|
|
widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
|
2008-06-24 14:16:37 +02:00
|
|
|
globalconf.screens[c->screen].need_arrange = true;
|
|
|
|
return;
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Check if a client is tagged with the specified tag.
|
|
|
|
* \param c the client
|
|
|
|
* \param t the tag
|
|
|
|
* \return true if the client is tagged with the tag, false otherwise.
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
is_client_tagged(client_t *c, tag_t *t)
|
|
|
|
{
|
2008-06-24 14:16:37 +02:00
|
|
|
for(int i = 0; i < t->clients.len; i++)
|
|
|
|
if (t->clients.tab[i] == c)
|
2008-06-09 21:43:09 +02:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Get the current tags for the specified screen.
|
|
|
|
* Returned pointer must be p_delete'd after.
|
|
|
|
* \param screen screen id
|
|
|
|
* \return a double pointer of tag list finished with a NULL element
|
|
|
|
*/
|
|
|
|
tag_t **
|
|
|
|
tags_get_current(int screen)
|
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_array_t *tags = &globalconf.screens[screen].tags;
|
|
|
|
tag_t **out = p_new(tag_t *, tags->len + 1);
|
|
|
|
int n = 0;
|
2008-06-09 21:43:09 +02:00
|
|
|
|
2008-06-23 17:37:19 +02:00
|
|
|
for(int i = 0; i < tags->len; i++)
|
|
|
|
if(tags->tab[i]->selected)
|
|
|
|
out[n++] = tags->tab[i];
|
2008-06-09 21:43:09 +02:00
|
|
|
|
2008-06-23 17:37:19 +02:00
|
|
|
return out;
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Set a tag to be the only one viewed.
|
|
|
|
* \param target the tag to see
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
tag_view_only(tag_t *target)
|
|
|
|
{
|
2008-07-01 13:59:40 +02:00
|
|
|
if (target)
|
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_array_t *tags = &globalconf.screens[target->screen].tags;
|
2008-06-09 21:43:09 +02:00
|
|
|
|
2008-06-23 17:37:19 +02:00
|
|
|
for(int i = 0; i < tags->len; i++)
|
|
|
|
tag_view(tags->tab[i], tags->tab[i] == target);
|
|
|
|
}
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** View only a tag, selected by its index.
|
|
|
|
* \param screen screen id
|
|
|
|
* \param dindex the index
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
tag_view_only_byindex(int screen, int dindex)
|
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_array_t *tags = &globalconf.screens[screen].tags;
|
2008-06-09 21:43:09 +02:00
|
|
|
|
2008-06-23 17:37:19 +02:00
|
|
|
if(dindex < 0 || dindex >= tags->len)
|
2008-06-09 21:43:09 +02:00
|
|
|
return;
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_view_only(tags->tab[dindex]);
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Convert a tag to a printable string.
|
2008-06-10 20:12:51 +02:00
|
|
|
* \param L The Lua VM state.
|
|
|
|
*
|
|
|
|
* \luastack
|
2008-06-11 02:46:30 +02:00
|
|
|
* \lvalue A tag.
|
2008-06-10 20:12:51 +02:00
|
|
|
* \lreturn A string.
|
2008-06-09 21:43:09 +02:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_tag_tostring(lua_State *L)
|
|
|
|
{
|
|
|
|
tag_t **p = luaA_checkudata(L, 1, "tag");
|
|
|
|
lua_pushfstring(L, "[tag udata(%p) name(%s)]", *p, (*p)->name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Get all tags from a screen.
|
2008-06-10 20:12:51 +02:00
|
|
|
* \param L The Lua VM state.
|
|
|
|
*
|
|
|
|
* \luastack
|
|
|
|
* \lparam A screen number.
|
2008-06-18 17:56:24 +02:00
|
|
|
* \lreturn A table with all tags from the screen specified, indexed by tag name.
|
2008-06-09 21:43:09 +02:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_tag_get(lua_State *L)
|
|
|
|
{
|
|
|
|
int screen = luaL_checknumber(L, 1) - 1;
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_array_t *tags = &globalconf.screens[screen].tags;
|
2008-06-09 21:43:09 +02:00
|
|
|
|
|
|
|
luaA_checkscreen(screen);
|
|
|
|
|
|
|
|
lua_newtable(L);
|
|
|
|
|
2008-06-23 17:37:19 +02:00
|
|
|
for(int i = 0; i < tags->len; i++)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
luaA_tag_userdata_new(L, tags->tab[i]);
|
|
|
|
lua_setfield(L, -2, tags->tab[i]->name);
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-06-18 17:56:24 +02:00
|
|
|
/** Get all tags from a screen.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
*
|
|
|
|
* \luastack
|
|
|
|
* \lparam A screen number.
|
|
|
|
* \lreturn A table with all tags from the screen specified, ordered and indexed
|
|
|
|
* by number.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_tag_geti(lua_State *L)
|
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
int screen = luaL_checknumber(L, 1) - 1;
|
|
|
|
tag_array_t *tags = &globalconf.screens[screen].tags;
|
2008-06-18 17:56:24 +02:00
|
|
|
|
|
|
|
luaA_checkscreen(screen);
|
|
|
|
|
|
|
|
lua_newtable(L);
|
|
|
|
|
2008-06-23 17:37:19 +02:00
|
|
|
for(int i = 0; i < tags->len; i++)
|
2008-06-18 17:56:24 +02:00
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
luaA_tag_userdata_new(L, tags->tab[i]);
|
|
|
|
lua_rawseti(L, -2, i + 1);
|
2008-06-18 17:56:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
/** Create a new tag.
|
2008-06-10 20:12:51 +02:00
|
|
|
* \param L The Lua VM state.
|
|
|
|
*
|
|
|
|
* \luastack
|
|
|
|
* \lparam A table with at least a name attribute.
|
2008-06-18 20:00:24 +02:00
|
|
|
* Optional attributes are: mwfact, ncol, nmaster and layout.
|
2008-06-10 20:12:51 +02:00
|
|
|
* \lreturn A new tag object.
|
2008-06-09 21:43:09 +02:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_tag_new(lua_State *L)
|
|
|
|
{
|
2008-07-01 14:44:19 +02:00
|
|
|
size_t len;
|
2008-06-09 21:43:09 +02:00
|
|
|
tag_t *tag;
|
|
|
|
int ncol, nmaster;
|
|
|
|
const char *name, *lay;
|
|
|
|
double mwfact;
|
|
|
|
layout_t *layout;
|
|
|
|
|
2008-06-30 14:01:55 +02:00
|
|
|
luaA_checktable(L, 2);
|
2008-06-09 21:43:09 +02:00
|
|
|
|
2008-06-30 14:01:55 +02:00
|
|
|
if(!(name = luaA_getopt_string(L, 2, "name", NULL)))
|
2008-06-30 13:50:49 +02:00
|
|
|
luaL_error(L, "object tag must have a name");
|
|
|
|
|
2008-06-30 14:01:55 +02:00
|
|
|
mwfact = luaA_getopt_number(L, 2, "mwfact", 0.5);
|
|
|
|
ncol = luaA_getopt_number(L, 2, "ncol", 1);
|
|
|
|
nmaster = luaA_getopt_number(L, 2, "nmaster", 1);
|
2008-07-01 14:44:19 +02:00
|
|
|
lay = luaA_getopt_lstring(L, 2, "layout", "tile", &len);
|
2008-06-09 21:43:09 +02:00
|
|
|
|
|
|
|
layout = name_func_lookup(lay, LayoutList);
|
|
|
|
|
2008-07-01 14:44:19 +02:00
|
|
|
tag = tag_new(name, len,
|
2008-06-09 21:43:09 +02:00
|
|
|
layout,
|
|
|
|
mwfact, nmaster, ncol);
|
|
|
|
|
2008-06-18 18:31:35 +02:00
|
|
|
return luaA_tag_userdata_new(L, tag);
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
|
|
|
|
2008-07-28 16:03:38 +02:00
|
|
|
/** Tag object.
|
2008-07-01 11:38:40 +02:00
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
2008-07-10 09:22:23 +02:00
|
|
|
* \luastack
|
|
|
|
* \lfield name Tag name.
|
2008-07-24 17:06:52 +02:00
|
|
|
* \lfield screen Screen number of the tag.
|
2008-07-10 09:22:23 +02:00
|
|
|
* \lfield layout Tag layout.
|
|
|
|
* \lfield selected True if the client is selected to be viewed.
|
|
|
|
* \lfield mwfact Master width factor.
|
|
|
|
* \lfield nmaster Number of master windows.
|
|
|
|
* \lfield ncol Number of column for slave windows.
|
2008-08-07 16:37:58 +02:00
|
|
|
* \lfield clients The clients that has this tag set.
|
2008-07-01 11:38:40 +02:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_tag_index(lua_State *L)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
tag_t **tag = luaA_checkudata(L, 1, "tag");
|
|
|
|
const char *attr;
|
2008-08-07 16:37:58 +02:00
|
|
|
client_array_t *clients;
|
|
|
|
int i;
|
2008-07-01 11:38:40 +02:00
|
|
|
|
2008-07-01 19:25:58 +02:00
|
|
|
if(luaA_usemetatable(L, 1, 2))
|
2008-07-01 11:38:40 +02:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
attr = luaL_checklstring(L, 2, &len);
|
|
|
|
|
|
|
|
switch(a_tokenize(attr, len))
|
|
|
|
{
|
2008-07-01 14:31:47 +02:00
|
|
|
case A_TK_NAME:
|
|
|
|
lua_pushstring(L, (*tag)->name);
|
|
|
|
break;
|
2008-07-24 17:06:52 +02:00
|
|
|
case A_TK_SCREEN:
|
2008-07-24 17:37:24 +02:00
|
|
|
if((*tag)->screen == SCREEN_UNDEF)
|
2008-07-24 17:06:52 +02:00
|
|
|
return 0;
|
|
|
|
lua_pushnumber(L, (*tag)->screen + 1);
|
|
|
|
break;
|
2008-07-01 15:06:20 +02:00
|
|
|
case A_TK_LAYOUT:
|
|
|
|
lua_pushstring(L, name_func_rlookup((*tag)->layout, LayoutList));
|
|
|
|
break;
|
2008-07-01 11:38:40 +02:00
|
|
|
case A_TK_SELECTED:
|
|
|
|
lua_pushboolean(L, (*tag)->selected);
|
|
|
|
break;
|
2008-07-01 13:59:40 +02:00
|
|
|
case A_TK_MWFACT:
|
|
|
|
lua_pushnumber(L, (*tag)->mwfact);
|
|
|
|
break;
|
2008-07-01 14:17:07 +02:00
|
|
|
case A_TK_NMASTER:
|
|
|
|
lua_pushnumber(L, (*tag)->nmaster);
|
|
|
|
break;
|
2008-07-01 14:23:06 +02:00
|
|
|
case A_TK_NCOL:
|
|
|
|
lua_pushnumber(L, (*tag)->ncol);
|
|
|
|
break;
|
2008-08-07 16:37:58 +02:00
|
|
|
case A_TK_CLIENTS:
|
|
|
|
clients = &(*tag)->clients;
|
|
|
|
luaA_otable_new(L);
|
|
|
|
for(i = 0; i < clients->len; i++)
|
|
|
|
{
|
|
|
|
luaA_client_userdata_new(L, clients->tab[i]);
|
|
|
|
luaA_client_userdata_new(L, clients->tab[i]);
|
|
|
|
lua_rawset(L, -3);
|
|
|
|
}
|
|
|
|
break;
|
2008-07-01 11:38:40 +02:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-08-08 14:39:03 +02:00
|
|
|
/** Get a screen by its name.
|
|
|
|
* \param screen The screen to look into.
|
|
|
|
* \param name The name.
|
|
|
|
*/
|
|
|
|
static tag_t *
|
|
|
|
tag_getbyname(int screen, const char *name)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
tag_array_t *tags = &globalconf.screens[screen].tags;
|
|
|
|
|
|
|
|
for(i = 0; i < tags->len; i++)
|
|
|
|
if(!a_strcmp(name, tags->tab[i]->name))
|
|
|
|
return tags->tab[i];
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-07-01 11:38:40 +02:00
|
|
|
/** Tag newindex.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_tag_newindex(lua_State *L)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
tag_t **tag = luaA_checkudata(L, 1, "tag");
|
2008-07-01 14:31:47 +02:00
|
|
|
const char *buf, *attr = luaL_checklstring(L, 2, &len);
|
2008-07-01 13:59:40 +02:00
|
|
|
double d;
|
2008-08-08 14:39:03 +02:00
|
|
|
int i, screen;
|
2008-07-01 15:06:20 +02:00
|
|
|
layout_t *l;
|
2008-08-07 16:37:58 +02:00
|
|
|
client_t **c;
|
2008-07-01 11:38:40 +02:00
|
|
|
|
|
|
|
switch(a_tokenize(attr, len))
|
|
|
|
{
|
2008-07-24 16:37:09 +02:00
|
|
|
case A_TK_NAME:
|
|
|
|
buf = luaL_checklstring(L, 3, &len);
|
2008-07-24 17:37:24 +02:00
|
|
|
if((*tag)->screen != SCREEN_UNDEF)
|
2008-07-24 16:37:09 +02:00
|
|
|
{
|
2008-08-08 14:39:03 +02:00
|
|
|
if(tag_getbyname((*tag)->screen, (*tag)->name) != *tag)
|
|
|
|
luaL_error(L, "a tag with the name `%s' is already on screen %d",
|
|
|
|
buf, (*tag)->screen);
|
2008-08-08 14:34:50 +02:00
|
|
|
widget_invalidate_cache((*tag)->screen, WIDGET_CACHE_TAGS);
|
2008-07-24 16:37:09 +02:00
|
|
|
}
|
|
|
|
p_delete(&(*tag)->name);
|
|
|
|
a_iso2utf8(&(*tag)->name, buf, len);
|
|
|
|
break;
|
2008-07-24 17:06:52 +02:00
|
|
|
case A_TK_SCREEN:
|
2008-08-08 14:39:03 +02:00
|
|
|
if(!lua_isnil(L, 3))
|
2008-07-24 17:06:52 +02:00
|
|
|
{
|
2008-08-08 14:39:03 +02:00
|
|
|
screen = luaL_checknumber(L, 3) - 1;
|
2008-07-24 17:06:52 +02:00
|
|
|
luaA_checkscreen(screen);
|
2008-08-08 14:39:03 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen = SCREEN_UNDEF;
|
2008-07-24 17:06:52 +02:00
|
|
|
|
2008-08-08 14:39:03 +02:00
|
|
|
if((*tag)->screen != SCREEN_UNDEF)
|
|
|
|
{
|
|
|
|
if((*tag)->clients.len)
|
|
|
|
luaL_error(L, "unable to remove tag %s from screen %d, it still has clients",
|
|
|
|
(*tag)->name, (*tag)->screen);
|
|
|
|
else
|
|
|
|
tag_remove_from_screen(*tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(screen != SCREEN_UNDEF)
|
|
|
|
{
|
|
|
|
if(tag_getbyname(screen, (*tag)->name))
|
|
|
|
luaL_error(L, "a tag with the name `%s' is already on screen %d",
|
|
|
|
(*tag)->name, screen);
|
2008-07-24 17:06:52 +02:00
|
|
|
|
|
|
|
tag_append_to_screen(*tag, screen);
|
|
|
|
}
|
2008-08-08 14:39:03 +02:00
|
|
|
break;
|
2008-07-01 15:06:20 +02:00
|
|
|
case A_TK_LAYOUT:
|
|
|
|
buf = luaL_checkstring(L, 3);
|
|
|
|
l = name_func_lookup(buf, LayoutList);
|
|
|
|
if(l)
|
|
|
|
(*tag)->layout = l;
|
|
|
|
else
|
|
|
|
luaL_error(L, "unknown layout: %s", buf);
|
|
|
|
break;
|
2008-07-01 11:38:40 +02:00
|
|
|
case A_TK_SELECTED:
|
|
|
|
tag_view(*tag, luaA_checkboolean(L, 3));
|
2008-07-01 13:59:40 +02:00
|
|
|
return 0;
|
|
|
|
case A_TK_MWFACT:
|
|
|
|
d = luaL_checknumber(L, 3);
|
|
|
|
if(d > 0 && d < 1)
|
|
|
|
(*tag)->mwfact = d;
|
|
|
|
else
|
|
|
|
luaL_error(L, "bad value, must be between 0 and 1");
|
2008-07-01 11:38:40 +02:00
|
|
|
break;
|
2008-07-01 14:17:07 +02:00
|
|
|
case A_TK_NMASTER:
|
|
|
|
i = luaL_checknumber(L, 3);
|
|
|
|
if(i >= 0)
|
|
|
|
(*tag)->nmaster = i;
|
|
|
|
else
|
|
|
|
luaL_error(L, "bad value, must be greater than 0");
|
|
|
|
break;
|
2008-07-01 14:23:06 +02:00
|
|
|
case A_TK_NCOL:
|
|
|
|
i = luaL_checknumber(L, 3);
|
|
|
|
if(i >= 1)
|
|
|
|
(*tag)->ncol = i;
|
|
|
|
else
|
|
|
|
luaL_error(L, "bad value, must be greater than 1");
|
|
|
|
break;
|
2008-08-07 16:37:58 +02:00
|
|
|
case A_TK_CLIENTS:
|
|
|
|
luaA_checktable(L, 3);
|
|
|
|
for(i = 0; i < (*tag)->clients.len; i++)
|
|
|
|
untag_client((*tag)->clients.tab[i], *tag);
|
|
|
|
lua_pushnil(L);
|
|
|
|
while(lua_next(L, 3))
|
|
|
|
{
|
|
|
|
c = luaA_checkudata(L, -1, "client");
|
|
|
|
tag_client(*c, *tag);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
break;
|
2008-07-01 11:38:40 +02:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-07-24 17:37:24 +02:00
|
|
|
if((*tag)->screen != SCREEN_UNDEF)
|
2008-07-01 13:59:40 +02:00
|
|
|
globalconf.screens[(*tag)->screen].need_arrange = true;
|
|
|
|
|
2008-07-01 11:38:40 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
const struct luaL_reg awesome_tag_methods[] =
|
|
|
|
{
|
2008-06-30 14:01:55 +02:00
|
|
|
{ "__call", luaA_tag_new },
|
2008-06-18 17:56:24 +02:00
|
|
|
{ "get", luaA_tag_get },
|
|
|
|
{ "geti", luaA_tag_geti },
|
2008-06-09 21:43:09 +02:00
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
const struct luaL_reg awesome_tag_meta[] =
|
|
|
|
{
|
2008-07-01 11:38:40 +02:00
|
|
|
{ "__index", luaA_tag_index },
|
|
|
|
{ "__newindex", luaA_tag_newindex },
|
2008-06-09 21:43:09 +02:00
|
|
|
{ "__eq", luaA_tag_eq },
|
|
|
|
{ "__gc", luaA_tag_gc },
|
|
|
|
{ "__tostring", luaA_tag_tostring },
|
|
|
|
{ NULL, NULL },
|
|
|
|
};
|
2008-07-10 09:22:23 +02:00
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|