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
|
|
|
*
|
|
|
|
* Copyright © 2007 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.
|
|
|
|
*
|
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"
|
2007-11-13 21:40:33 +01:00
|
|
|
#include "rules.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
|
|
|
|
2007-12-19 04:46:44 +01:00
|
|
|
extern AwesomeConf globalconf;
|
2007-12-14 14:29:32 +01:00
|
|
|
|
2008-01-17 18:27:55 +01:00
|
|
|
Tag *
|
|
|
|
tag_new(const char *name, Layout *layout, double mwfact, int nmaster, int ncol)
|
|
|
|
{
|
|
|
|
Tag *tag;
|
|
|
|
|
|
|
|
tag = p_new(Tag, 1);
|
|
|
|
tag->name = a_strdup(name);
|
|
|
|
tag->layout = layout;
|
|
|
|
tag->mwfact = mwfact;
|
|
|
|
tag->nmaster = nmaster;
|
|
|
|
tag->ncol = ncol;
|
|
|
|
|
|
|
|
return tag;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tag_append_to_screen(Tag *tag, int 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);
|
|
|
|
widget_invalidate_cache(screen, WIDGET_CACHE_TAGS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tag_push_to_screen(Tag *tag, int screen)
|
|
|
|
{
|
2008-01-17 18:43:55 +01:00
|
|
|
tag->screen = screen;
|
2008-01-17 18:27:55 +01:00
|
|
|
tag_list_push(&globalconf.screens[screen].tags, tag);
|
|
|
|
widget_invalidate_cache(screen, WIDGET_CACHE_TAGS);
|
|
|
|
}
|
|
|
|
|
2007-12-14 14:29:32 +01:00
|
|
|
void
|
2007-12-27 22:43:59 +01:00
|
|
|
tag_client(Client *c, Tag *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-01-17 19:17:53 +01:00
|
|
|
globalconf.screens[c->screen].need_arrange = True;
|
2007-12-14 14:29:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-12-27 22:43:59 +01:00
|
|
|
untag_client(Client *c, Tag *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-01-04 17:08:30 +01:00
|
|
|
break;
|
|
|
|
}
|
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-01-17 19:17:53 +01:00
|
|
|
globalconf.screens[c->screen].need_arrange = True;
|
2007-12-14 14:29:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Bool
|
2007-12-27 23:05:34 +01:00
|
|
|
is_client_tagged(Client *c, Tag *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)
|
2007-12-23 15:16:10 +01:00
|
|
|
return False;
|
|
|
|
|
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)
|
|
|
|
return True;
|
2007-12-28 12:48:42 +01:00
|
|
|
|
2007-12-14 14:29:32 +01:00
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
2007-11-14 10:00:05 +01:00
|
|
|
void
|
2007-12-27 14:02:27 +01:00
|
|
|
tag_client_with_current_selected(Client *c)
|
2007-11-14 10:00:05 +01:00
|
|
|
{
|
2007-12-14 19:02:38 +01:00
|
|
|
Tag *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-01-13 18:22:05 +01:00
|
|
|
void
|
2008-01-13 16:30:43 +01:00
|
|
|
tag_client_with_rule(Client *c, Rule *r)
|
2007-12-14 16:40:08 +01:00
|
|
|
{
|
2007-12-14 19:02:38 +01:00
|
|
|
Tag *tag;
|
2007-12-14 16:40:08 +01:00
|
|
|
Bool matched = False;
|
|
|
|
|
2008-01-13 18:22:05 +01:00
|
|
|
if(!r) return;
|
2008-01-13 16:30:43 +01:00
|
|
|
|
2008-01-13 18:22:05 +01:00
|
|
|
/* check if at least one tag match */
|
2008-01-13 16:30:43 +01:00
|
|
|
for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next)
|
|
|
|
if(tag_match_rule(tag, r))
|
2007-12-14 16:40:08 +01:00
|
|
|
{
|
2008-01-13 16:30:43 +01:00
|
|
|
matched = True;
|
2008-01-13 18:22:05 +01:00
|
|
|
break;
|
2008-01-12 22:59:13 +01:00
|
|
|
}
|
2007-12-14 16:40:08 +01:00
|
|
|
|
2008-01-13 18:22:05 +01:00
|
|
|
if(matched)
|
|
|
|
for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next)
|
|
|
|
if(tag_match_rule(tag, r))
|
|
|
|
tag_client(c, tag);
|
|
|
|
else
|
|
|
|
untag_client(c, tag);
|
2007-12-14 16:40:08 +01:00
|
|
|
}
|
|
|
|
|
2007-12-23 16:28:40 +01:00
|
|
|
Tag **
|
2008-01-29 08:31:13 +01:00
|
|
|
tags_get_current(int screen)
|
2007-12-23 16:28:40 +01:00
|
|
|
{
|
|
|
|
Tag *tag, **tags = NULL;
|
2007-12-27 11:22:57 +01:00
|
|
|
int n = 1;
|
2007-12-23 16:28:40 +01:00
|
|
|
|
2007-12-27 11:22:57 +01:00
|
|
|
tags = p_new(Tag *, 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
|
|
|
/** Tag selected window with tag
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param screen Screen ID
|
2007-09-05 20:15:00 +02:00
|
|
|
* \param arg Tag name
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_client_tag(int screen, char *arg)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-14 19:02:38 +01:00
|
|
|
int tag_id = -1;
|
|
|
|
Tag *tag, *target_tag;
|
2007-12-16 02:45:38 +01:00
|
|
|
Client *sel = globalconf.focus->client;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-10-26 23:19:13 +02:00
|
|
|
if(!sel)
|
2007-09-05 20:15:00 +02:00
|
|
|
return;
|
2007-11-11 11:30:07 +01:00
|
|
|
|
2007-11-16 21:56:31 +01:00
|
|
|
if(arg)
|
|
|
|
{
|
2007-11-26 18:23:15 +01:00
|
|
|
tag_id = atoi(arg) - 1;
|
2007-12-14 19:02:38 +01:00
|
|
|
if(tag_id != -1)
|
|
|
|
{
|
2007-12-16 02:45:38 +01:00
|
|
|
for(target_tag = globalconf.screens[screen].tags; target_tag && tag_id > 0;
|
2007-12-14 19:02:38 +01:00
|
|
|
target_tag = target_tag->next, tag_id--);
|
|
|
|
if(target_tag)
|
|
|
|
{
|
2007-12-16 02:45:38 +01:00
|
|
|
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
|
2007-12-27 22:43:59 +01:00
|
|
|
untag_client(sel, tag);
|
|
|
|
tag_client(sel, target_tag);
|
2007-12-14 19:02:38 +01:00
|
|
|
}
|
|
|
|
}
|
2007-11-16 21:56:31 +01:00
|
|
|
}
|
2007-12-14 14:29:32 +01:00
|
|
|
else
|
2007-12-16 02:45:38 +01:00
|
|
|
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
|
2007-12-27 22:43:59 +01:00
|
|
|
tag_client(sel, tag);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2007-11-14 18:03:51 +01:00
|
|
|
/** Toggle a tag on client
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param screen Screen ID
|
2007-09-05 20:15:00 +02:00
|
|
|
* \param arg Tag name
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_client_toggletag(int screen, char *arg)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-16 02:45:38 +01:00
|
|
|
Client *sel = globalconf.focus->client;
|
2007-12-14 19:02:38 +01:00
|
|
|
int i;
|
|
|
|
Tag *tag, *target_tag;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-10-26 23:19:13 +02:00
|
|
|
if(!sel)
|
2007-09-05 20:15:00 +02:00
|
|
|
return;
|
2007-11-16 22:07:58 +01:00
|
|
|
|
|
|
|
if(arg)
|
|
|
|
{
|
|
|
|
i = atoi(arg) - 1;
|
2007-12-16 02:45:38 +01:00
|
|
|
for(target_tag = globalconf.screens[screen].tags; target_tag && i > 0;
|
2007-12-14 19:02:38 +01:00
|
|
|
target_tag = target_tag->next, i--);
|
|
|
|
if(target_tag)
|
|
|
|
{
|
2007-12-27 23:05:34 +01:00
|
|
|
if(is_client_tagged(sel, target_tag))
|
2007-12-27 22:43:59 +01:00
|
|
|
untag_client(sel, target_tag);
|
2007-12-14 19:02:38 +01:00
|
|
|
else
|
2007-12-27 22:43:59 +01:00
|
|
|
tag_client(sel, target_tag);
|
2007-12-14 19:02:38 +01:00
|
|
|
}
|
2007-11-16 22:07:58 +01:00
|
|
|
|
|
|
|
/* check that there's at least one tag selected for this client*/
|
2007-12-16 02:45:38 +01:00
|
|
|
for(tag = globalconf.screens[screen].tags; tag
|
2007-12-27 23:05:34 +01:00
|
|
|
&& !is_client_tagged(sel, tag); tag = tag->next)
|
2007-12-14 14:29:32 +01:00
|
|
|
|
2007-12-14 19:02:38 +01:00
|
|
|
if(!tag)
|
2007-12-27 22:43:59 +01:00
|
|
|
tag_client(sel, target_tag);
|
2007-11-16 22:07:58 +01:00
|
|
|
}
|
|
|
|
else
|
2007-12-16 02:45:38 +01:00
|
|
|
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
|
2007-12-27 23:05:34 +01:00
|
|
|
if(is_client_tagged(sel, tag))
|
2007-12-27 22:43:59 +01:00
|
|
|
tag_client(sel, tag);
|
2007-12-14 19:02:38 +01:00
|
|
|
else
|
2007-12-27 22:43:59 +01:00
|
|
|
untag_client(sel, tag);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Add a tag to viewed tags
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param screen Screen ID
|
2007-09-05 20:15:00 +02:00
|
|
|
* \param arg Tag name
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_tag_toggleview(int screen, char *arg)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-14 19:02:38 +01:00
|
|
|
int i;
|
|
|
|
Tag *tag, *target_tag;
|
2007-11-16 22:03:26 +01:00
|
|
|
|
2007-12-14 19:02:38 +01:00
|
|
|
if(arg)
|
|
|
|
{
|
|
|
|
i = atoi(arg) - 1;
|
2007-12-16 02:45:38 +01:00
|
|
|
for(target_tag = globalconf.screens[screen].tags; target_tag && i > 0;
|
2007-12-14 19:02:38 +01:00
|
|
|
target_tag = target_tag->next, i--);
|
2007-11-16 22:03:26 +01:00
|
|
|
|
2007-12-14 19:02:38 +01:00
|
|
|
if(target_tag)
|
2008-01-17 19:17:53 +01:00
|
|
|
tag_view(target_tag, !target_tag->selected);
|
2007-11-16 22:03:26 +01:00
|
|
|
|
2007-12-14 19:02:38 +01:00
|
|
|
/* check that there's at least one tag selected */
|
2007-12-16 02:45:38 +01:00
|
|
|
for(tag = globalconf.screens[screen].tags; tag && !tag->selected; tag = tag->next);
|
2007-12-14 19:02:38 +01:00
|
|
|
if(!tag)
|
2008-01-17 19:17:53 +01:00
|
|
|
tag_view(target_tag, True);
|
2007-12-14 19:02:38 +01:00
|
|
|
}
|
|
|
|
else
|
2007-12-16 02:45:38 +01:00
|
|
|
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
|
2008-01-17 19:17:53 +01:00
|
|
|
tag_view(tag, !tag->selected);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2008-01-13 15:26:19 +01:00
|
|
|
static void
|
2008-01-17 18:43:55 +01:00
|
|
|
tag_view_only(Tag *target)
|
2008-01-13 15:26:19 +01:00
|
|
|
{
|
|
|
|
Tag *tag;
|
|
|
|
|
|
|
|
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-01-23 08:45:02 +01:00
|
|
|
void
|
|
|
|
tag_view_byindex(int screen, int dindex, Bool view)
|
|
|
|
{
|
|
|
|
Tag *tag;
|
|
|
|
|
|
|
|
if(dindex < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for(tag = globalconf.screens[screen].tags; tag && dindex > 0;
|
|
|
|
tag = tag->next, dindex--);
|
|
|
|
tag_view(tag, view);
|
|
|
|
}
|
|
|
|
|
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-01-13 15:26:19 +01:00
|
|
|
Tag *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
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-17 18:43:55 +01:00
|
|
|
tag_view(Tag *tag, Bool view)
|
2008-01-17 18:39:17 +01:00
|
|
|
{
|
2008-02-04 14:32:06 +01:00
|
|
|
tag->was_selected = tag->selected;
|
2008-01-17 18:39:17 +01:00
|
|
|
tag->selected = view;
|
2008-01-17 18:43:55 +01:00
|
|
|
ewmh_update_net_current_desktop(get_phys_screen(tag->screen));
|
|
|
|
widget_invalidate_cache(tag->screen, WIDGET_CACHE_TAGS);
|
2008-01-17 19:17:53 +01:00
|
|
|
globalconf.screens[tag->screen].need_arrange = True;
|
2007-12-28 22:16:27 +01:00
|
|
|
}
|
|
|
|
|
2007-09-07 11:42:13 +02:00
|
|
|
/** View tag
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param screen Screen ID
|
2007-09-07 11:42:13 +02:00
|
|
|
* \param arg tag to view
|
2007-09-05 20:15:00 +02:00
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_tag_view(int screen, char *arg)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-28 22:16:27 +01:00
|
|
|
Tag *tag;
|
2007-11-26 18:23:15 +01:00
|
|
|
|
|
|
|
if(arg)
|
2008-01-13 15:26:19 +01:00
|
|
|
tag_view_only_byindex(screen, atoi(arg) - 1);
|
2007-12-14 19:02:38 +01:00
|
|
|
else
|
2007-12-16 02:45:38 +01:00
|
|
|
for(tag = globalconf.screens[screen].tags; tag; tag = tag->next)
|
2008-01-17 18:43:55 +01:00
|
|
|
tag_view(tag, True);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** View previously selected tags
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param screen Screen ID
|
2007-09-05 20:15:00 +02:00
|
|
|
* \param arg unused
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_tag_prev_selected(int screen, char *arg __attribute__ ((unused)))
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-12-14 19:02:38 +01:00
|
|
|
Tag *tag;
|
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-01-17 18:43:55 +01:00
|
|
|
tag_view(tag, tag->was_selected);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** View next tag
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param screen Screen ID
|
2007-09-05 20:15:00 +02:00
|
|
|
* \param arg unused
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_tag_viewnext(int screen, char *arg __attribute__ ((unused)))
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-01-29 08:31:13 +01:00
|
|
|
Tag *tag, **curtags = tags_get_current(screen);
|
2007-12-14 19:02:38 +01:00
|
|
|
|
2008-01-17 18:49:27 +01:00
|
|
|
tag = tag_list_next_cycle(&globalconf.screens[screen].tags, curtags[0]);
|
2007-12-15 13:35:15 +01:00
|
|
|
|
2008-01-17 18:43:55 +01:00
|
|
|
tag_view(curtags[0], False);
|
|
|
|
tag_view(tag, True);
|
2007-12-27 11:53:23 +01:00
|
|
|
|
|
|
|
p_delete(&curtags);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** View previous tag
|
2007-12-19 04:26:20 +01:00
|
|
|
* \param screen Screen ID
|
2007-09-05 20:15:00 +02:00
|
|
|
* \param arg unused
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_tag_viewprev(int screen, char *arg __attribute__ ((unused)))
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2008-01-29 08:31:13 +01:00
|
|
|
Tag *tag, **curtags = tags_get_current(screen);
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-01-16 18:07:38 +01:00
|
|
|
tag = tag_list_prev_cycle(&globalconf.screens[screen].tags, curtags[0]);
|
|
|
|
|
2008-01-17 18:43:55 +01:00
|
|
|
tag_view(curtags[0], False);
|
|
|
|
tag_view(tag, True);
|
2008-01-16 18:07:38 +01:00
|
|
|
|
2007-12-27 11:53:23 +01:00
|
|
|
p_delete(&curtags);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
2008-01-02 17:10:32 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
uicb_tag_create(int screen, char *arg)
|
|
|
|
{
|
2008-01-12 21:53:58 +01:00
|
|
|
Tag *tag;
|
2008-01-02 17:10:32 +01:00
|
|
|
|
|
|
|
if(!a_strlen(arg))
|
|
|
|
return;
|
|
|
|
|
2008-01-17 18:27:55 +01:00
|
|
|
tag = tag_new(arg, globalconf.screens[screen].layouts, 0.5, 1, 1);
|
|
|
|
tag_append_to_screen(tag, screen);
|
2008-01-02 17:10:32 +01:00
|
|
|
}
|
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|