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
|
|
|
*
|
2008-01-02 16:59:43 +01:00
|
|
|
* Copyright © 2007-2008 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
|
|
|
|
2007-09-10 16:11:57 +02:00
|
|
|
#ifndef AWESOME_CLIENT_H
|
|
|
|
#define AWESOME_CLIENT_H
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2008-10-24 20:38:29 +02:00
|
|
|
#include "mouse.h"
|
2008-08-21 17:52:44 +02:00
|
|
|
#include "stack.h"
|
2008-12-02 17:13:28 +01:00
|
|
|
#include "common/list.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_ENTER_WINDOW \
|
|
|
|
| XCB_EVENT_MASK_LEAVE_WINDOW \
|
|
|
|
| XCB_EVENT_MASK_FOCUS_CHANGE)
|
|
|
|
|
2009-04-10 15:23:55 +02:00
|
|
|
client_t * luaA_client_checkudata(lua_State *, int);
|
2008-10-21 17:33:16 +02:00
|
|
|
|
|
|
|
ARRAY_FUNCS(client_t *, client, DO_NOTHING)
|
2009-04-10 15:23:55 +02:00
|
|
|
LUA_OBJECT_FUNCS(client_t, client, "client")
|
2008-10-21 17:33:16 +02:00
|
|
|
|
2008-08-21 15:36:54 +02:00
|
|
|
#define client_need_arrange(c) \
|
|
|
|
do { \
|
|
|
|
if(!globalconf.screens[(c)->screen].need_arrange \
|
2009-02-08 13:48:15 +01:00
|
|
|
&& client_isvisible(c, (c)->screen)) \
|
2008-08-21 15:36:54 +02:00
|
|
|
globalconf.screens[(c)->screen].need_arrange = true; \
|
|
|
|
} while(0)
|
|
|
|
|
2008-08-11 11:57:57 +02:00
|
|
|
bool client_maybevisible(client_t *, int);
|
2008-06-05 09:25:38 +02:00
|
|
|
client_t * client_getbywin(xcb_window_t);
|
2008-04-11 11:35:11 +02:00
|
|
|
void client_ban(client_t *);
|
|
|
|
void client_unban(client_t *);
|
2008-12-29 12:26:01 +01:00
|
|
|
void client_manage(xcb_window_t, xcb_get_geometry_reply_t *, int, bool);
|
2008-06-18 13:58:31 +02:00
|
|
|
area_t client_geometry_hints(client_t *, area_t);
|
2009-02-08 13:48:17 +01:00
|
|
|
bool client_resize(client_t *, area_t, bool);
|
2009-03-30 19:40:01 +02:00
|
|
|
void client_update_strut_positions(int);
|
2008-04-11 11:35:11 +02:00
|
|
|
void client_unmanage(client_t *);
|
|
|
|
void client_kill(client_t *);
|
2008-08-21 16:29:53 +02:00
|
|
|
void client_setsticky(client_t *, bool);
|
2008-08-21 17:52:44 +02:00
|
|
|
void client_setabove(client_t *, bool);
|
|
|
|
void client_setbelow(client_t *, bool);
|
|
|
|
void client_setmodal(client_t *, bool);
|
|
|
|
void client_setontop(client_t *, bool);
|
|
|
|
void client_setfullscreen(client_t *, bool);
|
2008-11-25 11:54:38 +01:00
|
|
|
void client_setmaxhoriz(client_t *, bool);
|
|
|
|
void client_setmaxvert(client_t *, bool);
|
2008-09-18 13:51:10 +02:00
|
|
|
void client_setminimized(client_t *, bool);
|
2008-06-11 08:12:38 +02:00
|
|
|
void client_setborder(client_t *, int);
|
2009-02-11 18:41:58 +01:00
|
|
|
void client_seturgent(client_t *, bool);
|
2009-04-07 14:20:22 +02:00
|
|
|
void client_focus(client_t *);
|
|
|
|
void client_focus_update(client_t *);
|
|
|
|
void client_unfocus(client_t *);
|
|
|
|
void client_unfocus_update(client_t *);
|
2009-04-10 18:15:48 +02:00
|
|
|
void client_stack_refresh(void);
|
2007-09-05 20:15:00 +02:00
|
|
|
|
2009-04-10 18:15:48 +02:00
|
|
|
static inline void
|
|
|
|
client_stack(void)
|
|
|
|
{
|
|
|
|
globalconf.client_need_stack_refresh = true;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
/* Find number of transient layers. */
|
|
|
|
for(counter = 0; tc->transient_for; counter++)
|
|
|
|
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;
|
|
|
|
stack_client_push(tc);
|
|
|
|
}
|
|
|
|
|
2008-08-21 17:52:44 +02:00
|
|
|
/* Push c on top of the stack. */
|
|
|
|
stack_client_push(c);
|
|
|
|
client_stack();
|
|
|
|
}
|
|
|
|
|
2008-11-12 11:25:04 +01:00
|
|
|
/** Put client on the end of the stack.
|
|
|
|
* \param c The client to lower.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
client_lower(client_t *c)
|
|
|
|
{
|
|
|
|
stack_client_append(c);
|
2008-12-04 15:16:38 +01:00
|
|
|
|
|
|
|
/* Traverse all transient layers. */
|
|
|
|
for(client_t *tc = c->transient_for; tc; tc = tc->transient_for)
|
|
|
|
stack_client_append(tc);
|
|
|
|
|
2008-11-12 11:25:04 +01:00
|
|
|
client_stack();
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2008-12-09 11:38:29 +01:00
|
|
|
return (c->size_hints.flags & XCB_SIZE_HINT_P_MAX_SIZE
|
|
|
|
&& c->size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE
|
|
|
|
&& 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
|
|
|
|
&& c->size_hints.max_height);
|
2008-09-03 14:59:18 +02:00
|
|
|
}
|
|
|
|
|
2009-02-08 13:48:15 +01:00
|
|
|
/** Returns true if a client is tagged with one of the tags of the
|
|
|
|
* 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
|
|
|
|
client_isvisible(client_t *c, int screen)
|
|
|
|
{
|
2009-02-08 13:48:15 +01:00
|
|
|
return (!c->ishidden && !c->isminimized && client_maybevisible(c, screen));
|
2008-11-20 22:11:13 +01:00
|
|
|
}
|
|
|
|
|
2008-09-03 22:15:14 +02:00
|
|
|
/** Check if a client has strut information.
|
|
|
|
* \param c A client.
|
|
|
|
* \return A boolean value, true if the client has strut information.
|
|
|
|
*/
|
|
|
|
static inline bool
|
|
|
|
client_hasstrut(client_t *c)
|
|
|
|
{
|
|
|
|
return (c->strut.left
|
|
|
|
|| c->strut.right
|
|
|
|
|| c->strut.top
|
|
|
|
|| c->strut.bottom
|
|
|
|
|| c->strut.left_start_y
|
|
|
|
|| c->strut.left_end_y
|
|
|
|
|| c->strut.right_start_y
|
|
|
|
|| c->strut.right_end_y
|
|
|
|
|| c->strut.top_start_x
|
|
|
|
|| c->strut.top_end_x
|
|
|
|
|| c->strut.bottom_start_x
|
|
|
|
|| c->strut.bottom_end_x);
|
|
|
|
}
|
|
|
|
|
2007-09-05 20:15:00 +02:00
|
|
|
#endif
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|