/*
 * 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

#include "structs.h"

client_t * client_getbytitlebar(titlebar_t *);
client_t * client_getbytitlebarwin(xcb_window_t);
void titlebar_geometry_compute(client_t *, area_t, area_t *);
void titlebar_draw(client_t *);
void titlebar_init(client_t *);
void titlebar_refresh(void);

int luaA_titlebar_userdata_new(lua_State *, titlebar_t *);

/** Add the titlebar geometry to a geometry.
 * \param t The titlebar
 * \param border The client border size.
 * \param geometry The geometry
 * \return A new geometry bigger if the titlebar is visible.
 */
static inline area_t
titlebar_geometry_add(titlebar_t *t, int border, area_t geometry)
{
    if(t && t->sw)
        switch(t->position)
        {
          case Top:
            geometry.y -= t->sw->geometry.height + 2 * t->border.width - border;
            geometry.height += t->sw->geometry.height + 2 * t->border.width - border;
            break;
          case Bottom:
            geometry.height += t->sw->geometry.height + 2 * t->border.width - border;
            break;
          case Left:
            geometry.x -= t->sw->geometry.width + 2 * t->border.width - border;
            geometry.width += t->sw->geometry.width + 2 * t->border.width - border;
            break;
          case Right:
            geometry.width += t->sw->geometry.width + 2 * t->border.width - border;
            break;
          default:
            break;
        }

    return geometry;
}

/** Remove the titlebar geometry to a geometry.
 * \param t The titlebar.
 * \param border The client border size.
 * \param geometry The geometry.
 * \return A new geometry smaller if the titlebar is visible.
 */
static inline area_t
titlebar_geometry_remove(titlebar_t *t, int border, area_t geometry)
{
    if(t && t->sw)
        switch(t->position)
        {
          case Top:
            geometry.y += t->sw->geometry.height + 2 * t->border.width - border;
            geometry.height -= t->sw->geometry.height + 2 * t->border.width - border;
            break;
          case Bottom:
            geometry.height -= t->sw->geometry.height + 2 * t->border.width - border;
            break;
          case Left:
            geometry.x += t->sw->geometry.width + 2 * t->border.width - border;
            geometry.width -= t->sw->geometry.width + 2 * t->border.width - border;
            break;
          case Right:
            geometry.width -= t->sw->geometry.width + 2 * t->border.width - border;
            break;
          default:
            break;
        }

    return geometry;
}

/** Update the titlebar geometry for a floating client.
 * \param c The client.
 */
static inline void
titlebar_update_geometry_floating(client_t *c)
{
    area_t geom;

    if(!c->titlebar || !c->titlebar->sw)
        return;

    titlebar_geometry_compute(c, c->geometry, &geom);
    simplewindow_moveresize(c->titlebar->sw, geom.x, geom.y, geom.width, geom.height);
    c->titlebar->need_update = true;
}

/** Update the titlebar geometry for a tiled client.
 * \param c The client.
 * \param geometry The geometry the client will receive.
 */
static inline void
titlebar_update_geometry_tiled(client_t *c, area_t geometry)
{
    area_t geom;

    if(!c->titlebar || !c->titlebar->sw)
        return;

    titlebar_geometry_compute(c, geometry, &geom);
    simplewindow_moveresize(c->titlebar->sw, geom.x, geom.y, geom.width, geom.height);
    c->titlebar->need_update = true;
}

#endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80