awesome/client.h

54 lines
2.1 KiB
C
Raw Normal View History

/*
2007-09-12 14:29:51 +02:00
* client.h - client management header
*
* 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
#ifndef AWESOME_CLIENT_H
#define AWESOME_CLIENT_H
2007-09-05 20:15:00 +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-16 22:40:02 +02:00
Client * get_client_bywin(Client **, Window);
void grabbuttons(Client *, Bool, Bool, KeySym, unsigned int);
2007-10-11 21:50:32 +02:00
inline void attach(Client **, Client *);
inline void detach(Client **, Client *);
2007-09-05 20:15:00 +02:00
void ban(Client *); /* bans c */
void configure(Client *); /* send synthetic configure event */
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 *);
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 *);
UICB_PROTO(uicb_killclient);
UICB_PROTO(uicb_moveresize);
UICB_PROTO(uicb_settrans);
UICB_PROTO(uicb_setborder);
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