awesome/tag.c

360 lines
9.6 KiB
C
Raw Normal View History

/*
2007-09-12 14:29:51 +02:00
* tag.c - tag management
*
* 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 "layout.h"
#include "tag.h"
#include "util.h"
#include "rules.h"
2007-09-05 20:15:00 +02:00
static void
detach_tagclientlink(TagClientLink **head, TagClientLink *tc)
{
TagClientLink *tmp;
if(*head == tc)
*head = tc->next;
else
{
for(tmp = *head; tmp && tmp->next != tc; tmp = tmp->next);
tmp->next = tc->next;
}
p_delete(&tc);
}
void
tag_client(TagClientLink **head, Client *c, Tag *t)
{
TagClientLink *tc, *new_tc;
/* don't tag twice */
if(is_client_tagged(*head, c, t))
return;
new_tc = p_new(TagClientLink, 1);
if(!*head)
*head = new_tc;
else
{
for(tc = *head; tc->next; tc = tc->next);
tc->next = new_tc;
}
new_tc->client = c;
new_tc->tag = t;
}
void
untag_client(TagClientLink **head, Client *c, Tag *t)
{
TagClientLink *tc;
for(tc = *head; tc; tc = tc->next)
if(tc->client == c && tc->tag == t)
detach_tagclientlink(head, tc);
}
Bool
is_client_tagged(TagClientLink *head, Client *c, Tag *t)
{
TagClientLink *tc;
for(tc = head; tc; tc = tc->next)
if(tc->client == c && tc->tag == t)
return True;
return False;
}
/** Returns True if a client is tagged
* with one of the tags
2007-09-05 20:15:00 +02:00
* \return True or False
*/
Bool
isvisible(Client *c, VirtScreen *scr, int screen)
2007-09-05 20:15:00 +02:00
{
int i;
if(c->screen != screen)
2007-09-26 18:56:58 +02:00
return False;
for(i = 0; i < scr->ntags; i++)
if(is_client_tagged(scr->tclink, c, &scr->tags[i]) && scr->tags[i].selected)
2007-09-05 20:15:00 +02:00
return True;
return False;
}
void
tag_client_with_current_selected(Client *c, VirtScreen *screen)
{
int i;
for(i = 0; i < screen->ntags; i++)
if(screen->tags[i].selected)
tag_client(&screen->tclink, c, &screen->tags[i]);
else
untag_client(&screen->tclink, c, &screen->tags[i]);
}
2007-09-05 20:15:00 +02:00
/** Tag selected window with tag
* \param arg Tag name
* \ingroup ui_callback
*/
void
2007-11-14 17:56:16 +01:00
uicb_client_tag(awesome_config *awesomeconf,
int screen,
2007-11-14 17:56:16 +01:00
const char *arg)
2007-09-05 20:15:00 +02:00
{
2007-11-26 18:23:15 +01:00
int i, tag_id = -1;
Client *sel = get_current_tag(awesomeconf->screens[screen])->client_sel;
2007-09-05 20:15:00 +02:00
if(!sel)
2007-09-05 20:15:00 +02:00
return;
if(arg)
{
2007-11-26 18:23:15 +01:00
tag_id = atoi(arg) - 1;
if(tag_id < 0 || tag_id >= awesomeconf->screens[screen].ntags)
2007-11-26 18:23:15 +01:00
return;
}
if(arg)
for(i = 0; i < awesomeconf->screens[screen].ntags; i++)
untag_client(&awesomeconf->screens[screen].tclink, sel,
&awesomeconf->screens[screen].tags[i]);
else
for(i = 0; i < awesomeconf->screens[screen].ntags; i++)
tag_client(&awesomeconf->screens[screen].tclink, sel,
&awesomeconf->screens[screen].tags[i]);
2007-11-26 18:23:15 +01:00
if(tag_id != -1)
tag_client(&awesomeconf->screens[screen].tclink, sel,
&awesomeconf->screens[screen].tags[tag_id]);
2007-11-26 18:23:15 +01:00
saveprops(sel, &awesomeconf->screens[screen]);
arrange(awesomeconf, screen);
2007-09-05 20:15:00 +02:00
}
/** Toggle floating state of a client
* \param arg unused
* \ingroup ui_callback
*/
void
uicb_client_togglefloating(awesome_config * awesomeconf,
int screen,
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
Client *sel = get_current_tag(awesomeconf->screens[screen])->client_sel;
if(!sel)
2007-09-05 20:15:00 +02:00
return;
sel->isfloating = !sel->isfloating;
if (arg == NULL)
client_resize(sel, sel->rx, sel->ry, sel->rw, sel->rh, awesomeconf, True, False);
else
client_resize(sel, sel->x, sel->y, sel->w, sel->h, awesomeconf, True, True);
saveprops(sel, &awesomeconf->screens[screen]);
arrange(awesomeconf, screen);
2007-09-05 20:15:00 +02:00
}
/** Toggle a tag on client
2007-09-05 20:15:00 +02:00
* \param arg Tag name
* \ingroup ui_callback
*/
void
uicb_client_toggletag(awesome_config *awesomeconf,
int screen,
const char *arg)
2007-09-05 20:15:00 +02:00
{
Client *sel = get_current_tag(awesomeconf->screens[screen])->client_sel;
int i, j;
2007-09-05 20:15:00 +02:00
if(!sel)
2007-09-05 20:15:00 +02:00
return;
if(arg)
{
i = atoi(arg) - 1;
if(i < 0 || i >= awesomeconf->screens[screen].ntags)
return;
if(is_client_tagged(awesomeconf->screens[screen].tclink, sel,
&awesomeconf->screens[screen].tags[i]))
untag_client(&awesomeconf->screens[screen].tclink, sel,&awesomeconf->screens[screen].tags[i]);
else
tag_client(&awesomeconf->screens[screen].tclink, sel,&awesomeconf->screens[screen].tags[i]);
/* check that there's at least one tag selected for this client*/
for(j = 0; j < awesomeconf->screens[screen].ntags
&& !is_client_tagged(awesomeconf->screens[screen].tclink, sel,
&awesomeconf->screens[screen].tags[j]); j++);
if(j == awesomeconf->screens[screen].ntags)
tag_client(&awesomeconf->screens[screen].tclink, sel,&awesomeconf->screens[screen].tags[i]);
}
else
for(i = 0; i < awesomeconf->screens[screen].ntags; i++)
tag_client(&awesomeconf->screens[screen].tclink, sel,&awesomeconf->screens[screen].tags[i]);
saveprops(sel, &awesomeconf->screens[screen]);
arrange(awesomeconf, screen);
2007-09-05 20:15:00 +02:00
}
/** Add a tag to viewed tags
* \param arg Tag name
* \ingroup ui_callback
*/
void
uicb_tag_toggleview(awesome_config *awesomeconf,
int screen,
const char *arg)
2007-09-05 20:15:00 +02:00
{
int i, j;
2007-09-05 20:15:00 +02:00
i = arg ? atoi(arg) - 1: 0;
if(i < 0 || i >= awesomeconf->screens[screen].ntags)
return;
awesomeconf->screens[screen].tags[i].selected = !awesomeconf->screens[screen].tags[i].selected;
/* check that there's at least one tag selected */
for(j = 0; j < awesomeconf->screens[screen].ntags && !awesomeconf->screens[screen].tags[j].selected; j++);
if(j == awesomeconf->screens[screen].ntags)
awesomeconf->screens[screen].tags[i].selected = True;
saveawesomeprops(awesomeconf, screen);
arrange(awesomeconf, screen);
2007-09-05 20:15:00 +02:00
}
2007-09-07 11:42:13 +02:00
/** View tag
2007-09-10 12:06:54 +02:00
* \param awesomeconf awesome config ref
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-11-14 18:05:05 +01:00
uicb_tag_view(awesome_config *awesomeconf,
int screen,
const char *arg)
2007-09-05 20:15:00 +02:00
{
2007-11-26 18:23:15 +01:00
int i, tag_id = -1;
if(arg)
{
tag_id = atoi(arg) - 1;
if(tag_id < 0 || tag_id >= awesomeconf->screens[screen].ntags)
2007-11-26 18:23:15 +01:00
return;
}
2007-09-05 20:15:00 +02:00
for(i = 0; i < awesomeconf->screens[screen].ntags; i++)
2007-09-05 20:15:00 +02:00
{
awesomeconf->screens[screen].tags[i].was_selected = awesomeconf->screens[screen].tags[i].selected;
awesomeconf->screens[screen].tags[i].selected = arg == NULL;
2007-09-05 20:15:00 +02:00
}
2007-11-26 18:23:15 +01:00
if(tag_id != -1)
awesomeconf->screens[screen].tags[tag_id].selected = True;
saveawesomeprops(awesomeconf, screen);
arrange(awesomeconf, screen);
2007-09-05 20:15:00 +02:00
}
/** View previously selected tags
2007-09-10 12:06:54 +02:00
* \param awesomeconf awesome config ref
2007-09-05 20:15:00 +02:00
* \param arg unused
* \ingroup ui_callback
*/
void
2007-10-11 23:32:29 +02:00
uicb_tag_prev_selected(awesome_config *awesomeconf,
int screen,
const char *arg __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
int i;
Bool t;
for(i = 0; i < awesomeconf->screens[screen].ntags; i++)
2007-09-05 20:15:00 +02:00
{
t = awesomeconf->screens[screen].tags[i].selected;
awesomeconf->screens[screen].tags[i].selected = awesomeconf->screens[screen].tags[i].was_selected;
awesomeconf->screens[screen].tags[i].was_selected = t;
2007-09-05 20:15:00 +02:00
}
arrange(awesomeconf, screen);
2007-09-05 20:15:00 +02:00
}
/** View next tag
* \param arg unused
* \ingroup ui_callback
*/
void
2007-10-11 23:32:29 +02:00
uicb_tag_viewnext(awesome_config *awesomeconf,
int screen,
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
int i;
int firsttag = -1;
for(i = 0; i < awesomeconf->screens[screen].ntags; i++)
2007-09-05 20:15:00 +02:00
{
if(firsttag < 0 && awesomeconf->screens[screen].tags[i].selected)
2007-09-05 20:15:00 +02:00
firsttag = i;
awesomeconf->screens[screen].tags[i].selected = False;
2007-09-05 20:15:00 +02:00
}
if(++firsttag >= awesomeconf->screens[screen].ntags)
2007-09-05 20:15:00 +02:00
firsttag = 0;
awesomeconf->screens[screen].tags[firsttag].selected = True;
saveawesomeprops(awesomeconf, screen);
arrange(awesomeconf, screen);
2007-09-05 20:15:00 +02:00
}
/** View previous tag
* \param arg unused
* \ingroup ui_callback
*/
void
2007-10-11 23:32:29 +02:00
uicb_tag_viewprev(awesome_config *awesomeconf,
int screen,
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
int i;
int firsttag = -1;
for(i = awesomeconf->screens[screen].ntags - 1; i >= 0; i--)
2007-09-05 20:15:00 +02:00
{
if(firsttag < 0 && awesomeconf->screens[screen].tags[i].selected)
2007-09-05 20:15:00 +02:00
firsttag = i;
awesomeconf->screens[screen].tags[i].selected = False;
2007-09-05 20:15:00 +02:00
}
if(--firsttag < 0)
firsttag = awesomeconf->screens[screen].ntags - 1;
awesomeconf->screens[screen].tags[firsttag].selected = True;
saveawesomeprops(awesomeconf, screen);
arrange(awesomeconf, screen);
2007-09-05 20:15:00 +02:00
}
2007-10-15 13:56:24 +02:00
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99