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-09-17 13:32:20 +02:00
|
|
|
/** Mask shorthands, used in event.c and client.c */
|
|
|
|
#define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
|
|
|
|
|
2007-10-17 17:09:26 +02:00
|
|
|
Client * get_client_bywin(Client *, Window);
|
2007-10-11 06:46:28 +02:00
|
|
|
void grabbuttons(Client *, Bool, Bool, KeySym, unsigned int);
|
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-09-05 20:15:00 +02:00
|
|
|
void ban(Client *); /* bans c */
|
2007-10-17 17:29:21 +02:00
|
|
|
void window_configure(Display *, Window, int, int, int, int, int);
|
2007-10-15 18:25:29 +02:00
|
|
|
void focus(Client *, Bool, awesome_config *);
|
2007-10-10 14:09:36 +02:00
|
|
|
void manage(Display *, Window, XWindowAttributes *, awesome_config *);
|
2007-09-28 11:30:51 +02:00
|
|
|
void resize(Client *, int, int, int, int, awesome_config *, Bool); /* resize with given coordinates c */
|
2007-09-05 20:15:00 +02:00
|
|
|
void unban(Client *); /* unbans c */
|
2007-10-10 14:09:36 +02:00
|
|
|
void unmanage(Client *, long, awesome_config *); /* unmanage c */
|
2007-10-01 20:44:02 +02:00
|
|
|
inline void updatesizehints(Client *); /* update the size hint variables of c */
|
2007-09-05 20:15:00 +02:00
|
|
|
void updatetitle(Client *); /* update the name of c */
|
|
|
|
void saveprops(Client * c, int); /* saves client properties */
|
2007-09-13 15:57:35 +02:00
|
|
|
void set_shape(Client *);
|
2007-09-24 14:40:40 +02:00
|
|
|
UICB_PROTO(uicb_killclient);
|
|
|
|
UICB_PROTO(uicb_moveresize);
|
|
|
|
UICB_PROTO(uicb_settrans);
|
|
|
|
UICB_PROTO(uicb_setborder);
|
2007-09-25 12:41:36 +02:00
|
|
|
UICB_PROTO(uicb_swapnext);
|
|
|
|
UICB_PROTO(uicb_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
|