2008-01-26 17:58:01 +01:00
|
|
|
/*
|
|
|
|
* swindow.c - simple window handling functions
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/xcb_aux.h>
|
2008-01-26 17:58:01 +01:00
|
|
|
|
|
|
|
#include "common/swindow.h"
|
|
|
|
|
2008-05-03 15:17:46 +02:00
|
|
|
/** Create a simple window.
|
|
|
|
* \param conn Connection ref.
|
|
|
|
* \param phys_screen Physical screen number.
|
|
|
|
* \param x x coordinate.
|
|
|
|
* \param y y coordinate.
|
|
|
|
* \param w Width.
|
|
|
|
* \param h Height.
|
|
|
|
* \param border_width Window border width.
|
|
|
|
* \return A pointer to a newly allocated simple window, which must be deleted
|
|
|
|
* with simplewindow_delete().
|
2008-03-01 11:25:04 +01:00
|
|
|
*/
|
2008-04-09 19:41:28 +02:00
|
|
|
simple_window_t *
|
2008-03-21 16:50:17 +01:00
|
|
|
simplewindow_new(xcb_connection_t *conn, int phys_screen, int x, int y,
|
2008-01-26 17:58:01 +01:00
|
|
|
unsigned int w, unsigned int h,
|
|
|
|
unsigned int border_width)
|
|
|
|
{
|
2008-04-09 19:41:28 +02:00
|
|
|
simple_window_t *sw;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_screen_t *s = xcb_aux_get_screen(conn, phys_screen);
|
|
|
|
uint32_t create_win_val[3];
|
2008-04-09 19:40:32 +02:00
|
|
|
const uint32_t gc_mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND;
|
|
|
|
const uint32_t gc_values[2] = { s->black_pixel, s->white_pixel };
|
|
|
|
/* The default GC is just a newly created associated to the root
|
|
|
|
* window */
|
|
|
|
xcb_drawable_t gc_draw = s->root;
|
2008-01-26 17:58:01 +01:00
|
|
|
|
2008-04-09 19:41:28 +02:00
|
|
|
sw = p_new(simple_window_t, 1);
|
2008-01-26 17:58:01 +01:00
|
|
|
|
|
|
|
sw->geometry.x = x;
|
|
|
|
sw->geometry.y = y;
|
|
|
|
sw->geometry.width = w;
|
|
|
|
sw->geometry.height = h;
|
2008-03-21 16:50:17 +01:00
|
|
|
sw->connection = conn;
|
2008-03-14 13:14:21 +01:00
|
|
|
sw->phys_screen = phys_screen;
|
2008-01-26 17:58:01 +01:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
create_win_val[0] = XCB_BACK_PIXMAP_PARENT_RELATIVE;
|
|
|
|
create_win_val[1] = 1;
|
|
|
|
create_win_val[2] = XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
|
|
|
|
XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY | XCB_EVENT_MASK_ENTER_WINDOW |
|
|
|
|
XCB_EVENT_MASK_LEAVE_WINDOW | XCB_EVENT_MASK_STRUCTURE_NOTIFY |
|
|
|
|
XCB_EVENT_MASK_BUTTON_PRESS | XCB_EVENT_MASK_EXPOSURE;
|
|
|
|
|
|
|
|
sw->window = xcb_generate_id(conn);
|
2008-03-27 16:05:37 +01:00
|
|
|
xcb_create_window(conn, s->root_depth, sw->window, s->root, x, y, w, h,
|
|
|
|
border_width, XCB_COPY_FROM_PARENT, s->root_visual,
|
2008-03-21 16:50:17 +01:00
|
|
|
XCB_CW_BACK_PIXMAP | XCB_CW_OVERRIDE_REDIRECT | XCB_CW_EVENT_MASK,
|
|
|
|
create_win_val);
|
|
|
|
|
|
|
|
sw->drawable = xcb_generate_id(conn);
|
2008-03-27 16:05:37 +01:00
|
|
|
xcb_create_pixmap(conn, s->root_depth, sw->drawable, s->root, w, h);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-04-09 19:40:32 +02:00
|
|
|
sw->gc = xcb_generate_id(sw->connection);
|
|
|
|
xcb_create_gc(sw->connection, sw->gc, gc_draw, gc_mask, gc_values);
|
|
|
|
|
2008-05-03 15:17:46 +02:00
|
|
|
sw->border_width = border_width;
|
2008-05-03 11:23:25 +02:00
|
|
|
|
2008-01-26 17:58:01 +01:00
|
|
|
return sw;
|
|
|
|
}
|
|
|
|
|
2008-05-03 15:17:46 +02:00
|
|
|
/** Move a simple window.
|
|
|
|
* \param sw The simple window to move.
|
|
|
|
* \param x New x coordinate.
|
|
|
|
* \param y New y coordinate.
|
2008-03-01 11:25:04 +01:00
|
|
|
*/
|
2008-03-21 16:50:17 +01:00
|
|
|
void
|
2008-04-09 19:41:28 +02:00
|
|
|
simplewindow_move(simple_window_t *sw, int x, int y)
|
2008-01-26 17:58:01 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
const uint32_t move_win_vals[] = { x, y };
|
|
|
|
|
2008-01-26 17:58:01 +01:00
|
|
|
sw->geometry.x = x;
|
|
|
|
sw->geometry.y = y;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_configure_window(sw->connection, sw->window,
|
|
|
|
XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y,
|
|
|
|
move_win_vals);
|
2008-01-26 17:58:01 +01:00
|
|
|
}
|
|
|
|
|
2008-05-03 15:17:46 +02:00
|
|
|
/** Resize a simple window.
|
|
|
|
* \param sw The simple_window_t to resize.
|
|
|
|
* \param w New width.
|
|
|
|
* \param h New height.
|
2008-03-14 12:54:35 +01:00
|
|
|
*/
|
2008-03-21 16:50:17 +01:00
|
|
|
void
|
2008-04-09 19:41:28 +02:00
|
|
|
simplewindow_resize(simple_window_t *sw, unsigned int w, unsigned int h)
|
2008-03-14 12:54:35 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_screen_t *s = xcb_aux_get_screen(sw->connection, sw->phys_screen);
|
|
|
|
const uint32_t resize_win_vals[] = { w, h };
|
|
|
|
|
2008-03-14 12:54:35 +01:00
|
|
|
sw->geometry.width = w;
|
|
|
|
sw->geometry.height = h;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_free_pixmap(sw->connection, sw->drawable);
|
|
|
|
sw->drawable = xcb_generate_id(sw->connection);
|
2008-03-27 16:05:37 +01:00
|
|
|
xcb_create_pixmap(sw->connection, s->root_depth, sw->drawable, s->root, w, h);
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_configure_window(sw->connection, sw->window,
|
|
|
|
XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
|
|
|
|
resize_win_vals);
|
2008-03-14 12:54:35 +01:00
|
|
|
}
|
|
|
|
|
2008-01-26 17:58:01 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|