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"
|
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
static lua_class_t tag_class;
|
|
|
|
LUA_OBJECT_FUNCS(tag_class, tag_t, tag, "tag")
|
|
|
|
|
2009-04-11 11:45:55 +02:00
|
|
|
void
|
|
|
|
tag_unref_simplified(tag_t **tag)
|
|
|
|
{
|
2009-06-29 11:02:13 +02:00
|
|
|
luaA_object_unref(globalconf.L, *tag);
|
2009-04-11 11:45:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Garbage collect a tag.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return 0.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_tag_gc(lua_State *L)
|
|
|
|
{
|
|
|
|
tag_t *tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
client_array_wipe(&tag->clients);
|
|
|
|
p_delete(&tag->name);
|
2009-06-16 16:24:58 +02:00
|
|
|
return luaA_object_gc(L);
|
2009-04-11 11:45:55 +02:00
|
|
|
}
|
2008-06-18 18:31:35 +02:00
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
/** View or unview a tag.
|
2009-07-01 16:01:44 +02:00
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \param udx The index of the tag on the stack.
|
|
|
|
* \param view Set visible or not.
|
2008-06-09 21:43:09 +02:00
|
|
|
*/
|
|
|
|
static void
|
2009-07-01 16:01:44 +02:00
|
|
|
tag_view(lua_State *L, int udx, bool view)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
2009-07-01 16:01:44 +02:00
|
|
|
tag_t *tag = luaL_checkudata(L, udx, "tag");
|
2009-05-10 16:51:20 +02:00
|
|
|
if(tag->selected != view)
|
|
|
|
{
|
|
|
|
tag->selected = view;
|
2009-05-02 10:43:55 +02:00
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
luaA_object_emit_signal(L, udx, "property::selected", 0);
|
|
|
|
|
|
|
|
if(tag->screen)
|
2009-05-10 16:51:20 +02:00
|
|
|
{
|
2009-07-01 16:01:44 +02:00
|
|
|
int screen_index = screen_array_indexof(&globalconf.screens, tag->screen);
|
|
|
|
|
|
|
|
tag->screen->need_reban = true;
|
|
|
|
|
|
|
|
ewmh_update_net_current_desktop(screen_virttophys(screen_index));
|
|
|
|
|
|
|
|
if(globalconf.hooks.tags != LUA_REFNIL)
|
|
|
|
{
|
|
|
|
lua_pushnumber(globalconf.L, screen_index + 1);
|
|
|
|
luaA_object_push(globalconf.L, tag);
|
|
|
|
if(view)
|
|
|
|
lua_pushliteral(globalconf.L, "select");
|
|
|
|
else
|
|
|
|
lua_pushliteral(globalconf.L, "unselect");
|
|
|
|
luaA_dofunction_from_registry(globalconf.L, globalconf.hooks.tags, 3, 0);
|
|
|
|
}
|
2009-05-10 16:51:20 +02:00
|
|
|
}
|
2009-05-02 10:43:55 +02:00
|
|
|
}
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
/** Append a tag to a screen.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \param udx The tag index on the stack.
|
|
|
|
* \param s The screen.
|
2008-06-09 21:43:09 +02:00
|
|
|
*/
|
|
|
|
void
|
2009-07-01 16:01:44 +02:00
|
|
|
tag_append_to_screen(lua_State *L, int udx, screen_t *s)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
2009-07-01 16:01:44 +02:00
|
|
|
tag_t *tag = luaL_checkudata(globalconf.L, udx, "tag");
|
2009-04-26 15:13:41 +02:00
|
|
|
|
|
|
|
/* can't attach a tag twice */
|
|
|
|
if(tag->screen)
|
|
|
|
return;
|
|
|
|
|
2009-04-18 17:51:31 +02:00
|
|
|
int screen_index = screen_array_indexof(&globalconf.screens, s);
|
|
|
|
int phys_screen = screen_virttophys(screen_index);
|
2008-06-09 21:43:09 +02:00
|
|
|
|
2009-04-17 16:14:09 +02:00
|
|
|
tag->screen = s;
|
2009-07-01 16:01:44 +02:00
|
|
|
tag_array_append(&s->tags, luaA_object_ref(globalconf.L, udx));
|
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-11-10 17:40:37 +01:00
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
luaA_object_push(globalconf.L, tag);
|
|
|
|
luaA_object_emit_signal(L, -1, "property::screen", 0);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
|
2008-10-19 19:14:55 +02:00
|
|
|
/* call hook */
|
2008-11-20 17:48:23 +01:00
|
|
|
if(globalconf.hooks.tags != LUA_REFNIL)
|
|
|
|
{
|
2009-04-18 17:51:31 +02:00
|
|
|
lua_pushnumber(globalconf.L, screen_index + 1);
|
2009-06-29 11:02:13 +02:00
|
|
|
luaA_object_push(globalconf.L, tag);
|
2008-11-27 14:22:26 +01:00
|
|
|
lua_pushliteral(globalconf.L, "add");
|
2009-05-19 17:37:35 +02:00
|
|
|
luaA_dofunction_from_registry(globalconf.L, globalconf.hooks.tags, 3, 0);
|
2008-11-20 17:48:23 +01:00
|
|
|
}
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2009-04-18 17:51:31 +02:00
|
|
|
int screen_index = screen_array_indexof(&globalconf.screens, tag->screen);
|
|
|
|
int phys_screen = screen_virttophys(screen_index);
|
2009-04-17 16:14:09 +02:00
|
|
|
tag_array_t *tags = &tag->screen->tags;
|
2008-08-08 14:39:03 +02:00
|
|
|
|
|
|
|
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);
|
2008-11-10 17:40:37 +01:00
|
|
|
|
2008-10-19 19:14:55 +02:00
|
|
|
/* call hook */
|
2008-11-20 17:48:23 +01:00
|
|
|
if(globalconf.hooks.tags != LUA_REFNIL)
|
|
|
|
{
|
2009-04-18 17:51:31 +02:00
|
|
|
lua_pushnumber(globalconf.L, screen_index + 1);
|
2009-06-29 11:02:13 +02:00
|
|
|
luaA_object_push(globalconf.L, tag);
|
2008-11-27 14:22:26 +01:00
|
|
|
lua_pushliteral(globalconf.L, "remove");
|
2009-05-19 17:37:35 +02:00
|
|
|
luaA_dofunction_from_registry(globalconf.L, globalconf.hooks.tags, 3, 0);
|
2008-11-20 17:48:23 +01:00
|
|
|
}
|
2008-11-27 14:22:26 +01:00
|
|
|
|
2009-04-17 17:21:59 +02:00
|
|
|
tag->screen = NULL;
|
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
luaA_object_push(globalconf.L, tag);
|
|
|
|
luaA_object_emit_signal(globalconf.L, -1, "property::screen", 0);
|
|
|
|
lua_pop(globalconf.L, 1);
|
|
|
|
|
2009-06-29 11:02:13 +02:00
|
|
|
luaA_object_unref(globalconf.L, tag);
|
2008-08-08 14:39:03 +02:00
|
|
|
}
|
|
|
|
|
2009-04-11 11:45:55 +02:00
|
|
|
/** Tag a client with the tag on top of the stack.
|
2008-06-09 21:43:09 +02:00
|
|
|
* \param c the client to tag
|
|
|
|
*/
|
|
|
|
void
|
2009-04-11 11:45:55 +02:00
|
|
|
tag_client(client_t *c)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
2009-06-29 11:02:13 +02:00
|
|
|
tag_t *t = luaA_object_ref(globalconf.L, -1);
|
2009-04-11 11:45:55 +02:00
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
/* don't tag twice */
|
|
|
|
if(is_client_tagged(c, t))
|
2009-06-10 14:24:22 +02:00
|
|
|
{
|
2009-06-29 11:02:13 +02:00
|
|
|
luaA_object_unref(globalconf.L, t);
|
2008-06-09 21:43:09 +02:00
|
|
|
return;
|
2009-06-10 14:24:22 +02:00
|
|
|
}
|
2008-06-09 21:43:09 +02:00
|
|
|
|
2008-06-24 14:16:37 +02:00
|
|
|
client_array_append(&t->clients, c);
|
2009-01-02 11:55:46 +01:00
|
|
|
ewmh_client_update_desktop(c);
|
2009-05-10 16:51:20 +02:00
|
|
|
client_need_reban(c);
|
|
|
|
|
2008-10-19 19:14:55 +02:00
|
|
|
/* call hook */
|
2008-11-20 17:48:23 +01:00
|
|
|
if(globalconf.hooks.tagged != LUA_REFNIL)
|
|
|
|
{
|
2009-06-29 11:02:13 +02:00
|
|
|
luaA_object_push(globalconf.L, c);
|
|
|
|
luaA_object_push(globalconf.L, t);
|
2009-05-19 17:37:35 +02:00
|
|
|
luaA_dofunction_from_registry(globalconf.L, globalconf.hooks.tagged, 2, 0);
|
2008-11-20 17:48:23 +01:00
|
|
|
}
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** 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
|
|
|
{
|
2009-05-10 16:51:20 +02:00
|
|
|
client_need_reban(c);
|
2008-06-24 14:16:37 +02:00
|
|
|
client_array_take(&t->clients, i);
|
2009-05-10 16:51:20 +02:00
|
|
|
client_need_reban(c);
|
2009-01-02 11:55:46 +01:00
|
|
|
ewmh_client_update_desktop(c);
|
2008-10-19 19:14:55 +02:00
|
|
|
/* call hook */
|
2008-11-20 17:48:23 +01:00
|
|
|
if(globalconf.hooks.tagged != LUA_REFNIL)
|
|
|
|
{
|
2009-06-29 11:02:13 +02:00
|
|
|
luaA_object_push(globalconf.L, c);
|
|
|
|
luaA_object_push(globalconf.L, t);
|
2009-05-19 17:37:35 +02:00
|
|
|
luaA_dofunction_from_registry(globalconf.L, globalconf.hooks.tagged, 2, 0);
|
2008-11-20 17:48:23 +01:00
|
|
|
}
|
2009-06-29 11:02:13 +02:00
|
|
|
luaA_object_unref(globalconf.L, t);
|
2008-06-24 14:16:37 +02:00
|
|
|
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++)
|
2009-03-29 20:26:39 +02:00
|
|
|
if(t->clients.tab[i] == c)
|
2008-06-09 21:43:09 +02:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-07-30 11:29:41 +02:00
|
|
|
/** Get the index of the first selected tag.
|
2009-04-17 16:14:09 +02:00
|
|
|
* \param screen Screen.
|
2009-07-30 11:29:41 +02:00
|
|
|
* \return Its index.
|
2008-06-09 21:43:09 +02:00
|
|
|
*/
|
2009-07-30 11:29:41 +02:00
|
|
|
int
|
|
|
|
tags_get_first_selected_index(screen_t *screen)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
2009-04-17 16:14:09 +02:00
|
|
|
foreach(tag, screen->tags)
|
|
|
|
if((*tag)->selected)
|
2009-07-30 11:29:41 +02:00
|
|
|
return tag_array_indexof(&screen->tags, tag);
|
|
|
|
return 0;
|
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)
|
|
|
|
{
|
2009-03-29 20:26:39 +02:00
|
|
|
if(target)
|
2009-04-17 16:14:09 +02:00
|
|
|
foreach(tag, target->screen->tags)
|
2009-07-01 16:01:44 +02:00
|
|
|
{
|
|
|
|
luaA_object_push(globalconf.L, *tag);
|
|
|
|
tag_view(globalconf.L, -1, *tag == target);
|
|
|
|
lua_pop(globalconf.L, 1);
|
|
|
|
}
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** View only a tag, selected by its index.
|
2009-04-17 16:14:09 +02:00
|
|
|
* \param screen Screen.
|
|
|
|
* \param dindex The index.
|
2008-06-09 21:43:09 +02:00
|
|
|
*/
|
|
|
|
void
|
2009-04-17 16:14:09 +02:00
|
|
|
tag_view_only_byindex(screen_t *screen, int dindex)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
2009-04-17 16:14:09 +02:00
|
|
|
tag_array_t *tags = &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
|
|
|
}
|
|
|
|
|
|
|
|
/** Create a new tag.
|
2008-06-10 20:12:51 +02:00
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \luastack
|
2008-11-25 17:01:06 +01:00
|
|
|
* \lparam A name.
|
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)
|
|
|
|
{
|
2009-07-01 16:01:44 +02:00
|
|
|
if(lua_isstring(L, 2))
|
|
|
|
{
|
|
|
|
/* compat code */
|
|
|
|
luaA_deprecate(L, "new syntax");
|
2009-04-11 11:45:55 +02:00
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
size_t len;
|
|
|
|
const char *name = luaL_checklstring(L, 2, &len);
|
|
|
|
tag_t *tag = tag_new(globalconf.L);
|
2009-04-11 11:45:55 +02:00
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
a_iso2utf8(name, len, &tag->name, NULL);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return luaA_class_new(L, &tag_class);
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
|
|
|
|
2008-08-13 17:55:10 +02:00
|
|
|
/** Get or set the clients attached to this tag.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
* \luastack
|
2008-08-25 18:04:42 +02:00
|
|
|
* \lparam None or a table of clients to set.
|
|
|
|
* \lreturn A table with the clients attached to this tags.
|
2008-08-13 17:55:10 +02:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_tag_clients(lua_State *L)
|
|
|
|
{
|
2009-04-11 11:45:55 +02:00
|
|
|
tag_t *tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
client_array_t *clients = &tag->clients;
|
2008-08-13 17:55:10 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if(lua_gettop(L) == 2)
|
|
|
|
{
|
|
|
|
luaA_checktable(L, 2);
|
2009-04-11 11:45:55 +02:00
|
|
|
foreach(c, tag->clients)
|
|
|
|
untag_client(*c, tag);
|
2008-08-13 17:55:10 +02:00
|
|
|
lua_pushnil(L);
|
|
|
|
while(lua_next(L, 2))
|
|
|
|
{
|
2009-04-10 15:23:55 +02:00
|
|
|
client_t *c = luaA_client_checkudata(L, -1);
|
2009-04-11 11:45:55 +02:00
|
|
|
/* push tag on top of the stack */
|
|
|
|
lua_pushvalue(L, 1);
|
|
|
|
tag_client(c);
|
2008-08-13 17:55:10 +02:00
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
}
|
2008-08-17 07:52:04 +02:00
|
|
|
|
2009-03-14 13:33:52 +01:00
|
|
|
lua_createtable(L, clients->len, 0);
|
2008-08-17 07:52:04 +02:00
|
|
|
for(i = 0; i < clients->len; i++)
|
2008-08-13 17:55:10 +02:00
|
|
|
{
|
2009-06-29 11:02:13 +02:00
|
|
|
luaA_object_push(L, clients->tab[i]);
|
2008-08-17 07:52:04 +02:00
|
|
|
lua_rawseti(L, -2, i + 1);
|
2008-08-13 17:55:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
LUA_OBJECT_EXPORT_PROPERTY(tag, tag_t, name, lua_pushstring)
|
|
|
|
LUA_OBJECT_EXPORT_PROPERTY(tag, tag_t, selected, lua_pushboolean)
|
|
|
|
|
|
|
|
/** Set the tag name.
|
2008-07-01 11:38:40 +02:00
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
*/
|
|
|
|
static int
|
2009-07-01 16:01:44 +02:00
|
|
|
luaA_tag_set_name(lua_State *L, tag_t *tag)
|
2008-07-01 11:38:40 +02:00
|
|
|
{
|
|
|
|
size_t len;
|
2009-07-01 16:01:44 +02:00
|
|
|
const char *buf = luaL_checklstring(L, -1, &len);
|
|
|
|
p_delete(&tag->name);
|
|
|
|
a_iso2utf8(buf, len, &tag->name, NULL);
|
|
|
|
luaA_object_emit_signal(L, -3, "property::name", 0);
|
|
|
|
return 0;
|
2008-07-01 11:38:40 +02:00
|
|
|
}
|
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
/** Set the tag selection status.
|
2008-07-01 11:38:40 +02:00
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
*/
|
|
|
|
static int
|
2009-07-01 16:01:44 +02:00
|
|
|
luaA_tag_set_selected(lua_State *L, tag_t *tag)
|
2008-07-01 11:38:40 +02:00
|
|
|
{
|
2009-07-01 16:01:44 +02:00
|
|
|
tag_view(L, -3, luaA_checkboolean(L, -1));
|
|
|
|
return 0;
|
|
|
|
}
|
2008-07-01 11:38:40 +02:00
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
/** Set the tag screen.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_tag_set_screen(lua_State *L, tag_t *tag)
|
|
|
|
{
|
|
|
|
int screen;
|
|
|
|
if(lua_isnil(L, -1))
|
|
|
|
screen = -1;
|
|
|
|
else
|
2008-07-01 11:38:40 +02:00
|
|
|
{
|
2009-07-01 16:01:44 +02:00
|
|
|
screen = luaL_checknumber(L, -1) - 1;
|
|
|
|
luaA_checkscreen(screen);
|
|
|
|
}
|
2008-11-25 17:01:06 +01:00
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
if(tag->screen)
|
|
|
|
tag_remove_from_screen(tag);
|
2008-07-24 17:06:52 +02:00
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
if(screen != -1)
|
|
|
|
tag_append_to_screen(L, -3, &globalconf.screens.tab[screen]);
|
2008-07-01 11:38:40 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-01 16:01:44 +02:00
|
|
|
/** Get the tag screen.
|
|
|
|
* \param L The Lua VM state.
|
|
|
|
* \return The number of elements pushed on stack.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
luaA_tag_get_screen(lua_State *L, tag_t *tag)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
2009-07-01 16:01:44 +02:00
|
|
|
if(!tag->screen)
|
|
|
|
return 0;
|
|
|
|
lua_pushnumber(L, screen_array_indexof(&globalconf.screens, tag->screen) + 1);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tag_class_setup(lua_State *L)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
2009-07-01 16:01:44 +02:00
|
|
|
static const struct luaL_reg tag_methods[] =
|
|
|
|
{
|
|
|
|
LUA_CLASS_METHODS(tag)
|
|
|
|
{ "__call", luaA_tag_new },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct luaL_reg tag_meta[] =
|
|
|
|
{
|
|
|
|
LUA_OBJECT_META(tag)
|
|
|
|
LUA_CLASS_META
|
|
|
|
{ "clients", luaA_tag_clients },
|
|
|
|
{ "__gc", luaA_tag_gc },
|
|
|
|
{ NULL, NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
luaA_class_setup(L, &tag_class, "tag", (lua_class_allocator_t) tag_new,
|
|
|
|
tag_methods, tag_meta);
|
|
|
|
luaA_class_add_property(&tag_class, A_TK_NAME,
|
|
|
|
(lua_class_propfunc_t) luaA_tag_set_name,
|
|
|
|
(lua_class_propfunc_t) luaA_tag_get_name,
|
|
|
|
(lua_class_propfunc_t) luaA_tag_set_name);
|
|
|
|
luaA_class_add_property(&tag_class, A_TK_SCREEN,
|
|
|
|
(lua_class_propfunc_t) NULL,
|
|
|
|
(lua_class_propfunc_t) luaA_tag_get_screen,
|
|
|
|
(lua_class_propfunc_t) luaA_tag_set_screen);
|
|
|
|
luaA_class_add_property(&tag_class, A_TK_SELECTED,
|
|
|
|
(lua_class_propfunc_t) luaA_tag_set_selected,
|
|
|
|
(lua_class_propfunc_t) luaA_tag_get_selected,
|
|
|
|
(lua_class_propfunc_t) luaA_tag_set_selected);
|
|
|
|
}
|
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
|