2 * tag.c - tag management
4 * Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 #include "layoutgen.h"
30 extern awesome_t globalconf
;
32 DO_LUA_NEW(extern, tag_t
, tag
, "tag", tag_ref
)
33 DO_LUA_GC(tag_t
, tag
, "tag", tag_unref
)
34 DO_LUA_EQ(tag_t
, tag
, "tag")
36 /** View or unview a tag.
38 * \param view set visible or not
41 tag_view(tag_t
*tag
, bool view
)
44 ewmh_update_net_current_desktop(screen_virttophys(tag
->screen
));
45 globalconf
.screens
[tag
->screen
].need_arrange
= true;
48 /** Create a new tag. Parameters values are checked.
49 * \param name Tag name.
50 * \param len Tag name length.
51 * \param layout Layout to use.
52 * \param mwfact Master width factor.
53 * \param nmaster Number of master windows.
54 * \param ncol Number of columns for slaves windows.
55 * \return A new tag with all these parameters.
58 tag_new(const char *name
, ssize_t len
, layout_t
*layout
, double mwfact
, int nmaster
, int ncol
)
62 tag
= p_new(tag_t
, 1);
63 a_iso2utf8(&tag
->name
, name
, len
);
67 tag
->screen
= SCREEN_UNDEF
;
70 if(tag
->mwfact
<= 0 || tag
->mwfact
>= 1)
73 if((tag
->nmaster
= nmaster
) < 0)
76 if((tag
->ncol
= ncol
) < 1)
82 /** Append a tag to a screen.
83 * \param tag the tag to append
84 * \param screen the screen id
87 tag_append_to_screen(tag_t
*tag
, screen_t
*s
)
89 int phys_screen
= screen_virttophys(s
->index
);
91 tag
->screen
= s
->index
;
92 tag_array_append(&s
->tags
, tag_ref(&tag
));
93 ewmh_update_net_numbers_of_desktop(phys_screen
);
94 ewmh_update_net_desktop_names(phys_screen
);
95 ewmh_update_workarea(phys_screen
);
97 /* resave tag prop of all clients so the number of tag will be the
99 for(client_t
*c
= globalconf
.clients
; c
; c
= c
->next
)
100 client_saveprops_tags(c
);
103 if(globalconf
.hooks
.tags
!= LUA_REFNIL
)
105 lua_pushnumber(globalconf
.L
, s
->index
+ 1);
106 luaA_dofunction(globalconf
.L
, globalconf
.hooks
.tags
, 1, 0);
110 /** Remove a tag from screen. Tag must be on a screen and have no clients.
111 * \param tag The tag to remove.
114 tag_remove_from_screen(tag_t
*tag
)
116 int screen
= tag
->screen
;
117 int phys_screen
= screen_virttophys(tag
->screen
);
118 tag_array_t
*tags
= &globalconf
.screens
[tag
->screen
].tags
;
120 for(int i
= 0; i
< tags
->len
; i
++)
121 if(tags
->tab
[i
] == tag
)
123 tag_array_take(tags
, i
);
126 ewmh_update_net_numbers_of_desktop(phys_screen
);
127 ewmh_update_net_desktop_names(phys_screen
);
128 ewmh_update_workarea(phys_screen
);
129 tag
->screen
= SCREEN_UNDEF
;
132 /* resave tag prop of all clients so the number of tag will be the
134 for(client_t
*c
= globalconf
.clients
; c
; c
= c
->next
)
135 client_saveprops_tags(c
);
138 if(globalconf
.hooks
.tags
!= LUA_REFNIL
)
140 lua_pushnumber(globalconf
.L
, screen
+ 1);
141 luaA_dofunction(globalconf
.L
, globalconf
.hooks
.tags
, 1, 0);
145 /** Tag a client with specified tag.
146 * \param c the client to tag
147 * \param t the tag to tag the client with
150 tag_client(client_t
*c
, tag_t
*t
)
152 /* don't tag twice */
153 if(is_client_tagged(c
, t
))
157 client_array_append(&t
->clients
, c
);
158 client_saveprops_tags(c
);
159 client_need_arrange(c
);
161 if(globalconf
.hooks
.tagged
!= LUA_REFNIL
)
163 luaA_client_userdata_new(globalconf
.L
, c
);
164 luaA_tag_userdata_new(globalconf
.L
, t
);
165 luaA_dofunction(globalconf
.L
, globalconf
.hooks
.tagged
, 2, 0);
169 /** Untag a client with specified tag.
170 * \param c the client to tag
171 * \param t the tag to tag the client with
174 untag_client(client_t
*c
, tag_t
*t
)
176 for(int i
= 0; i
< t
->clients
.len
; i
++)
177 if(t
->clients
.tab
[i
] == c
)
179 client_need_arrange(c
);
180 client_array_take(&t
->clients
, i
);
181 client_saveprops_tags(c
);
183 if(globalconf
.hooks
.tagged
!= LUA_REFNIL
)
185 luaA_client_userdata_new(globalconf
.L
, c
);
186 luaA_tag_userdata_new(globalconf
.L
, t
);
187 luaA_dofunction(globalconf
.L
, globalconf
.hooks
.tagged
, 2, 0);
194 /** Check if a client is tagged with the specified tag.
195 * \param c the client
197 * \return true if the client is tagged with the tag, false otherwise.
200 is_client_tagged(client_t
*c
, tag_t
*t
)
202 for(int i
= 0; i
< t
->clients
.len
; i
++)
203 if (t
->clients
.tab
[i
] == c
)
209 /** Get the current tags for the specified screen.
210 * Returned pointer must be p_delete'd after.
211 * \param screen screen id
212 * \return a double pointer of tag list finished with a NULL element
215 tags_get_current(int screen
)
217 tag_array_t
*tags
= &globalconf
.screens
[screen
].tags
;
218 tag_t
**out
= p_new(tag_t
*, tags
->len
+ 1);
221 for(int i
= 0; i
< tags
->len
; i
++)
222 if(tags
->tab
[i
]->selected
)
223 out
[n
++] = tags
->tab
[i
];
229 /** Set a tag to be the only one viewed.
230 * \param target the tag to see
233 tag_view_only(tag_t
*target
)
237 tag_array_t
*tags
= &globalconf
.screens
[target
->screen
].tags
;
239 for(int i
= 0; i
< tags
->len
; i
++)
240 tag_view(tags
->tab
[i
], tags
->tab
[i
] == target
);
244 /** View only a tag, selected by its index.
245 * \param screen screen id
246 * \param dindex the index
249 tag_view_only_byindex(int screen
, int dindex
)
251 tag_array_t
*tags
= &globalconf
.screens
[screen
].tags
;
253 if(dindex
< 0 || dindex
>= tags
->len
)
255 tag_view_only(tags
->tab
[dindex
]);
258 /** Create a new tag.
259 * \param L The Lua VM state.
262 * \lparam A table with at least a name attribute.
263 * Optional attributes are: mwfact, ncol, nmaster and layout.
264 * \lreturn A new tag object.
267 luaA_tag_new(lua_State
*L
)
272 const char *name
, *lay
;
276 luaA_checktable(L
, 2);
278 if(!(name
= luaA_getopt_lstring(L
, 2, "name", NULL
, &len
)))
279 luaL_error(L
, "object tag must have a name");
281 mwfact
= luaA_getopt_number(L
, 2, "mwfact", 0.5);
282 ncol
= luaA_getopt_number(L
, 2, "ncol", 1);
283 nmaster
= luaA_getopt_number(L
, 2, "nmaster", 1);
284 lay
= luaA_getopt_string(L
, 2, "layout", "tile");
286 layout
= name_func_lookup(lay
, LayoutList
);
288 tag
= tag_new(name
, len
,
290 mwfact
, nmaster
, ncol
);
292 return luaA_tag_userdata_new(L
, tag
);
295 /** Get or set the clients attached to this tag.
296 * \param L The Lua VM state.
297 * \return The number of elements pushed on stack.
299 * \lparam None or a table of clients to set.
300 * \lreturn A table with the clients attached to this tags.
303 luaA_tag_clients(lua_State
*L
)
305 tag_t
**tag
= luaA_checkudata(L
, 1, "tag");
306 client_array_t
*clients
= &(*tag
)->clients
;
309 if(lua_gettop(L
) == 2)
313 luaA_checktable(L
, 2);
314 for(i
= 0; i
< (*tag
)->clients
.len
; i
++)
315 untag_client((*tag
)->clients
.tab
[i
], *tag
);
317 while(lua_next(L
, 2))
319 c
= luaA_checkudata(L
, -1, "client");
320 tag_client(*c
, *tag
);
326 for(i
= 0; i
< clients
->len
; i
++)
328 luaA_client_userdata_new(L
, clients
->tab
[i
]);
329 lua_rawseti(L
, -2, i
+ 1);
336 * \param L The Lua VM state.
337 * \return The number of elements pushed on stack.
339 * \lfield name Tag name.
340 * \lfield screen Screen number of the tag.
341 * \lfield layout Tag layout.
342 * \lfield selected True if the client is selected to be viewed.
343 * \lfield mwfact Master width factor.
344 * \lfield nmaster Number of master windows.
345 * \lfield ncol Number of column for slave windows.
348 luaA_tag_index(lua_State
*L
)
351 tag_t
**tag
= luaA_checkudata(L
, 1, "tag");
354 if(luaA_usemetatable(L
, 1, 2))
357 attr
= luaL_checklstring(L
, 2, &len
);
359 switch(a_tokenize(attr
, len
))
362 lua_pushstring(L
, (*tag
)->name
);
365 if((*tag
)->screen
== SCREEN_UNDEF
)
367 lua_pushnumber(L
, (*tag
)->screen
+ 1);
370 lua_pushstring(L
, name_func_rlookup((*tag
)->layout
, LayoutList
));
373 lua_pushboolean(L
, (*tag
)->selected
);
376 lua_pushnumber(L
, (*tag
)->mwfact
);
379 lua_pushnumber(L
, (*tag
)->nmaster
);
382 lua_pushnumber(L
, (*tag
)->ncol
);
392 * \param L The Lua VM state.
393 * \return The number of elements pushed on stack.
396 luaA_tag_newindex(lua_State
*L
)
399 tag_t
**tag
= luaA_checkudata(L
, 1, "tag");
400 const char *buf
, *attr
= luaL_checklstring(L
, 2, &len
);
405 switch(a_tokenize(attr
, len
))
408 buf
= luaL_checklstring(L
, 3, &len
);
409 p_delete(&(*tag
)->name
);
410 a_iso2utf8(&(*tag
)->name
, buf
, len
);
415 screen
= luaL_checknumber(L
, 3) - 1;
416 luaA_checkscreen(screen
);
419 screen
= SCREEN_UNDEF
;
421 if((*tag
)->screen
!= SCREEN_UNDEF
)
422 tag_remove_from_screen(*tag
);
424 if(screen
!= SCREEN_UNDEF
)
425 tag_append_to_screen(*tag
, &globalconf
.screens
[screen
]);
428 buf
= luaL_checkstring(L
, 3);
429 l
= name_func_lookup(buf
, LayoutList
);
434 luaA_warn(L
, "unknown layout: %s", buf
);
439 if((*tag
)->screen
!= SCREEN_UNDEF
)
440 tag_view(*tag
, luaA_checkboolean(L
, 3));
443 d
= luaL_checknumber(L
, 3);
448 luaA_warn(L
, "bad value, must be between 0 and 1");
453 i
= luaL_checknumber(L
, 3);
458 luaA_warn(L
, "bad value, must be greater than 0");
463 i
= luaL_checknumber(L
, 3);
468 luaA_warn(L
, "bad value, must be greater than 1");
476 if((*tag
)->screen
!= SCREEN_UNDEF
&& (*tag
)->selected
)
477 globalconf
.screens
[(*tag
)->screen
].need_arrange
= true;
482 const struct luaL_reg awesome_tag_methods
[] =
484 { "__call", luaA_tag_new
},
487 const struct luaL_reg awesome_tag_meta
[] =
489 { "clients", luaA_tag_clients
},
490 { "__index", luaA_tag_index
},
491 { "__newindex", luaA_tag_newindex
},
492 { "__eq", luaA_tag_eq
},
493 { "__gc", luaA_tag_gc
},
494 { "__tostring", luaA_tag_tostring
},
498 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80