awesome/tag.c

326 lines
8.4 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>
#include "layout.h"
#include "tag.h"
2007-10-15 17:20:17 +02:00
#include "tab.h"
#include "util.h"
2007-09-05 20:15:00 +02:00
/** This function returns the index of
* the tag given un argument in *tags
* \param tag_to_find tag name
2007-09-24 15:37:52 +02:00
* \param tags tag list
* \param ntags number of tags in tag list
2007-09-05 20:15:00 +02:00
* \return index of tag
*/
static int
2007-09-24 15:37:52 +02:00
idxoftag(const char *tag_to_find, Tag *tags, int ntags)
2007-09-05 20:15:00 +02:00
{
int i;
if(!tag_to_find)
return 0;
for(i = 0; i < ntags; i++)
2007-09-24 15:37:52 +02:00
if(!a_strcmp(tags[i].name, tag_to_find))
2007-09-05 20:15:00 +02:00
return i;
return 0;
}
void
2007-09-10 12:06:54 +02:00
applyrules(Client * c, awesome_config *awesomeconf)
2007-09-05 20:15:00 +02:00
{
2007-09-07 11:26:27 +02:00
int i, j, len = 0;
2007-09-05 20:15:00 +02:00
regmatch_t tmp;
Bool matched = False;
XClassHint ch = { 0, 0 };
2007-09-07 11:26:27 +02:00
char *prop;
XGetClassHint(c->display, c->win, &ch);
len = a_strlen(ch.res_class) + a_strlen(ch.res_name) + a_strlen(c->name);
2007-09-07 11:26:27 +02:00
prop = p_new(char, len + 3);
2007-09-05 20:15:00 +02:00
/* rule matching */
snprintf(prop, len + 3, "%s:%s:%s",
2007-09-05 20:15:00 +02:00
ch.res_class ? ch.res_class : "", ch.res_name ? ch.res_name : "", c->name);
2007-09-10 12:06:54 +02:00
for(i = 0; i < awesomeconf->nrules; i++)
2007-10-15 12:40:45 +02:00
if(awesomeconf->rules[i].propregex && !regexec(awesomeconf->rules[i].propregex, prop, 1, &tmp, 0))
2007-09-05 20:15:00 +02:00
{
2007-09-10 12:06:54 +02:00
c->isfloating = awesomeconf->rules[i].isfloating;
2007-10-15 12:40:45 +02:00
for(j = 0; awesomeconf->rules[i].tagregex && j < awesomeconf->ntags; j++)
if(!regexec(awesomeconf->rules[i].tagregex, awesomeconf->tags[j].name, 1, &tmp, 0))
2007-09-05 20:15:00 +02:00
{
matched = True;
c->tags[j] = True;
}
else
c->tags[j] = False;
2007-09-05 20:15:00 +02:00
}
2007-09-07 11:26:27 +02:00
p_delete(&prop);
2007-09-05 20:15:00 +02:00
if(ch.res_class)
XFree(ch.res_class);
if(ch.res_name)
XFree(ch.res_name);
if(!matched)
2007-09-10 12:06:54 +02:00
for(i = 0; i < awesomeconf->ntags; i++)
2007-09-24 15:37:52 +02:00
c->tags[i] = awesomeconf->tags[i].selected;
2007-09-05 20:15:00 +02:00
}
void
2007-09-10 17:05:42 +02:00
compileregs(Rule * rules, int nrules)
2007-09-05 20:15:00 +02:00
{
int i;
regex_t *reg;
2007-09-10 17:05:42 +02:00
for(i = 0; i < nrules; i++)
2007-09-05 20:15:00 +02:00
{
2007-09-10 17:05:42 +02:00
if(rules[i].prop)
2007-09-05 20:15:00 +02:00
{
reg = p_new(regex_t, 1);
2007-09-10 17:05:42 +02:00
if(regcomp(reg, rules[i].prop, REG_EXTENDED))
2007-09-05 20:15:00 +02:00
p_delete(&reg);
else
2007-10-15 12:40:45 +02:00
rules[i].propregex = reg;
2007-09-05 20:15:00 +02:00
}
2007-09-10 17:05:42 +02:00
if(rules[i].tags)
2007-09-05 20:15:00 +02:00
{
reg = p_new(regex_t, 1);
2007-09-10 17:05:42 +02:00
if(regcomp(reg, rules[i].tags, REG_EXTENDED))
2007-09-05 20:15:00 +02:00
p_delete(&reg);
else
2007-10-15 12:40:45 +02:00
rules[i].tagregex = reg;
2007-09-05 20:15:00 +02:00
}
}
}
/** Returns True if a client is tagged
* with one of the tags
2007-09-05 20:15:00 +02:00
* \param c Client
* \param tags tag to check
* \param ntags number of tags in *tags
2007-09-05 20:15:00 +02:00
* \return True or False
*/
Bool
2007-09-24 15:37:52 +02:00
isvisible(Client * c, int screen, Tag * tags, int ntags)
2007-09-05 20:15:00 +02:00
{
int i;
2007-10-15 16:27:48 +02:00
if(c->screen != screen || !c->tab.isvisible)
2007-09-26 18:56:58 +02:00
return False;
2007-09-05 20:15:00 +02:00
for(i = 0; i < ntags; i++)
2007-09-26 18:56:58 +02:00
if(c->tags[i] && tags[i].selected)
2007-09-05 20:15:00 +02:00
return True;
return False;
}
/** Tag selected window with tag
* \param arg Tag name
* \ingroup ui_callback
*/
void
2007-10-11 23:32:29 +02:00
uicb_tag(awesome_config *awesomeconf,
2007-09-12 18:11:27 +02:00
const char *arg)
2007-09-05 20:15:00 +02:00
{
int i;
2007-10-11 23:12:05 +02:00
if(!*awesomeconf->client_sel)
2007-09-05 20:15:00 +02:00
return;
2007-09-10 12:06:54 +02:00
for(i = 0; i < awesomeconf->ntags; i++)
2007-10-11 23:12:05 +02:00
(*awesomeconf->client_sel)->tags[i] = arg == NULL;
2007-09-10 12:06:54 +02:00
i = idxoftag(arg, awesomeconf->tags, awesomeconf->ntags);
if(i >= 0 && i < awesomeconf->ntags)
2007-10-11 23:12:05 +02:00
(*awesomeconf->client_sel)->tags[i] = True;
saveprops(*awesomeconf->client_sel, awesomeconf->ntags);
2007-10-15 18:23:05 +02:00
arrange(awesomeconf);
2007-09-05 20:15:00 +02:00
}
/** Toggle floating state of a client
* \param arg unused
* \ingroup ui_callback
*/
void
2007-10-11 23:32:29 +02:00
uicb_togglefloating(awesome_config * awesomeconf,
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
2007-10-11 23:12:05 +02:00
if(!*awesomeconf->client_sel)
2007-09-05 20:15:00 +02:00
return;
2007-10-11 23:12:05 +02:00
(*awesomeconf->client_sel)->isfloating = !(*awesomeconf->client_sel)->isfloating;
resize(*awesomeconf->client_sel,
(*awesomeconf->client_sel)->rx,
(*awesomeconf->client_sel)->ry,
(*awesomeconf->client_sel)->rw,
(*awesomeconf->client_sel)->rh,
awesomeconf, True);
2007-10-15 17:20:17 +02:00
client_untab(*awesomeconf->client_sel);
2007-10-11 23:12:05 +02:00
saveprops(*awesomeconf->client_sel, awesomeconf->ntags);
2007-10-15 18:23:05 +02:00
arrange(awesomeconf);
2007-09-05 20:15:00 +02:00
}
/** Toggle tag view
* \param arg Tag name
* \ingroup ui_callback
*/
void
2007-10-11 23:32:29 +02:00
uicb_toggletag(awesome_config *awesomeconf,
2007-09-05 20:15:00 +02:00
const char *arg)
{
unsigned int i;
int j;
2007-10-11 23:12:05 +02:00
if(!*awesomeconf->client_sel)
2007-09-05 20:15:00 +02:00
return;
2007-09-10 12:06:54 +02:00
i = idxoftag(arg, awesomeconf->tags, awesomeconf->ntags);
2007-10-11 23:12:05 +02:00
(*awesomeconf->client_sel)->tags[i] = !(*awesomeconf->client_sel)->tags[i];
for(j = 0; j < awesomeconf->ntags && !(*awesomeconf->client_sel)->tags[j]; j++);
2007-09-10 12:06:54 +02:00
if(j == awesomeconf->ntags)
2007-10-11 23:12:05 +02:00
(*awesomeconf->client_sel)->tags[i] = True;
saveprops(*awesomeconf->client_sel, awesomeconf->ntags);
2007-10-15 18:23:05 +02:00
arrange(awesomeconf);
2007-09-05 20:15:00 +02:00
}
/** Add a tag to viewed tags
* \param arg Tag name
* \ingroup ui_callback
*/
void
2007-10-11 23:32:29 +02:00
uicb_toggleview(awesome_config *awesomeconf,
2007-09-05 20:15:00 +02:00
const char *arg)
{
unsigned int i;
int j;
2007-09-10 12:06:54 +02:00
i = idxoftag(arg, awesomeconf->tags, awesomeconf->ntags);
2007-09-24 15:37:52 +02:00
awesomeconf->tags[i].selected = !awesomeconf->tags[i].selected;
for(j = 0; j < awesomeconf->ntags && !awesomeconf->tags[j].selected; j++);
2007-09-10 12:06:54 +02:00
if(j == awesomeconf->ntags)
2007-09-24 15:37:52 +02:00
awesomeconf->tags[i].selected = True;
saveawesomeprops(awesomeconf);
2007-10-15 18:23:05 +02:00
arrange(awesomeconf);
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-10-11 23:32:29 +02:00
uicb_view(awesome_config *awesomeconf,
2007-09-05 20:15:00 +02:00
const char *arg)
{
int i;
2007-09-10 12:06:54 +02:00
for(i = 0; i < awesomeconf->ntags; i++)
2007-09-05 20:15:00 +02:00
{
2007-09-24 15:37:52 +02:00
awesomeconf->tags[i].was_selected = awesomeconf->tags[i].selected;
awesomeconf->tags[i].selected = arg == NULL;
2007-09-05 20:15:00 +02:00
}
2007-09-10 12:06:54 +02:00
i = idxoftag(arg, awesomeconf->tags, awesomeconf->ntags);
2007-09-10 12:06:54 +02:00
if(i >= 0 && i < awesomeconf->ntags)
2007-09-24 15:37:52 +02:00
awesomeconf->tags[i].selected = True;
saveawesomeprops(awesomeconf);
2007-10-15 18:23:05 +02:00
arrange(awesomeconf);
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,
const char *arg __attribute__ ((unused)))
2007-09-05 20:15:00 +02:00
{
int i;
Bool t;
2007-09-10 12:06:54 +02:00
for(i = 0; i < awesomeconf->ntags; i++)
2007-09-05 20:15:00 +02:00
{
2007-09-24 15:37:52 +02:00
t = awesomeconf->tags[i].selected;
awesomeconf->tags[i].selected = awesomeconf->tags[i].was_selected;
awesomeconf->tags[i].was_selected = t;
2007-09-05 20:15:00 +02:00
}
2007-10-15 18:23:05 +02:00
arrange(awesomeconf);
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,
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
int i;
int firsttag = -1;
2007-09-10 12:06:54 +02:00
for(i = 0; i < awesomeconf->ntags; i++)
2007-09-05 20:15:00 +02:00
{
2007-09-24 15:37:52 +02:00
if(firsttag < 0 && awesomeconf->tags[i].selected)
2007-09-05 20:15:00 +02:00
firsttag = i;
2007-09-24 15:37:52 +02:00
awesomeconf->tags[i].selected = False;
2007-09-05 20:15:00 +02:00
}
2007-09-10 12:06:54 +02:00
if(++firsttag >= awesomeconf->ntags)
2007-09-05 20:15:00 +02:00
firsttag = 0;
2007-09-24 15:37:52 +02:00
awesomeconf->tags[firsttag].selected = True;
saveawesomeprops(awesomeconf);
2007-10-15 18:23:05 +02:00
arrange(awesomeconf);
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,
2007-09-05 20:15:00 +02:00
const char *arg __attribute__ ((unused)))
{
int i;
int firsttag = -1;
2007-09-10 12:06:54 +02:00
for(i = awesomeconf->ntags - 1; i >= 0; i--)
2007-09-05 20:15:00 +02:00
{
2007-09-24 15:37:52 +02:00
if(firsttag < 0 && awesomeconf->tags[i].selected)
2007-09-05 20:15:00 +02:00
firsttag = i;
2007-09-24 15:37:52 +02:00
awesomeconf->tags[i].selected = False;
2007-09-05 20:15:00 +02:00
}
if(--firsttag < 0)
2007-09-10 12:06:54 +02:00
firsttag = awesomeconf->ntags - 1;
2007-09-24 15:37:52 +02:00
awesomeconf->tags[firsttag].selected = True;
saveawesomeprops(awesomeconf);
2007-10-15 18:23:05 +02:00
arrange(awesomeconf);
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