2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2007-09-12 14:29:51 +02:00
|
|
|
* client.h - client management header
|
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
|
|
|
|
2007-09-10 16:11:57 +02:00
|
|
|
#ifndef AWESOME_CLIENT_H
|
|
|
|
#define AWESOME_CLIENT_H
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-09-24 14:40:40 +02:00
|
|
|
#include "common.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2007-10-17 17:09:26 +02:00
|
|
|
Client * get_client_bywin(Client *, Window);
|
2007-10-17 12:10:17 +02:00
|
|
|
inline void client_attach(Client **, Client *);
|
|
|
|
inline void client_detach(Client **, Client *);
|
2007-10-17 15:09:59 +02:00
|
|
|
void client_reattach_after(Client *, Client *);
|
2007-10-31 11:37:38 +01:00
|
|
|
Bool loadprops(Client *, int );
|
2007-10-26 19:50:39 +02:00
|
|
|
void client_ban(Client *);
|
2007-12-11 20:56:51 +01:00
|
|
|
void focus(Client *, Bool, awesome_config *, int);
|
|
|
|
void client_manage(Window, XWindowAttributes *, awesome_config *, int);
|
2007-10-29 15:24:10 +01:00
|
|
|
void client_resize(Client *, int, int, int, int, awesome_config *, Bool, Bool);
|
2007-10-26 19:50:39 +02:00
|
|
|
void client_unban(Client *);
|
2007-10-26 19:49:21 +02:00
|
|
|
void client_unmanage(Client *, long, awesome_config *);
|
2007-10-23 16:37:36 +02:00
|
|
|
inline void updatesizehints(Client *);
|
|
|
|
void updatetitle(Client *);
|
|
|
|
void saveprops(Client *, int);
|
2007-11-27 16:47:03 +01:00
|
|
|
void tag_client_with_rules(Client *, awesome_config *);
|
2007-10-23 16:37:36 +02:00
|
|
|
|
2007-11-14 17:50:16 +01:00
|
|
|
UICB_PROTO(uicb_client_kill);
|
2007-11-14 17:51:22 +01:00
|
|
|
UICB_PROTO(uicb_client_moveresize);
|
2007-11-14 17:52:49 +01:00
|
|
|
UICB_PROTO(uicb_client_settrans);
|
2007-09-24 14:40:40 +02:00
|
|
|
UICB_PROTO(uicb_setborder);
|
2007-11-14 17:54:22 +01:00
|
|
|
UICB_PROTO(uicb_client_swapnext);
|
|
|
|
UICB_PROTO(uicb_client_swapprev);
|
2007-09-05 20:15:00 +02:00
|
|
|
|
|
|
|
#endif
|
2007-10-15 13:56:24 +02:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|