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 "layout.h"
|
|
|
|
#include "tag.h"
|
2007-09-15 15:16:53 +02:00
|
|
|
#include "util.h"
|
2007-11-13 21:40:33 +01:00
|
|
|
#include "rules.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-09-06 19:05:26 +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
|
2007-09-06 19:05:26 +02:00
|
|
|
* \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-11-10 10:45:32 +01:00
|
|
|
if(c->screen != screen)
|
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;
|
|
|
|
}
|
|
|
|
|
2007-11-14 10:00:05 +01:00
|
|
|
void
|
|
|
|
tag_client_with_current_selected(Client *c, awesome_config *awesomeconf)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
p_realloc(&c->tags, awesomeconf->ntags);
|
|
|
|
for(i = 0; i < awesomeconf->ntags; i++)
|
|
|
|
c->tags[i] = awesomeconf->tags[i].selected;
|
|
|
|
}
|
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,
|
|
|
|
const char *arg)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
|
|
|
int i;
|
2007-10-26 23:19:13 +02:00
|
|
|
Client *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;
|
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-09-10 12:06:54 +02:00
|
|
|
for(i = 0; i < awesomeconf->ntags; i++)
|
2007-10-26 23:19:13 +02:00
|
|
|
sel->tags[i] = arg == NULL;
|
2007-11-11 11:30:07 +01:00
|
|
|
|
2007-11-16 21:56:31 +01:00
|
|
|
if(arg)
|
|
|
|
{
|
|
|
|
i = atoi(arg) - 1;
|
|
|
|
if(i >= 0 && i < awesomeconf->ntags)
|
|
|
|
sel->tags[i] = True;
|
|
|
|
}
|
2007-11-11 11:30:07 +01:00
|
|
|
|
2007-10-26 23:19:13 +02:00
|
|
|
saveprops(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-11-14 17:59:56 +01:00
|
|
|
uicb_client_togglefloating(awesome_config * awesomeconf,
|
2007-09-05 20:15:00 +02:00
|
|
|
const char *arg __attribute__ ((unused)))
|
|
|
|
{
|
2007-10-26 23:19:13 +02:00
|
|
|
Client *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;
|
|
|
|
|
|
|
|
if(!sel)
|
2007-09-05 20:15:00 +02:00
|
|
|
return;
|
2007-10-25 13:57:02 +02:00
|
|
|
|
2007-10-26 23:19:13 +02:00
|
|
|
sel->isfloating = !sel->isfloating;
|
2007-10-25 13:57:02 +02:00
|
|
|
|
2007-11-09 19:22:42 +01:00
|
|
|
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);
|
2007-10-25 13:57:02 +02:00
|
|
|
|
2007-10-26 23:19:13 +02:00
|
|
|
saveprops(sel, awesomeconf->ntags);
|
2007-10-15 18:23:05 +02:00
|
|
|
arrange(awesomeconf);
|
2007-09-05 20:15:00 +02:00
|
|
|
}
|
|
|
|
|
2007-11-14 18:03:51 +01:00
|
|
|
/** Toggle a tag on client
|
2007-09-05 20:15:00 +02:00
|
|
|
* \param arg Tag name
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
|
|
|
void
|
2007-11-14 18:03:51 +01:00
|
|
|
uicb_client_toggletag(awesome_config *awesomeconf,
|
|
|
|
const char *arg)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-10-26 23:19:13 +02:00
|
|
|
Client *sel = get_current_tag(awesomeconf->tags, awesomeconf->ntags)->client_sel;
|
2007-11-16 22:07:58 +01:00
|
|
|
int i, j;
|
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;
|
|
|
|
|
|
|
|
if(i >= awesomeconf->ntags)
|
|
|
|
return;
|
|
|
|
|
|
|
|
sel->tags[i] = !sel->tags[i];
|
|
|
|
|
|
|
|
/* check that there's at least one tag selected for this client*/
|
|
|
|
for(j = 0; j < awesomeconf->ntags && !sel->tags[j]; j++);
|
|
|
|
if(j == awesomeconf->ntags)
|
|
|
|
sel->tags[i] = True;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
for(i = 0; i < awesomeconf->ntags; i++)
|
|
|
|
sel->tags[i] = True;
|
|
|
|
|
2007-10-26 23:19:13 +02:00
|
|
|
saveprops(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-11-14 18:01:46 +01:00
|
|
|
uicb_tag_toggleview(awesome_config *awesomeconf,
|
|
|
|
const char *arg)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2007-11-16 22:03:26 +01:00
|
|
|
int i, j;
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-11-11 11:30:07 +01:00
|
|
|
i = arg ? atoi(arg) - 1: 0;
|
2007-11-16 22:03:26 +01:00
|
|
|
|
|
|
|
if(i >= awesomeconf->ntags)
|
|
|
|
return;
|
|
|
|
|
2007-09-24 15:37:52 +02:00
|
|
|
awesomeconf->tags[i].selected = !awesomeconf->tags[i].selected;
|
2007-11-16 22:03:26 +01:00
|
|
|
|
|
|
|
/* check that there's at least one tag selected */
|
2007-09-24 15:37:52 +02:00
|
|
|
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;
|
2007-11-16 22:03:26 +01:00
|
|
|
|
2007-10-15 18:14:43 +02:00
|
|
|
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-11-14 18:05:05 +01:00
|
|
|
uicb_tag_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-10-16 22:33:10 +02:00
|
|
|
|
2007-11-11 11:30:07 +01:00
|
|
|
if(arg)
|
|
|
|
{
|
|
|
|
i = atoi(arg) - 1;
|
|
|
|
if(i >= 0 && i < awesomeconf->ntags)
|
|
|
|
awesomeconf->tags[i].selected = True;
|
|
|
|
}
|
2007-10-16 22:33:10 +02:00
|
|
|
|
2007-10-15 18:14:43 +02:00
|
|
|
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,
|
2007-09-20 22:24:52 +02:00
|
|
|
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;
|
2007-10-15 18:14:43 +02:00
|
|
|
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;
|
2007-10-15 18:14:43 +02:00
|
|
|
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
|