2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2007-09-12 14:29:51 +02:00
|
|
|
* tag.c - tag management
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
2008-03-15 09:10:32 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2007-09-12 14:29:51 +02:00
|
|
|
*/
|
2007-09-05 20:15:00 +02:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2007-11-12 18:21:03 +01:00
|
|
|
#include "screen.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
#include "tag.h"
|
2008-01-01 17:25:48 +01:00
|
|
|
#include "client.h"
|
2007-12-27 18:42:20 +01:00
|
|
|
#include "ewmh.h"
|
2008-01-09 09:59:45 +01:00
|
|
|
#include "widget.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
#include "layouts/tile.h"
|
|
|
|
#include "layouts/max.h"
|
|
|
|
#include "layouts/floating.h"
|
|
|
|
#include "layouts/fibonacci.h"
|
|
|
|
|
|
|
|
#include "layoutgen.h"
|
|
|
|
|
2007-12-19 04:46:44 +01:00
|
|
|
extern AwesomeConf globalconf;
|
2007-12-14 14:29:32 +01:00
|
|
|
|
2008-05-20 19:58:34 +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-03-26 08:53:14 +01:00
|
|
|
/** Create a new tag. Parameteres values are checked.
|
|
|
|
* \param name tag name
|
|
|
|
* \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-04-22 14:18:09 +02:00
|
|
|
tag_t *
|
2008-05-23 13:33:57 +02:00
|
|
|
tag_new(const char *name, layout_t *layout, double mwfact, int nmaster, int ncol)
|
2008-01-17 18:27:55 +01:00
|
|
|
{
|
2008-04-22 14:18:09 +02:00
|
|
|
tag_t *tag;
|
2008-01-17 18:27:55 +01:00
|
|
|
|
2008-04-22 14:18:09 +02:00
|
|
|
tag = p_new(tag_t, 1);
|
2008-01-17 18:27:55 +01:00
|
|
|
tag->name = a_strdup(name);
|
|
|
|
tag->layout = layout;
|
2008-03-08 10:26:19 +01:00
|
|
|
|
2008-01-17 18:27:55 +01:00
|
|
|
tag->mwfact = mwfact;
|
2008-03-08 10:26:19 +01:00
|
|
|
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;
|
2008-01-17 18:27:55 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
tag_ref(&tag);
|
|
|
|
|
2008-01-17 18:27:55 +01:00
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
2008-04-08 09:45:48 +02:00
|
|
|
/** Append a tag to a screen.
|
|
|
|
* \param tag the tag to append
|
|
|
|
* \param screen the screen id
|
|
|
|
*/
|
2008-03-21 10:57:50 +01:00
|
|
|
void
|
2008-04-22 14:18:09 +02:00
|
|
|
tag_append_to_screen(tag_t *tag, int screen)
|
2008-01-17 18:27:55 +01:00
|
|
|
{
|
2008-03-21 10:57:50 +01:00
|
|
|
int phys_screen = screen_virttophys(screen);
|
|
|
|
|
2008-01-17 18:43:55 +01:00
|
|
|
tag->screen = screen;
|
2008-01-17 18:27:55 +01:00
|
|
|
tag_list_append(&globalconf.screens[screen].tags, tag);
|
2008-05-20 15:39:47 +02:00
|
|
|
tag_ref(&tag);
|
2008-05-09 22:45:32 +02:00
|
|
|
ewmh_update_net_numbers_of_desktop(phys_screen);
|
|
|
|
ewmh_update_net_desktop_names(phys_screen);
|
2008-01-17 18:27:55 +01:00
|
|
|
widget_invalidate_cache(screen, WIDGET_CACHE_TAGS);
|
|
|
|
}
|
|
|
|
|
2008-04-08 09:45:48 +02:00
|
|
|
/** Tag a client with specified tag.
|
|
|
|
* \param c the client to tag
|
|
|
|
* \param t the tag to tag the client with
|
|
|
|
*/
|
2007-12-14 14:29:32 +01:00
|
|
|
void
|
2008-04-22 14:18:09 +02:00
|
|
|
tag_client(client_t *c, tag_t *t)
|
2007-12-14 14:29:32 +01:00
|
|
|
{
|
2008-01-13 15:29:46 +01:00
|
|
|
tag_client_node_t *tc;
|
2007-12-14 14:29:32 +01:00
|
|
|
|
|
|
|
/* don't tag twice */
|
2007-12-27 23:05:34 +01:00
|
|
|
if(is_client_tagged(c, t))
|
2007-12-14 14:29:32 +01:00
|
|
|
return;
|
|
|
|
|
2008-01-13 15:29:46 +01:00
|
|
|
tc = p_new(tag_client_node_t, 1);
|
2008-01-12 22:00:36 +01:00
|
|
|
tc->client = c;
|
|
|
|
tc->tag = t;
|
2008-01-13 15:29:46 +01:00
|
|
|
tag_client_node_list_push(&globalconf.tclink, tc);
|
2008-01-09 09:59:45 +01:00
|
|
|
|
2008-01-17 19:17:53 +01:00
|
|
|
client_saveprops(c);
|
2008-01-09 09:59:45 +01:00
|
|
|
widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
|
2008-03-21 16:50:17 +01:00
|
|
|
globalconf.screens[c->screen].need_arrange = true;
|
2007-12-14 14:29:32 +01:00
|
|
|
}
|
|
|
|
|
2008-04-08 09:45:48 +02:00
|
|
|
/** Untag a client with specified tag.
|
|
|
|
* \param c the client to tag
|
|
|
|
* \param t the tag to tag the client with
|
|
|
|
*/
|
2007-12-14 14:29:32 +01:00
|
|
|
void
|
2008-04-22 14:18:09 +02:00
|
|
|
untag_client(client_t *c, tag_t *t)
|
2007-12-14 14:29:32 +01:00
|
|
|
{
|
2008-01-13 15:29:46 +01:00
|
|
|
tag_client_node_t *tc;
|
2007-12-14 14:29:32 +01:00
|
|
|
|
2007-12-28 11:34:35 +01:00
|
|
|
for(tc = globalconf.tclink; tc; tc = tc->next)
|
2007-12-14 14:29:32 +01:00
|
|
|
if(tc->client == c && tc->tag == t)
|
2008-01-04 17:08:30 +01:00
|
|
|
{
|
2008-01-13 15:29:46 +01:00
|
|
|
tag_client_node_list_detach(&globalconf.tclink, tc);
|
2008-01-12 22:00:36 +01:00
|
|
|
p_delete(&tc);
|
2008-04-08 09:45:48 +02:00
|
|
|
client_saveprops(c);
|
|
|
|
widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
|
|
|
|
globalconf.screens[c->screen].need_arrange = True;
|
2008-01-04 17:08:30 +01:00
|
|
|
break;
|
|
|
|
}
|
2007-12-14 14:29:32 +01:00
|
|
|
}
|
|
|
|
|
2008-04-08 09:45:48 +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.
|
|
|
|
*/
|
2008-03-21 16:50:17 +01:00
|
|
|
bool
|
2008-04-22 14:18:09 +02:00
|
|
|
is_client_tagged(client_t *c, tag_t *t)
|
2007-12-14 14:29:32 +01:00
|
|
|
{
|
2008-01-13 15:29:46 +01:00
|
|
|
tag_client_node_t *tc;
|
2007-12-14 14:29:32 +01:00
|
|
|
|
2007-12-27 23:05:34 +01:00
|
|
|
if(!c)
|
2008-03-21 16:50:17 +01:00
|
|
|
return false;
|
2007-12-23 15:16:10 +01:00
|
|
|
|
2007-12-28 11:34:35 +01:00
|
|
|
for(tc = globalconf.tclink; tc; tc = tc->next)
|
2007-12-14 14:29:32 +01:00
|
|
|
if(tc->client == c && tc->tag == t)
|
2008-03-21 16:50:17 +01:00
|
|
|
return true;
|
2007-12-28 12:48:42 +01:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
return false;
|
2007-12-14 14:29:32 +01:00
|
|
|
}
|
|
|
|
|
2008-04-08 09:45:48 +02:00
|
|
|
/** Tag the client with the currently selected (visible) tags.
|
|
|
|
* \param c the client
|
|
|
|
*/
|
2007-11-14 10:00:05 +01:00
|
|
|
void
|
2008-04-11 11:35:11 +02:00
|
|
|
tag_client_with_current_selected(client_t *c)
|
2007-11-14 10:00:05 +01:00
|
|
|
{
|
2008-04-22 14:18:09 +02:00
|
|
|
tag_t *tag;
|
2007-12-27 14:02:27 +01:00
|
|
|
VirtScreen vscreen = globalconf.screens[c->screen];
|
2007-11-14 10:00:05 +01:00
|
|
|
|
2007-12-16 02:45:38 +01:00
|
|
|
for(tag = vscreen.tags; tag; tag = tag->next)
|
2007-12-14 19:02:38 +01:00
|
|
|
if(tag->selected)
|
2007-12-27 22:43:59 +01:00
|
|
|
tag_client(c, tag);
|
2007-12-14 14:29:32 +01:00
|
|
|
else
|
2007-12-27 22:43:59 +01:00
|
|
|
untag_client(c, tag);
|
2007-11-14 10:00:05 +01:00
|
|
|
}
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-04-08 09:45:48 +02:00
|
|
|
/** 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
|
|
|
|
*/
|
2008-04-22 14:18:09 +02:00
|
|
|
tag_t **
|
2008-01-29 08:31:13 +01:00
|
|
|
tags_get_current(int screen)
|
2007-12-23 16:28:40 +01:00
|
|
|
{
|
2008-04-22 14:18:09 +02:00
|
|
|
tag_t *tag, **tags = NULL;
|
2007-12-27 11:22:57 +01:00
|
|
|
int n = 1;
|
2007-12-23 16:28:40 +01:00
|
|
|
|
2008-04-22 14:18:09 +02:00
|
|
|
tags = p_new(tag_t *, n);
|
2007-12-23 16:28:40 +01:00
|
|
|
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
|
|
|
|
if(tag->selected)
|
|
|
|
{
|
2007-12-27 11:22:57 +01:00
|
|
|
p_realloc(&tags, ++n);
|
|
|
|
tags[n - 2] = tag;
|
2007-12-23 16:28:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* finish with null */
|
|
|
|
tags[n - 1] = NULL;
|
|
|
|
|
|
|
|
return tags;
|
|
|
|
}
|
|
|
|
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-04-08 09:45:48 +02:00
|
|
|
/** Set a tag to be the only one viewed.
|
|
|
|
* \param target the tag to see
|
|
|
|
*/
|
2008-01-13 15:26:19 +01:00
|
|
|
static void
|
2008-04-22 14:18:09 +02:00
|
|
|
tag_view_only(tag_t *target)
|
2008-01-13 15:26:19 +01:00
|
|
|
{
|
2008-04-22 14:18:09 +02:00
|
|
|
tag_t *tag;
|
2008-01-13 15:26:19 +01:00
|
|
|
|
|
|
|
if(!target) return;
|
|
|
|
|
2008-01-17 18:43:55 +01:00
|
|
|
for(tag = globalconf.screens[target->screen].tags; tag; tag = tag->next)
|
2008-02-26 22:22:38 +01:00
|
|
|
tag_view(tag, tag == target);
|
2008-01-13 15:26:19 +01:00
|
|
|
}
|
|
|
|
|
2008-04-08 09:45:48 +02:00
|
|
|
/** View only a tag, selected by its index.
|
|
|
|
* \param screen screen id
|
|
|
|
* \param dindex the index
|
|
|
|
*/
|
2007-12-28 22:16:27 +01:00
|
|
|
void
|
2008-01-13 15:26:19 +01:00
|
|
|
tag_view_only_byindex(int screen, int dindex)
|
2007-12-28 22:16:27 +01:00
|
|
|
{
|
2008-04-22 14:18:09 +02:00
|
|
|
tag_t *tag;
|
2007-12-28 22:16:27 +01:00
|
|
|
|
|
|
|
if(dindex < 0)
|
|
|
|
return;
|
|
|
|
|
2008-01-13 15:26:19 +01:00
|
|
|
for(tag = globalconf.screens[screen].tags; tag && dindex > 0;
|
|
|
|
tag = tag->next, dindex--);
|
2008-01-17 18:43:55 +01:00
|
|
|
tag_view_only(tag);
|
2008-01-17 18:39:17 +01:00
|
|
|
}
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
|
|
|
luaA_tag_eq(lua_State *L)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-05-20 15:39:47 +02:00
|
|
|
tag_t **t1 = luaL_checkudata(L, 1, "tag");
|
|
|
|
tag_t **t2 = luaL_checkudata(L, 2, "tag");
|
|
|
|
lua_pushboolean(L, (*t1 == *t2));
|
|
|
|
return 1;
|
|
|
|
}
|
2007-11-26 18:23:15 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
|
|
|
luaA_tag_tostring(lua_State *L)
|
|
|
|
{
|
|
|
|
tag_t **p = luaL_checkudata(L, 1, "tag");
|
|
|
|
lua_pushfstring(L, "[tag udata(%p) name(%s)]", *p, (*p)->name);
|
|
|
|
return 1;
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
|
|
|
luaA_tag_add(lua_State *L)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-05-20 15:39:47 +02:00
|
|
|
tag_t **tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
int screen = luaL_checknumber(L, 2) - 1;
|
|
|
|
luaA_checkscreen(screen);
|
|
|
|
/* \todo check tag is not already in another screen */
|
|
|
|
tag_append_to_screen(*tag, screen);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
luaA_tag_get(lua_State *L)
|
|
|
|
{
|
|
|
|
int screen = luaL_checknumber(L, 1) - 1;
|
|
|
|
tag_t *tag, **tobj;
|
2008-05-23 13:17:02 +02:00
|
|
|
int i = 1;
|
2008-05-20 15:39:47 +02:00
|
|
|
|
|
|
|
luaA_checkscreen(screen);
|
|
|
|
|
|
|
|
lua_newtable(L);
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-02-04 14:32:06 +01:00
|
|
|
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
|
2008-05-23 13:17:02 +02:00
|
|
|
{
|
|
|
|
tobj = lua_newuserdata(L, sizeof(tag_t *));
|
|
|
|
*tobj = tag;
|
|
|
|
tag_ref(&tag);
|
|
|
|
luaA_settype(L, "tag");
|
|
|
|
lua_rawseti(L, -2, i++);
|
|
|
|
}
|
2008-05-20 15:39:47 +02:00
|
|
|
|
|
|
|
return 1;
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
/** Create a new tag.
|
|
|
|
* \param L Lua state.
|
|
|
|
* \return One because there's one element, a user data.
|
2007-09-05 20:15:00 +02:00
|
|
|
*/
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
|
|
|
luaA_tag_new(lua_State *L)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-05-20 15:39:47 +02:00
|
|
|
tag_t **tag;
|
|
|
|
int ncol, nmaster;
|
|
|
|
const char *name, *lay;
|
|
|
|
double mwfact;
|
2008-05-23 13:33:57 +02:00
|
|
|
layout_t *layout;
|
2008-05-20 15:39:47 +02:00
|
|
|
|
|
|
|
luaA_checktable(L, 1);
|
|
|
|
|
|
|
|
name = luaA_name_init(L);
|
|
|
|
mwfact = luaA_getopt_number(L, 1, "mwfact", 0.5);
|
|
|
|
ncol = luaA_getopt_number(L, 1, "ncol", 1);
|
|
|
|
nmaster = luaA_getopt_number(L, 1, "nmaster", 1);
|
|
|
|
lay = luaA_getopt_string(L, 1, "layout", "tile");
|
2007-12-14 19:02:38 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
layout = name_func_lookup(lay, LayoutList);
|
2007-12-15 13:35:15 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
tag = lua_newuserdata(L, sizeof(tag_t *));
|
2007-12-27 11:53:23 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
*tag = tag_new(name,
|
|
|
|
layout,
|
|
|
|
mwfact, nmaster, ncol);
|
|
|
|
|
|
|
|
return luaA_settype(L, "tag");
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
|
|
|
luaA_tag_view(lua_State *L)
|
|
|
|
{
|
|
|
|
tag_t **tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
bool view = luaA_checkboolean(L, 2);
|
|
|
|
tag_view(*tag, view);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
luaA_tag_isselected(lua_State *L)
|
|
|
|
{
|
|
|
|
tag_t **tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
lua_pushboolean(L, (*tag)->selected);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
luaA_tag_mwfact_set(lua_State *L)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-05-20 15:39:47 +02:00
|
|
|
tag_t **tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
double mwfact = luaL_checknumber(L, 2);
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
if(mwfact < 1 && mwfact > 0)
|
|
|
|
{
|
|
|
|
(*tag)->mwfact = mwfact;
|
|
|
|
globalconf.screens[(*tag)->screen].need_arrange = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
luaL_error(L, "bad value, must be between 0 and 1");
|
2008-01-16 18:07:38 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2008-01-16 18:07:38 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
|
|
|
luaA_tag_mwfact_get(lua_State *L)
|
|
|
|
{
|
|
|
|
tag_t **tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
lua_pushnumber(L, (*tag)->mwfact);
|
|
|
|
return 1;
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
2008-01-02 17:10:32 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
|
|
|
luaA_tag_ncol_set(lua_State *L)
|
2008-01-02 17:10:32 +01:00
|
|
|
{
|
2008-05-20 15:39:47 +02:00
|
|
|
tag_t **tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
int ncol = luaL_checknumber(L, 2);
|
2008-01-02 17:10:32 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
if(ncol >= 1)
|
|
|
|
{
|
|
|
|
(*tag)->ncol = ncol;
|
|
|
|
globalconf.screens[(*tag)->screen].need_arrange = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
luaL_error(L, "bad value, must be greater than 1");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2008-01-02 17:10:32 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
|
|
|
luaA_tag_ncol_get(lua_State *L)
|
|
|
|
{
|
|
|
|
tag_t **tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
lua_pushnumber(L, (*tag)->ncol);
|
|
|
|
return 1;
|
2008-01-02 17:10:32 +01:00
|
|
|
}
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
|
|
|
luaA_tag_nmaster_set(lua_State *L)
|
|
|
|
{
|
|
|
|
tag_t **tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
int nmaster = luaL_checknumber(L, 2);
|
|
|
|
|
|
|
|
if(nmaster >= 0)
|
|
|
|
{
|
|
|
|
(*tag)->nmaster = nmaster;
|
|
|
|
globalconf.screens[(*tag)->screen].need_arrange = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
luaL_error(L, "bad value, must be greater than 0");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
luaA_tag_nmaster_get(lua_State *L)
|
|
|
|
{
|
|
|
|
tag_t **tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
lua_pushnumber(L, (*tag)->nmaster);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-05-23 14:45:49 +02:00
|
|
|
static int
|
|
|
|
luaA_tag_name_get(lua_State *L)
|
|
|
|
{
|
|
|
|
tag_t **tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
lua_pushstring(L, (*tag)->name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
luaA_tag_name_set(lua_State *L)
|
|
|
|
{
|
|
|
|
tag_t **tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
const char *name = luaL_checkstring(L, 2);
|
|
|
|
p_delete(&(*tag)->name);
|
|
|
|
(*tag)->name = a_strdup(name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
static int
|
|
|
|
luaA_tag_gc(lua_State *L)
|
|
|
|
{
|
|
|
|
tag_t **tag = luaL_checkudata(L, 1, "tag");
|
|
|
|
tag_unref(tag);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct luaL_reg awesome_tag_methods[] =
|
|
|
|
{
|
|
|
|
{ "new", luaA_tag_new },
|
|
|
|
{ "get", luaA_tag_get},
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
const struct luaL_reg awesome_tag_meta[] =
|
|
|
|
{
|
|
|
|
{ "add", luaA_tag_add },
|
|
|
|
{ "view", luaA_tag_view },
|
|
|
|
{ "isselected", luaA_tag_isselected },
|
|
|
|
{ "mwfact_set", luaA_tag_mwfact_set },
|
|
|
|
{ "mwfact_get", luaA_tag_mwfact_get },
|
|
|
|
{ "ncol_set", luaA_tag_ncol_set },
|
|
|
|
{ "ncol_get", luaA_tag_ncol_get },
|
|
|
|
{ "nmaster_set", luaA_tag_nmaster_set },
|
|
|
|
{ "nmaster_get", luaA_tag_nmaster_get },
|
2008-05-23 14:45:49 +02:00
|
|
|
{ "name_get", luaA_tag_name_get },
|
|
|
|
{ "name_set", luaA_tag_name_set },
|
2008-05-20 15:39:47 +02:00
|
|
|
{ "__eq", luaA_tag_eq },
|
|
|
|
{ "__gc", luaA_tag_gc },
|
|
|
|
{ "__tostring", luaA_tag_tostring },
|
|
|
|
{ NULL, NULL },
|
|
|
|
};
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|