2008-03-15 13:59:04 +01:00
|
|
|
/*
|
|
|
|
* titlebar.h - titlebar management header
|
|
|
|
*
|
|
|
|
* Copyright © 2008 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AWESOME_TITLEBAR_H
|
|
|
|
#define AWESOME_TITLEBAR_H
|
|
|
|
|
2008-09-24 12:13:21 +02:00
|
|
|
#include "wibox.h"
|
2008-03-15 13:59:04 +01:00
|
|
|
|
2008-09-21 10:13:21 +02:00
|
|
|
client_t * client_getbytitlebar(wibox_t *);
|
2008-06-04 11:50:21 +02:00
|
|
|
client_t * client_getbytitlebarwin(xcb_window_t);
|
2008-06-18 11:22:54 +02:00
|
|
|
void titlebar_geometry_compute(client_t *, area_t, area_t *);
|
2008-06-04 11:50:21 +02:00
|
|
|
void titlebar_init(client_t *);
|
2008-09-21 20:39:23 +02:00
|
|
|
void titlebar_client_detach(client_t *);
|
|
|
|
void titlebar_client_attach(client_t *, wibox_t *);
|
2008-11-20 22:11:13 +01:00
|
|
|
void titlebar_set_visible(wibox_t *t, bool visible);
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2008-09-21 20:39:23 +02:00
|
|
|
int luaA_titlebar_newindex(lua_State *, wibox_t *, awesome_token_t);
|
2008-06-04 13:36:13 +02:00
|
|
|
|
2008-08-26 16:02:43 +02:00
|
|
|
/** Add the titlebar geometry and border to a geometry.
|
2008-06-18 14:04:24 +02:00
|
|
|
* \param t The titlebar
|
2008-06-18 17:05:10 +02:00
|
|
|
* \param border The client border size.
|
2008-06-18 14:04:24 +02:00
|
|
|
* \param geometry The geometry
|
|
|
|
* \return A new geometry bigger if the titlebar is visible.
|
2008-05-20 15:39:47 +02:00
|
|
|
*/
|
|
|
|
static inline area_t
|
2008-09-21 10:13:21 +02:00
|
|
|
titlebar_geometry_add(wibox_t *t, int border, area_t geometry)
|
2008-05-20 15:39:47 +02:00
|
|
|
{
|
2008-12-10 21:40:56 +01:00
|
|
|
/* We need to add titlebar border to the total width and height.
|
|
|
|
* This can then be substracted/added to the witdh/height/x/y.
|
|
|
|
* In this case the border is included, because it belongs to a different window.
|
|
|
|
*/
|
2008-09-20 21:24:16 +02:00
|
|
|
if(t)
|
2008-06-03 18:41:54 +02:00
|
|
|
switch(t->position)
|
|
|
|
{
|
|
|
|
case Top:
|
2008-12-12 00:01:43 +01:00
|
|
|
geometry.y -= t->sw.geometry.height;
|
|
|
|
geometry.height += t->sw.geometry.height;
|
2008-06-03 18:41:54 +02:00
|
|
|
break;
|
|
|
|
case Bottom:
|
2008-12-12 00:01:43 +01:00
|
|
|
geometry.height += t->sw.geometry.height;
|
2008-06-03 18:41:54 +02:00
|
|
|
break;
|
|
|
|
case Left:
|
2008-12-12 00:01:43 +01:00
|
|
|
geometry.x -= t->sw.geometry.width;
|
|
|
|
geometry.width += t->sw.geometry.width;
|
2008-06-03 18:41:54 +02:00
|
|
|
break;
|
|
|
|
case Right:
|
2008-12-12 00:01:43 +01:00
|
|
|
geometry.width += t->sw.geometry.width;
|
2008-06-03 18:41:54 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2008-12-10 21:40:56 +01:00
|
|
|
|
|
|
|
/* Adding a border to a client only changes width and height, x and y are including border. */
|
|
|
|
geometry.width += 2 * border;
|
|
|
|
geometry.height += 2 * border;
|
2008-05-20 15:39:47 +02:00
|
|
|
|
|
|
|
return geometry;
|
|
|
|
}
|
|
|
|
|
2008-08-26 16:02:43 +02:00
|
|
|
/** Remove the titlebar geometry and border width to a geometry.
|
2008-06-18 14:04:24 +02:00
|
|
|
* \param t The titlebar.
|
2008-06-18 17:05:10 +02:00
|
|
|
* \param border The client border size.
|
2008-06-18 14:04:24 +02:00
|
|
|
* \param geometry The geometry.
|
|
|
|
* \return A new geometry smaller if the titlebar is visible.
|
2008-05-20 15:39:47 +02:00
|
|
|
*/
|
|
|
|
static inline area_t
|
2008-09-21 10:13:21 +02:00
|
|
|
titlebar_geometry_remove(wibox_t *t, int border, area_t geometry)
|
2008-05-20 15:39:47 +02:00
|
|
|
{
|
2008-12-10 21:40:56 +01:00
|
|
|
/* We need to add titlebar border to the total width and height.
|
|
|
|
* This can then be substracted/added to the witdh/height/x/y.
|
|
|
|
* In this case the border is included, because it belongs to a different window.
|
|
|
|
*/
|
2008-09-20 21:24:16 +02:00
|
|
|
if(t)
|
2008-06-03 18:41:54 +02:00
|
|
|
switch(t->position)
|
|
|
|
{
|
|
|
|
case Top:
|
2008-12-12 00:01:43 +01:00
|
|
|
geometry.y += t->sw.geometry.height;
|
|
|
|
unsigned_subtract(geometry.height, t->sw.geometry.height);
|
2008-06-03 18:41:54 +02:00
|
|
|
break;
|
|
|
|
case Bottom:
|
2008-12-12 00:01:43 +01:00
|
|
|
unsigned_subtract(geometry.height, t->sw.geometry.height);
|
2008-06-03 18:41:54 +02:00
|
|
|
break;
|
|
|
|
case Left:
|
2008-12-12 00:01:43 +01:00
|
|
|
geometry.x += t->sw.geometry.width;
|
|
|
|
unsigned_subtract(geometry.width, t->sw.geometry.width);
|
2008-06-03 18:41:54 +02:00
|
|
|
break;
|
|
|
|
case Right:
|
2008-12-12 00:01:43 +01:00
|
|
|
unsigned_subtract(geometry.width, t->sw.geometry.width);
|
2008-06-03 18:41:54 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2008-12-10 21:40:56 +01:00
|
|
|
|
|
|
|
/* Adding a border to a client only changes width and height, x and y are including border. */
|
2008-12-12 00:01:43 +01:00
|
|
|
unsigned_subtract(geometry.width, 2*border);
|
|
|
|
unsigned_subtract(geometry.height, 2*border);
|
2008-03-15 13:59:04 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
return geometry;
|
|
|
|
}
|
2008-03-15 13:59:04 +01:00
|
|
|
|
2008-11-25 17:01:06 +01:00
|
|
|
/** Update the titlebar geometry for a client.
|
2008-06-18 14:04:24 +02:00
|
|
|
* \param c The client.
|
2008-06-18 11:22:54 +02:00
|
|
|
*/
|
|
|
|
static inline void
|
2008-11-25 17:01:06 +01:00
|
|
|
titlebar_update_geometry(client_t *c)
|
2008-06-18 11:22:54 +02:00
|
|
|
{
|
|
|
|
area_t geom;
|
|
|
|
|
2008-09-20 21:24:16 +02:00
|
|
|
if(!c->titlebar)
|
2008-06-18 11:22:54 +02:00
|
|
|
return;
|
|
|
|
|
2008-11-25 17:01:06 +01:00
|
|
|
titlebar_geometry_compute(c, c->geometry, &geom);
|
2008-11-20 22:11:13 +01:00
|
|
|
/* Can't actually move titlebar right now, but we will resize it. */
|
|
|
|
if(c->isbanned)
|
|
|
|
{
|
|
|
|
area_t moved_geom = geom;
|
|
|
|
|
|
|
|
/* Make sure it stays outside the viewport. */
|
|
|
|
moved_geom.x = - geom.width;
|
|
|
|
moved_geom.y = - geom.height;
|
|
|
|
|
|
|
|
wibox_moveresize(c->titlebar, moved_geom);
|
|
|
|
|
|
|
|
/* Store the real geometry. */
|
|
|
|
c->titlebar->sw.geometry = geom;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
wibox_moveresize(c->titlebar, geom);
|
2008-06-18 11:22:54 +02:00
|
|
|
}
|
|
|
|
|
2008-03-15 13:59:04 +01:00
|
|
|
#endif
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|