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
|
|
|
*
|
2009-08-18 12:00:25 +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-10-02 17:54:07 +02:00
|
|
|
#ifndef AWESOME_OBJECTS_CLIENT_H
|
|
|
|
#define AWESOME_OBJECTS_CLIENT_H
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-08-21 17:52:44 +02:00
|
|
|
#include "stack.h"
|
2009-09-30 16:04:42 +02:00
|
|
|
#include "objects/window.h"
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2009-03-06 14:01:29 +01:00
|
|
|
#define CLIENT_SELECT_INPUT_EVENT_MASK (XCB_EVENT_MASK_STRUCTURE_NOTIFY \
|
|
|
|
| XCB_EVENT_MASK_PROPERTY_CHANGE \
|
|
|
|
| XCB_EVENT_MASK_FOCUS_CHANGE)
|
|
|
|
|
2010-07-30 20:54:20 +02:00
|
|
|
#define FRAME_SELECT_INPUT_EVENT_MASK (XCB_EVENT_MASK_STRUCTURE_NOTIFY \
|
|
|
|
| XCB_EVENT_MASK_ENTER_WINDOW \
|
|
|
|
| XCB_EVENT_MASK_LEAVE_WINDOW \
|
2012-10-14 17:20:24 +02:00
|
|
|
| XCB_EVENT_MASK_EXPOSURE \
|
|
|
|
| XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT \
|
|
|
|
| XCB_EVENT_MASK_POINTER_MOTION \
|
|
|
|
| XCB_EVENT_MASK_BUTTON_PRESS \
|
|
|
|
| XCB_EVENT_MASK_BUTTON_RELEASE)
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
CLIENT_TITLEBAR_TOP = 0,
|
|
|
|
CLIENT_TITLEBAR_RIGHT = 1,
|
|
|
|
CLIENT_TITLEBAR_BOTTOM = 2,
|
|
|
|
CLIENT_TITLEBAR_LEFT = 3,
|
|
|
|
/* This is not a valid value, but the number of valid values */
|
|
|
|
CLIENT_TITLEBAR_COUNT = 4
|
|
|
|
} client_titlebar_t;
|
2010-07-30 20:54:20 +02:00
|
|
|
|
2009-04-17 16:19:55 +02:00
|
|
|
/** client_t type */
|
|
|
|
struct client_t
|
|
|
|
{
|
2009-09-30 16:04:42 +02:00
|
|
|
WINDOW_OBJECT_HEADER
|
2011-03-27 16:21:49 +02:00
|
|
|
/** Client logical screen */
|
|
|
|
screen_t *screen;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** Client name */
|
2009-08-25 16:39:10 +02:00
|
|
|
char *name, *alt_name, *icon_name, *alt_icon_name;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** WM_CLASS stuff */
|
|
|
|
char *class, *instance;
|
|
|
|
/** Window geometry */
|
|
|
|
area_t geometry;
|
2014-03-15 23:09:33 +01:00
|
|
|
/** Startup ID */
|
|
|
|
char *startup_id;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** True if the client is sticky */
|
2009-08-17 17:02:45 +02:00
|
|
|
bool sticky;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** Has urgency hint */
|
2009-08-17 17:02:45 +02:00
|
|
|
bool urgent;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** True if the client is hidden */
|
2009-08-17 17:02:45 +02:00
|
|
|
bool hidden;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** True if the client is minimized */
|
2009-08-17 17:02:45 +02:00
|
|
|
bool minimized;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** True if the client is fullscreen */
|
2009-08-17 17:02:45 +02:00
|
|
|
bool fullscreen;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** True if the client is maximized horizontally */
|
2009-08-17 17:02:45 +02:00
|
|
|
bool maximized_horizontal;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** True if the client is maximized vertically */
|
2009-08-17 17:02:45 +02:00
|
|
|
bool maximized_vertical;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** True if the client is above others */
|
2009-08-17 17:02:45 +02:00
|
|
|
bool above;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** True if the client is below others */
|
2009-08-17 17:02:45 +02:00
|
|
|
bool below;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** True if the client is modal */
|
2009-08-17 17:02:45 +02:00
|
|
|
bool modal;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** True if the client is on top */
|
2009-08-17 17:02:45 +02:00
|
|
|
bool ontop;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** True if a client is banned to a position outside the viewport.
|
|
|
|
* Note that the geometry remains unchanged and that the window is still mapped.
|
|
|
|
*/
|
|
|
|
bool isbanned;
|
|
|
|
/** true if the client must be skipped from task bar client list */
|
2009-08-17 17:02:45 +02:00
|
|
|
bool skip_taskbar;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** True if the client cannot have focus */
|
|
|
|
bool nofocus;
|
2015-05-21 17:30:51 +02:00
|
|
|
/** True if the client is focusable. Overrides nofocus, and can be set
|
|
|
|
* from Lua. */
|
|
|
|
bool focusable;
|
|
|
|
bool focusable_set;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** Window of the group leader */
|
2009-08-17 17:02:45 +02:00
|
|
|
xcb_window_t group_window;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** Window holding command needed to start it (session management related) */
|
2009-08-17 17:02:45 +02:00
|
|
|
xcb_window_t leader_window;
|
2009-06-24 17:59:19 +02:00
|
|
|
/** Client's WM_PROTOCOLS property */
|
2011-04-27 06:49:56 +02:00
|
|
|
xcb_icccm_get_wm_protocols_reply_t protocols;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** Key bindings */
|
2009-08-14 16:46:35 +02:00
|
|
|
key_array_t keys;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** Icon */
|
2010-08-20 13:56:34 +02:00
|
|
|
cairo_surface_t *icon;
|
2014-12-07 14:09:35 +01:00
|
|
|
/** True if we ever got an icon from _NET_WM_ICON */
|
|
|
|
bool have_ewmh_icon;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** Size hints */
|
|
|
|
xcb_size_hints_t size_hints;
|
2014-03-15 11:56:57 +01:00
|
|
|
/** The visualtype that c->window uses */
|
|
|
|
xcb_visualtype_t *visualtype;
|
|
|
|
/** Do we honor the client's size hints? */
|
2009-04-17 16:19:55 +02:00
|
|
|
bool size_hints_honor;
|
2009-08-10 11:36:11 +02:00
|
|
|
/** Machine the client is running on. */
|
|
|
|
char *machine;
|
2009-08-10 11:53:45 +02:00
|
|
|
/** Role of the client */
|
|
|
|
char *role;
|
2009-08-10 11:40:06 +02:00
|
|
|
/** Client pid */
|
|
|
|
uint32_t pid;
|
2009-04-17 16:19:55 +02:00
|
|
|
/** Window it is transient for */
|
|
|
|
client_t *transient_for;
|
2012-10-14 17:20:24 +02:00
|
|
|
/** Titelbar information */
|
|
|
|
struct {
|
|
|
|
/** The size of this bar. */
|
|
|
|
uint16_t size;
|
|
|
|
/** The drawable for this bar. */
|
|
|
|
drawable_t *drawable;
|
|
|
|
} titlebar[CLIENT_TITLEBAR_COUNT];
|
2009-04-17 16:19:55 +02:00
|
|
|
};
|
|
|
|
|
2008-10-21 17:33:16 +02:00
|
|
|
ARRAY_FUNCS(client_t *, client, DO_NOTHING)
|
2009-06-09 12:51:25 +02:00
|
|
|
|
|
|
|
/** Client class */
|
|
|
|
lua_class_t client_class;
|
|
|
|
|
2009-08-17 15:52:41 +02:00
|
|
|
LUA_OBJECT_FUNCS(client_class, client_t, client)
|
2008-10-21 17:33:16 +02:00
|
|
|
|
2011-03-27 20:07:14 +02:00
|
|
|
bool client_maybevisible(client_t *);
|
2008-06-05 09:25:38 +02:00
|
|
|
client_t * client_getbywin(xcb_window_t);
|
2010-07-30 22:07:24 +02:00
|
|
|
client_t * client_getbyframewin(xcb_window_t);
|
|
|
|
|
2008-04-11 11:35:11 +02:00
|
|
|
void client_ban(client_t *);
|
2009-09-27 09:21:04 +02:00
|
|
|
void client_ban_unfocus(client_t *);
|
2008-04-11 11:35:11 +02:00
|
|
|
void client_unban(client_t *);
|
2014-03-16 20:15:02 +01:00
|
|
|
void client_manage(xcb_window_t, xcb_get_geometry_reply_t *, xcb_get_window_attributes_reply_t *);
|
2013-03-10 12:13:32 +01:00
|
|
|
bool client_resize(client_t *, area_t, bool);
|
2010-10-07 12:05:43 +02:00
|
|
|
void client_unmanage(client_t *, bool);
|
2008-04-11 11:35:11 +02:00
|
|
|
void client_kill(client_t *);
|
2009-08-17 17:02:45 +02:00
|
|
|
void client_set_sticky(lua_State *, int, bool);
|
|
|
|
void client_set_above(lua_State *, int, bool);
|
|
|
|
void client_set_below(lua_State *, int, bool);
|
|
|
|
void client_set_modal(lua_State *, int, bool);
|
|
|
|
void client_set_ontop(lua_State *, int, bool);
|
|
|
|
void client_set_fullscreen(lua_State *, int, bool);
|
2014-03-14 04:14:03 +01:00
|
|
|
void client_set_maximized(lua_State *, int, bool);
|
2009-08-17 17:02:45 +02:00
|
|
|
void client_set_maximized_horizontal(lua_State *, int, bool);
|
|
|
|
void client_set_maximized_vertical(lua_State *, int, bool);
|
|
|
|
void client_set_minimized(lua_State *, int, bool);
|
|
|
|
void client_set_urgent(lua_State *, int, bool);
|
|
|
|
void client_set_pid(lua_State *, int, uint32_t);
|
2009-08-24 10:05:50 +02:00
|
|
|
void client_set_role(lua_State *, int, char *);
|
|
|
|
void client_set_machine(lua_State *, int, char *);
|
|
|
|
void client_set_icon_name(lua_State *, int, char *);
|
2009-08-25 16:39:10 +02:00
|
|
|
void client_set_alt_icon_name(lua_State *, int, char *);
|
2009-08-17 17:02:45 +02:00
|
|
|
void client_set_class_instance(lua_State *, int, const char *, const char *);
|
|
|
|
void client_set_type(lua_State *L, int, window_type_t);
|
|
|
|
void client_set_transient_for(lua_State *L, int, client_t *);
|
2009-08-24 10:05:50 +02:00
|
|
|
void client_set_name(lua_State *L, int, char *);
|
2009-08-25 16:39:10 +02:00
|
|
|
void client_set_alt_name(lua_State *L, int, char *);
|
2009-08-17 17:02:45 +02:00
|
|
|
void client_set_group_window(lua_State *, int, xcb_window_t);
|
2014-12-07 14:09:35 +01:00
|
|
|
void client_set_icon(client_t *, cairo_surface_t *);
|
|
|
|
void client_set_icon_from_pixmaps(client_t *, xcb_pixmap_t, xcb_pixmap_t);
|
2009-08-17 17:02:45 +02:00
|
|
|
void client_set_skip_taskbar(lua_State *, int, bool);
|
2009-04-07 14:20:22 +02:00
|
|
|
void client_focus(client_t *);
|
2014-11-06 19:48:35 +01:00
|
|
|
bool client_focus_update(client_t *);
|
2009-06-24 18:10:55 +02:00
|
|
|
bool client_hasproto(client_t *, xcb_atom_t);
|
2009-08-03 15:57:10 +02:00
|
|
|
void client_ignore_enterleave_events(void);
|
|
|
|
void client_restore_enterleave_events(void);
|
2014-03-16 15:29:11 +01:00
|
|
|
void client_refresh_partial(client_t *, int16_t, int16_t, uint16_t, uint16_t);
|
2009-08-17 17:02:45 +02:00
|
|
|
void client_class_setup(lua_State *);
|
2012-10-29 10:20:03 +01:00
|
|
|
void client_send_configure(client_t *);
|
2012-10-14 17:20:24 +02:00
|
|
|
drawable_t *client_get_drawable(client_t *, int, int);
|
|
|
|
drawable_t *client_get_drawable_offset(client_t *, int *, int *);
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-11-12 11:25:04 +01:00
|
|
|
/** Put client on top of the stack.
|
2008-08-21 17:52:44 +02:00
|
|
|
* \param c The client to raise.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
client_raise(client_t *c)
|
|
|
|
{
|
2008-12-04 15:16:38 +01:00
|
|
|
client_t *tc = c;
|
|
|
|
int counter = 0;
|
|
|
|
|
2013-03-16 22:25:54 +01:00
|
|
|
/* Find number of transient layers. */
|
|
|
|
for(counter = 0; tc->transient_for; counter++)
|
2008-12-04 15:16:38 +01:00
|
|
|
tc = tc->transient_for;
|
|
|
|
|
|
|
|
/* Push them in reverse order. */
|
|
|
|
for(; counter > 0; counter--)
|
|
|
|
{
|
|
|
|
tc = c;
|
|
|
|
for(int i = 0; i < counter; i++)
|
|
|
|
tc = tc->transient_for;
|
2009-04-17 23:26:26 +02:00
|
|
|
stack_client_append(tc);
|
2008-12-04 15:16:38 +01:00
|
|
|
}
|
|
|
|
|
2008-08-21 17:52:44 +02:00
|
|
|
/* Push c on top of the stack. */
|
2009-04-17 23:26:26 +02:00
|
|
|
stack_client_append(c);
|
2008-08-21 17:52:44 +02:00
|
|
|
}
|
|
|
|
|
2008-09-03 14:59:18 +02:00
|
|
|
/** Check if a client has fixed size.
|
|
|
|
* \param c A client.
|
|
|
|
* \return A boolean value, true if the client has a fixed size.
|
|
|
|
*/
|
|
|
|
static inline bool
|
|
|
|
client_isfixed(client_t *c)
|
|
|
|
{
|
2011-04-27 06:49:56 +02:00
|
|
|
return (c->size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MAX_SIZE
|
|
|
|
&& c->size_hints.flags & XCB_ICCCM_SIZE_HINT_P_MIN_SIZE
|
2008-12-09 11:38:29 +01:00
|
|
|
&& c->size_hints.max_width == c->size_hints.min_width
|
2008-12-25 17:22:47 +01:00
|
|
|
&& c->size_hints.max_height == c->size_hints.min_height
|
|
|
|
&& c->size_hints.max_width
|
2010-03-03 00:07:10 +01:00
|
|
|
&& c->size_hints.max_height
|
|
|
|
&& c->size_hints_honor);
|
2008-09-03 14:59:18 +02:00
|
|
|
}
|
|
|
|
|
2014-11-06 19:48:35 +01:00
|
|
|
/** Returns true if a client is tagged with one of the tags of the
|
2009-02-08 13:48:15 +01:00
|
|
|
* specified screen and is not hidden. Note that "banned" clients are included.
|
2008-11-20 22:11:13 +01:00
|
|
|
* \param c The client to check.
|
|
|
|
* \param screen Virtual screen number.
|
|
|
|
* \return true if the client is visible, false otherwise.
|
|
|
|
*/
|
|
|
|
static inline bool
|
2011-03-27 20:07:14 +02:00
|
|
|
client_isvisible(client_t *c)
|
2008-11-20 22:11:13 +01:00
|
|
|
{
|
2011-03-27 20:07:14 +02:00
|
|
|
return (!c->hidden && !c->minimized && client_maybevisible(c));
|
2008-11-20 22:11:13 +01:00
|
|
|
}
|
|
|
|
|
2007-09-05 20:15:00 +02:00
|
|
|
#endif
|
2011-09-11 16:50:01 +02:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|