2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2009-05-10 16:51:20 +02:00
|
|
|
* banning.c - client banning management
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
2009-05-10 16:51:20 +02:00
|
|
|
* Copyright © 2007-2009 Julien Danjou <julien@danjou.info>
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2009-05-10 16:51:20 +02:00
|
|
|
#include "banning.h"
|
2009-09-27 09:22:03 +02:00
|
|
|
#include "client.h"
|
2009-03-26 22:13:42 +01:00
|
|
|
#include "titlebar.h"
|
2009-09-27 09:22:03 +02:00
|
|
|
#include "screen.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2009-05-10 16:51:20 +02:00
|
|
|
/** Reban windows following current selected tags.
|
2009-04-17 16:14:09 +02:00
|
|
|
* \param screen The screen to arrange.
|
2007-10-03 00:33:16 +02:00
|
|
|
*/
|
2009-09-21 11:41:51 +02:00
|
|
|
void
|
2009-09-27 09:22:03 +02:00
|
|
|
banning_need_update(screen_t *screen)
|
2007-09-05 20:15:00 +02:00
|
|
|
{
|
2009-09-27 09:22:03 +02:00
|
|
|
/* We update the complete banning only once per main loop to avoid
|
|
|
|
* excessive updates... */
|
|
|
|
screen->need_lazy_banning = true;
|
|
|
|
|
|
|
|
/* But if a client will be banned in our next update we unfocus it now. */
|
|
|
|
foreach(_c, globalconf.clients)
|
|
|
|
{
|
|
|
|
client_t *c = *_c;
|
|
|
|
|
|
|
|
/* we don't touch other screens windows */
|
|
|
|
if(!client_isvisible(c, screen) && c->screen == screen)
|
|
|
|
client_ban_unfocus(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
reban(screen_t *screen)
|
|
|
|
{
|
|
|
|
if (!screen->need_lazy_banning)
|
|
|
|
return;
|
|
|
|
|
|
|
|
screen->need_lazy_banning = false;
|
|
|
|
|
2009-08-03 15:57:10 +02:00
|
|
|
client_ignore_enterleave_events();
|
2008-04-09 18:32:41 +02:00
|
|
|
|
2009-04-09 17:17:10 +02:00
|
|
|
foreach(_c, globalconf.clients)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
2009-04-09 17:17:10 +02:00
|
|
|
client_t *c = *_c;
|
2009-03-06 14:01:29 +01:00
|
|
|
|
2009-03-26 22:13:42 +01:00
|
|
|
/* Restore titlebar before client, so geometry is ok again. */
|
|
|
|
if(titlebar_isvisible(c, screen))
|
|
|
|
titlebar_unban(c->titlebar);
|
|
|
|
|
2009-02-08 13:48:15 +01:00
|
|
|
if(client_isvisible(c, screen))
|
2007-10-26 19:50:39 +02:00
|
|
|
client_unban(c);
|
2009-04-13 15:32:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Some people disliked the short flicker of background, so we first unban everything.
|
|
|
|
* Afterwards we ban everything we don't want. This should avoid that. */
|
|
|
|
foreach(_c, globalconf.clients)
|
|
|
|
{
|
|
|
|
client_t *c = *_c;
|
|
|
|
|
|
|
|
if(!titlebar_isvisible(c, screen) && c->screen == screen)
|
|
|
|
titlebar_ban(c->titlebar);
|
|
|
|
|
2007-09-17 13:45:13 +02:00
|
|
|
/* we don't touch other screens windows */
|
2009-04-13 15:32:41 +02:00
|
|
|
if(!client_isvisible(c, screen) && c->screen == screen)
|
2007-10-26 19:50:39 +02:00
|
|
|
client_ban(c);
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
2007-10-26 23:19:13 +02:00
|
|
|
|
2009-08-03 15:57:10 +02:00
|
|
|
client_restore_enterleave_events();
|
2008-06-09 21:43:09 +02:00
|
|
|
}
|
|
|
|
|
2009-09-27 09:22:03 +02:00
|
|
|
/** Check all screens if they need to rebanned
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
banning_refresh(void)
|
|
|
|
{
|
|
|
|
foreach(screen, globalconf.screens)
|
|
|
|
reban(screen);
|
|
|
|
}
|
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|