rename ban() and unban() to client_*()

This commit is contained in:
Julien Danjou 2007-10-26 19:50:39 +02:00
parent f330cb303c
commit c817b07d9a
4 changed files with 7 additions and 7 deletions

View File

@ -63,7 +63,7 @@ cleanup(awesome_config *awesomeconf)
while(*awesomeconf->clients)
{
unban(*awesomeconf->clients);
client_unban(*awesomeconf->clients);
client_unmanage(*awesomeconf->clients, NormalState, awesomeconf);
}

View File

@ -112,7 +112,7 @@ updatetitle(Client *c)
* \param c the client
*/
void
ban(Client * c)
client_ban(Client * c)
{
XUnmapWindow(c->display, c->win);
window_setstate(c->display, c->win, IconicState);
@ -477,7 +477,7 @@ saveprops(Client * c, int ntags)
}
void
unban(Client *c)
client_unban(Client *c)
{
XMapWindow(c->display, c->win);
window_setstate(c->display, c->win, NormalState);

View File

@ -28,11 +28,11 @@ Client * get_client_bywin(Client *, Window);
inline void client_attach(Client **, Client *);
inline void client_detach(Client **, Client *);
void client_reattach_after(Client *, Client *);
void ban(Client *);
void client_ban(Client *);
void focus(Client *, Bool, awesome_config *);
void client_manage(Window, XWindowAttributes *, awesome_config *);
void client_resize(Client *, int, int, int, int, awesome_config *, Bool);
void unban(Client *);
void client_unban(Client *);
void client_unmanage(Client *, long, awesome_config *);
inline void updatesizehints(Client *);
void updatetitle(Client *);

View File

@ -58,10 +58,10 @@ arrange(awesome_config *awesomeconf)
for(c = *awesomeconf->clients; c; c = c->next)
{
if(isvisible(c, awesomeconf->screen, awesomeconf->tags, awesomeconf->ntags))
unban(c);
client_unban(c);
/* we don't touch other screens windows */
else if(c->screen == awesomeconf->screen)
ban(c);
client_ban(c);
}
if ((curtag = get_current_tag_number(awesomeconf->tags, awesomeconf->ntags)) >= 0)
{