2007-11-13 22:57:57 +01:00
|
|
|
/*
|
|
|
|
* mouse.c - mouse managing
|
|
|
|
*
|
2008-03-15 09:10:32 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-11-13 22:57:57 +01: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-12-28 17:37:41 +01:00
|
|
|
#include <math.h>
|
|
|
|
|
2008-03-23 18:48:07 +01:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/xcb_aux.h>
|
|
|
|
|
2007-11-13 22:57:57 +01:00
|
|
|
#include "mouse.h"
|
|
|
|
#include "screen.h"
|
|
|
|
#include "tag.h"
|
|
|
|
#include "event.h"
|
2008-01-01 17:25:48 +01:00
|
|
|
#include "client.h"
|
2008-03-25 14:56:38 +01:00
|
|
|
#include "titlebar.h"
|
2007-11-13 22:57:57 +01:00
|
|
|
#include "layouts/floating.h"
|
2007-12-28 17:11:20 +01:00
|
|
|
#include "layouts/tile.h"
|
2008-03-13 09:05:34 +01:00
|
|
|
#include "common/xscreen.h"
|
2007-11-13 22:57:57 +01:00
|
|
|
|
2008-04-09 15:32:55 +02:00
|
|
|
#define MOUSEMASK (XCB_EVENT_MASK_BUTTON_PRESS \
|
|
|
|
| XCB_EVENT_MASK_BUTTON_RELEASE \
|
|
|
|
| XCB_EVENT_MASK_POINTER_MOTION)
|
2008-01-29 08:23:20 +01:00
|
|
|
|
2007-12-19 04:46:44 +01:00
|
|
|
extern AwesomeConf globalconf;
|
2007-12-16 02:45:38 +01:00
|
|
|
|
2008-04-09 15:32:55 +02:00
|
|
|
/** Snap an area to the outside of an area.
|
|
|
|
* \param geometry geometry of the area to snap
|
|
|
|
* \param snap_geometry geometry of snapping area
|
|
|
|
* \param snap snap trigger in pixel
|
|
|
|
* \return snapped geometry
|
|
|
|
*/
|
2008-03-25 15:24:45 +01:00
|
|
|
static area_t
|
|
|
|
mouse_snapclienttogeometry_outside(area_t geometry, area_t snap_geometry, int snap)
|
|
|
|
{
|
|
|
|
if(geometry.x < snap + snap_geometry.x + snap_geometry.width
|
|
|
|
&& geometry.x > snap_geometry.x + snap_geometry.width)
|
|
|
|
geometry.x = snap_geometry.x + snap_geometry.width;
|
|
|
|
else if(geometry.x + geometry.width < snap_geometry.x
|
|
|
|
&& geometry.x + geometry.width > snap_geometry.x - snap)
|
|
|
|
geometry.x = snap_geometry.x - geometry.width;
|
|
|
|
|
|
|
|
if(geometry.y < snap + snap_geometry.y + snap_geometry.height
|
|
|
|
&& geometry.y > snap_geometry.y + snap_geometry.height)
|
|
|
|
geometry.y = snap_geometry.y + snap_geometry.height;
|
|
|
|
else if(geometry.y + geometry.height < snap_geometry.y
|
|
|
|
&& geometry.y + geometry.height > snap_geometry.y - snap)
|
|
|
|
geometry.y = snap_geometry.y - geometry.height;
|
|
|
|
|
|
|
|
return geometry;
|
|
|
|
}
|
|
|
|
|
2008-04-09 15:32:55 +02:00
|
|
|
/** Snap an area to the inside of an area.
|
|
|
|
* \param geometry geometry of the area to snap
|
|
|
|
* \param snap_geometry geometry of snapping area
|
|
|
|
* \param snap snap trigger in pixel
|
|
|
|
* \return snapped geometry
|
|
|
|
*/
|
2008-03-25 15:24:45 +01:00
|
|
|
static area_t
|
|
|
|
mouse_snapclienttogeometry_inside(area_t geometry, area_t snap_geometry, int snap)
|
|
|
|
{
|
|
|
|
if(abs(geometry.x) < snap + snap_geometry.x && geometry.x > snap_geometry.x)
|
|
|
|
geometry.x = snap_geometry.x;
|
|
|
|
else if(abs((snap_geometry.x + snap_geometry.width) - (geometry.x + geometry.width))
|
|
|
|
< snap)
|
|
|
|
geometry.x = snap_geometry.x + snap_geometry.width - geometry.width;
|
|
|
|
if(abs(geometry.y) < snap + snap_geometry.y && geometry.y > snap_geometry.y)
|
|
|
|
geometry.y = snap_geometry.y;
|
|
|
|
else if(abs((snap_geometry.y + snap_geometry.height) - (geometry.y + geometry.height))
|
|
|
|
< snap)
|
|
|
|
geometry.y = snap_geometry.y + snap_geometry.height - geometry.height;
|
|
|
|
|
|
|
|
return geometry;
|
|
|
|
}
|
|
|
|
|
2008-04-09 15:32:55 +02:00
|
|
|
/** Snap a client with a futur geometry to the screen and other clients.
|
|
|
|
* \param c the client
|
|
|
|
* \param geometry geometry the client will get
|
|
|
|
* \return geometry to set to the client
|
|
|
|
*/
|
2008-03-25 14:41:06 +01:00
|
|
|
static area_t
|
2008-04-11 11:35:11 +02:00
|
|
|
mouse_snapclient(client_t *c, area_t geometry)
|
2008-03-25 14:41:06 +01:00
|
|
|
{
|
2008-04-11 11:35:11 +02:00
|
|
|
client_t *snapper;
|
2008-03-25 14:41:06 +01:00
|
|
|
int snap = globalconf.screens[c->screen].snap;
|
2008-03-25 15:24:45 +01:00
|
|
|
area_t snapper_geometry;
|
2008-03-25 14:41:06 +01:00
|
|
|
area_t screen_geometry =
|
|
|
|
screen_get_area(c->screen,
|
|
|
|
globalconf.screens[c->screen].statusbar,
|
|
|
|
&globalconf.screens[c->screen].padding);
|
|
|
|
|
2008-03-25 14:56:38 +01:00
|
|
|
geometry = titlebar_geometry_add(&c->titlebar, geometry);
|
2008-03-25 15:24:45 +01:00
|
|
|
geometry.width += 2 * c->border;
|
|
|
|
geometry.height += 2 * c->border;
|
2008-03-25 14:56:38 +01:00
|
|
|
|
2008-03-25 15:24:45 +01:00
|
|
|
geometry =
|
|
|
|
mouse_snapclienttogeometry_inside(geometry, screen_geometry, snap);
|
|
|
|
|
|
|
|
for(snapper = globalconf.clients; snapper; snapper = snapper->next)
|
|
|
|
if(snapper != c && client_isvisible(c, c->screen))
|
|
|
|
{
|
|
|
|
snapper_geometry = snapper->geometry;
|
|
|
|
snapper_geometry.width += 2 * c->border;
|
|
|
|
snapper_geometry.height += 2 * c->border;
|
|
|
|
snapper_geometry = titlebar_geometry_add(&snapper->titlebar,
|
|
|
|
snapper_geometry);
|
|
|
|
geometry =
|
|
|
|
mouse_snapclienttogeometry_outside(geometry,
|
|
|
|
snapper_geometry,
|
|
|
|
snap);
|
|
|
|
}
|
2008-03-25 14:41:06 +01:00
|
|
|
|
2008-03-25 15:24:45 +01:00
|
|
|
geometry.width -= 2 * c->border;
|
|
|
|
geometry.height -= 2 * c->border;
|
2008-03-25 14:56:38 +01:00
|
|
|
return titlebar_geometry_remove(&c->titlebar, geometry);
|
2008-03-25 14:41:06 +01:00
|
|
|
}
|
|
|
|
|
2008-04-09 15:32:55 +02:00
|
|
|
/** Redraw the resizebar
|
|
|
|
* \param ctx draw context
|
|
|
|
* \param style the style to use for drawing
|
|
|
|
* \param geometry the geometry to use for the box
|
|
|
|
* \param border the client border size
|
|
|
|
*/
|
2008-03-25 16:10:12 +01:00
|
|
|
static void
|
2008-04-09 19:41:28 +02:00
|
|
|
mouse_resizebar_draw(DrawCtx *ctx, style_t style, simple_window_t *sw, area_t geometry, int border)
|
2008-03-25 16:10:12 +01:00
|
|
|
{
|
|
|
|
area_t draw_geometry = { 0, 0, ctx->width, ctx->height, NULL, NULL };
|
2008-04-09 15:32:55 +02:00
|
|
|
char size[32];
|
2008-03-25 16:10:12 +01:00
|
|
|
|
|
|
|
snprintf(size, sizeof(size), "%dx%d+%d+%d",
|
|
|
|
geometry.x, geometry.y, geometry.width, geometry.height);
|
|
|
|
draw_text(ctx, draw_geometry, AlignCenter, style.font->height / 2, size, style);
|
|
|
|
simplewindow_move(sw,
|
|
|
|
geometry.x + ((2 * border + geometry.width) - sw->geometry.width) / 2,
|
|
|
|
geometry.y + ((2 * border + geometry.height) - sw->geometry.height) / 2);
|
2008-04-09 19:40:32 +02:00
|
|
|
simplewindow_refresh_drawable(sw);
|
2008-03-25 16:10:12 +01:00
|
|
|
}
|
|
|
|
|
2008-04-09 15:32:55 +02:00
|
|
|
/** Initialize the resizebar window.
|
|
|
|
* \param phys_screen physical screen id
|
|
|
|
* \param border border size of the client
|
|
|
|
* \param geometry client geometry
|
|
|
|
* \param style style used to draw
|
|
|
|
* \param ctx drawctx to create
|
|
|
|
*/
|
2008-04-09 19:41:28 +02:00
|
|
|
static simple_window_t *
|
2008-04-09 15:32:55 +02:00
|
|
|
mouse_resizebar_new(int phys_screen, int border, area_t geometry, style_t style, DrawCtx **ctx)
|
|
|
|
{
|
2008-04-09 19:41:28 +02:00
|
|
|
simple_window_t *sw;
|
2008-04-09 15:32:55 +02:00
|
|
|
area_t geom;
|
|
|
|
|
2008-04-23 17:44:09 +02:00
|
|
|
geom = draw_text_extents(globalconf.connection,
|
|
|
|
globalconf.default_screen,
|
|
|
|
style.font,
|
|
|
|
"0000x0000+0000+0000");
|
2008-04-09 15:32:55 +02:00
|
|
|
geom.x = geometry.x + ((2 * border + geometry.width) - geom.width) / 2;
|
|
|
|
geom.y = geometry.y + ((2 * border + geometry.height) - geom.height) / 2;
|
|
|
|
|
|
|
|
sw = simplewindow_new(globalconf.connection, phys_screen,
|
|
|
|
geom.x, geom.y,
|
|
|
|
geom.width, geom.height, 0);
|
|
|
|
|
|
|
|
*ctx = draw_context_new(globalconf.connection, sw->phys_screen,
|
|
|
|
sw->geometry.width, sw->geometry.height,
|
|
|
|
sw->drawable);
|
|
|
|
|
|
|
|
xcb_map_window(globalconf.connection, sw->window);
|
|
|
|
mouse_resizebar_draw(*ctx, style, sw, geometry, border);
|
|
|
|
|
|
|
|
return sw;
|
|
|
|
}
|
|
|
|
|
2008-04-10 23:37:22 +02:00
|
|
|
/** Move the focused window with the mouse.
|
2007-12-19 04:39:59 +01:00
|
|
|
* \param screen Screen ID
|
|
|
|
* \param arg Unused
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
2007-11-13 22:57:57 +01:00
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_client_movemouse(int screen, char *arg __attribute__ ((unused)))
|
2007-11-13 22:57:57 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
int ocx, ocy, newscreen;
|
2008-03-25 14:41:06 +01:00
|
|
|
area_t geometry;
|
2008-04-11 11:35:11 +02:00
|
|
|
client_t *c = globalconf.focus->client, *target;
|
2008-02-12 10:09:36 +01:00
|
|
|
Layout *layout = layout_get_current(screen);
|
2008-04-09 19:41:28 +02:00
|
|
|
simple_window_t *sw = NULL;
|
2008-03-25 16:10:12 +01:00
|
|
|
DrawCtx *ctx;
|
|
|
|
style_t style;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_generic_event_t *ev = NULL;
|
|
|
|
xcb_motion_notify_event_t *ev_motion = NULL;
|
|
|
|
xcb_grab_pointer_reply_t *grab_pointer_r = NULL;
|
2008-04-09 15:32:55 +02:00
|
|
|
xcb_grab_pointer_cookie_t grab_pointer_c;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_query_pointer_reply_t *query_pointer_r = NULL, *mquery_pointer_r = NULL;
|
2008-04-09 15:32:55 +02:00
|
|
|
xcb_query_pointer_cookie_t query_pointer_c;
|
2008-03-27 16:05:37 +01:00
|
|
|
xcb_screen_t *s = xcb_aux_get_screen(globalconf.connection, c->phys_screen);
|
2007-11-13 22:57:57 +01:00
|
|
|
|
2008-04-09 15:32:55 +02:00
|
|
|
if(!c)
|
2007-11-13 22:57:57 +01:00
|
|
|
return;
|
|
|
|
|
2008-04-09 15:32:55 +02:00
|
|
|
/* Send pointer requests */
|
|
|
|
grab_pointer_c = xcb_grab_pointer(globalconf.connection, false, s->root,
|
|
|
|
MOUSEMASK, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC,
|
|
|
|
s->root, globalconf.cursor[CurMove], XCB_CURRENT_TIME);
|
2008-03-28 13:00:12 +01:00
|
|
|
|
2008-04-09 15:32:55 +02:00
|
|
|
query_pointer_c = xcb_query_pointer_unchecked(globalconf.connection, s->root);
|
2008-03-25 16:10:12 +01:00
|
|
|
|
|
|
|
geometry = c->geometry;
|
|
|
|
ocx = geometry.x;
|
|
|
|
ocy = geometry.y;
|
2008-04-09 15:32:55 +02:00
|
|
|
style = globalconf.screens[c->screen].styles.focus;
|
|
|
|
|
|
|
|
/* Get responses */
|
|
|
|
if(!(grab_pointer_r = xcb_grab_pointer_reply(globalconf.connection, grab_pointer_c, NULL)))
|
|
|
|
return;
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
c->ismax = false;
|
2008-03-25 16:10:12 +01:00
|
|
|
|
2008-04-09 15:32:55 +02:00
|
|
|
p_delete(&grab_pointer_r);
|
|
|
|
|
|
|
|
query_pointer_r = xcb_query_pointer_reply(globalconf.connection, query_pointer_c, NULL);
|
2008-03-28 13:22:26 +01:00
|
|
|
|
2008-03-25 16:10:12 +01:00
|
|
|
if(c->isfloating || layout->arrange == layout_floating)
|
|
|
|
{
|
2008-04-09 15:32:55 +02:00
|
|
|
sw = mouse_resizebar_new(c->phys_screen, c->border, c->geometry, style, &ctx);
|
|
|
|
xcb_aux_sync(globalconf.connection);
|
2008-03-25 16:10:12 +01:00
|
|
|
}
|
|
|
|
|
2007-11-13 22:57:57 +01:00
|
|
|
for(;;)
|
|
|
|
{
|
2008-03-28 22:59:05 +01:00
|
|
|
/* XMaskEvent allows to retrieve only specified events from
|
|
|
|
* the queue and requeue the other events... */
|
2008-04-09 20:04:15 +02:00
|
|
|
while(ev || (ev = xcb_wait_for_event(globalconf.connection)))
|
2007-11-13 22:57:57 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
switch((ev->response_type & 0x7f))
|
2008-01-28 10:37:47 +01:00
|
|
|
{
|
2008-04-09 20:04:15 +02:00
|
|
|
case XCB_BUTTON_RELEASE:
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_ungrab_pointer(globalconf.connection, XCB_CURRENT_TIME);
|
|
|
|
if(sw)
|
|
|
|
{
|
|
|
|
draw_context_delete(&ctx);
|
|
|
|
simplewindow_delete(&sw);
|
|
|
|
}
|
|
|
|
p_delete(&query_pointer_r);
|
|
|
|
p_delete(&ev);
|
|
|
|
return;
|
2008-04-09 20:04:15 +02:00
|
|
|
case XCB_MOTION_NOTIFY:
|
2008-03-21 16:50:17 +01:00
|
|
|
if(c->isfloating || layout->arrange == layout_floating)
|
2008-01-28 11:32:55 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
ev_motion = (xcb_motion_notify_event_t *) ev;
|
|
|
|
|
|
|
|
geometry.x = ocx + (ev_motion->event_x - query_pointer_r->root_x);
|
|
|
|
geometry.y = ocy + (ev_motion->event_y - query_pointer_r->root_y);
|
|
|
|
|
|
|
|
geometry = mouse_snapclient(c, geometry);
|
2008-04-09 15:32:55 +02:00
|
|
|
c->ismoving = true;
|
|
|
|
client_resize(c, geometry, false);
|
|
|
|
c->ismoving = false;
|
2008-03-21 16:50:17 +01:00
|
|
|
|
|
|
|
if(sw)
|
|
|
|
mouse_resizebar_draw(ctx, style, sw, c->geometry, c->border);
|
|
|
|
|
2008-03-23 18:48:07 +01:00
|
|
|
xcb_aux_sync(globalconf.connection);
|
2008-01-28 11:32:55 +01:00
|
|
|
}
|
2008-03-21 16:50:17 +01:00
|
|
|
else
|
2008-01-28 11:32:55 +01:00
|
|
|
{
|
2008-04-09 15:32:55 +02:00
|
|
|
query_pointer_c = xcb_query_pointer_unchecked(globalconf.connection, s->root);
|
|
|
|
mquery_pointer_r = xcb_query_pointer_reply(globalconf.connection, query_pointer_c, NULL);
|
2008-03-21 16:50:17 +01:00
|
|
|
if((newscreen = screen_get_bycoord(globalconf.screens_info, c->screen,
|
|
|
|
mquery_pointer_r->root_x,
|
|
|
|
mquery_pointer_r->root_y)) != c->screen)
|
|
|
|
{
|
|
|
|
move_client_to_screen(c, newscreen, true);
|
|
|
|
globalconf.screens[c->screen].need_arrange = true;
|
|
|
|
globalconf.screens[newscreen].need_arrange = true;
|
|
|
|
layout_refresh();
|
|
|
|
}
|
|
|
|
if((target = client_get_bywin(globalconf.clients, mquery_pointer_r->child))
|
|
|
|
&& target != c && !target->isfloating)
|
|
|
|
{
|
|
|
|
client_list_swap(&globalconf.clients, c, target);
|
|
|
|
globalconf.screens[c->screen].need_arrange = true;
|
|
|
|
layout_refresh();
|
|
|
|
}
|
|
|
|
p_delete(&mquery_pointer_r);
|
2008-01-28 11:32:55 +01:00
|
|
|
}
|
2008-04-09 19:32:15 +02:00
|
|
|
p_delete(&ev);
|
|
|
|
while((ev = xcb_poll_for_event(globalconf.connection))
|
|
|
|
&& (ev->response_type & 0x7f) == XCB_MOTION_NOTIFY)
|
|
|
|
p_delete(&ev);
|
2008-03-21 16:50:17 +01:00
|
|
|
break;
|
2008-04-09 20:04:15 +02:00
|
|
|
default:
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_handle_event(globalconf.evenths, ev);
|
2008-04-09 19:32:15 +02:00
|
|
|
p_delete(&ev);
|
2008-03-21 16:50:17 +01:00
|
|
|
break;
|
2008-01-28 11:32:55 +01:00
|
|
|
}
|
2007-11-13 22:57:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-10 23:37:22 +02:00
|
|
|
/** Resize the focused window with the mouse.
|
2007-12-19 04:39:59 +01:00
|
|
|
* \param screen Screen ID
|
|
|
|
* \param arg Unused
|
|
|
|
* \ingroup ui_callback
|
|
|
|
*/
|
2007-11-13 22:57:57 +01:00
|
|
|
void
|
2007-12-17 01:17:54 +01:00
|
|
|
uicb_client_resizemouse(int screen, char *arg __attribute__ ((unused)))
|
2007-11-13 22:57:57 +01:00
|
|
|
{
|
2008-01-05 20:18:30 +01:00
|
|
|
int ocx = 0, ocy = 0, n;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_generic_event_t *ev = NULL;
|
|
|
|
xcb_motion_notify_event_t *ev_motion = NULL;
|
2008-04-11 11:35:11 +02:00
|
|
|
client_t *c = globalconf.focus->client;
|
2008-04-22 14:18:09 +02:00
|
|
|
tag_t **curtags = tags_get_current(screen);
|
2008-01-12 23:25:36 +01:00
|
|
|
Layout *layout = curtags[0]->layout;
|
2008-03-28 13:22:26 +01:00
|
|
|
area_t area = { 0, 0, 0, 0, NULL, NULL }, geometry = { 0, 0, 0, 0, NULL, NULL };
|
2007-12-28 17:11:20 +01:00
|
|
|
double mwfact;
|
2008-04-09 19:41:28 +02:00
|
|
|
simple_window_t *sw = NULL;
|
2008-03-25 16:10:12 +01:00
|
|
|
DrawCtx *ctx = NULL;
|
|
|
|
style_t style;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_grab_pointer_cookie_t grab_pointer_c;
|
|
|
|
xcb_grab_pointer_reply_t *grab_pointer_r = NULL;
|
2008-03-27 16:05:37 +01:00
|
|
|
xcb_screen_t *s = xcb_aux_get_screen(globalconf.connection, c->phys_screen);
|
2007-11-13 22:57:57 +01:00
|
|
|
|
2007-12-28 17:11:20 +01:00
|
|
|
/* only handle floating and tiled layouts */
|
2008-03-28 13:22:26 +01:00
|
|
|
if(!c || c->isfixed)
|
|
|
|
return;
|
|
|
|
|
|
|
|
style = globalconf.screens[c->screen].styles.focus;
|
|
|
|
|
|
|
|
if(layout->arrange == layout_floating || c->isfloating)
|
2007-12-28 17:11:20 +01:00
|
|
|
{
|
2008-03-28 13:22:26 +01:00
|
|
|
ocx = c->geometry.x;
|
|
|
|
ocy = c->geometry.y;
|
2008-03-21 16:50:17 +01:00
|
|
|
c->ismax = false;
|
2007-11-13 22:57:57 +01:00
|
|
|
|
2008-04-09 15:32:55 +02:00
|
|
|
sw = mouse_resizebar_new(c->phys_screen, c->border, c->geometry, style, &ctx);
|
2008-03-28 13:22:26 +01:00
|
|
|
}
|
|
|
|
else if (layout->arrange == layout_tile || layout->arrange == layout_tileleft
|
|
|
|
|| layout->arrange == layout_tilebottom || layout->arrange == layout_tiletop)
|
|
|
|
{
|
|
|
|
for(n = 0, c = globalconf.clients; c; c = c->next)
|
|
|
|
if(IS_TILED(c, screen))
|
|
|
|
n++;
|
2007-12-28 17:11:20 +01:00
|
|
|
|
2008-03-28 13:22:26 +01:00
|
|
|
if(n <= curtags[0]->nmaster) return;
|
|
|
|
|
|
|
|
for(c = globalconf.clients; c && !IS_TILED(c, screen); c = c->next);
|
|
|
|
if(!c) return;
|
|
|
|
|
|
|
|
area = screen_get_area(screen,
|
|
|
|
globalconf.screens[c->screen].statusbar,
|
|
|
|
&globalconf.screens[c->screen].padding);
|
2007-12-28 17:11:20 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return;
|
2007-12-27 12:50:55 +01:00
|
|
|
|
2008-03-27 16:05:37 +01:00
|
|
|
grab_pointer_c = xcb_grab_pointer(globalconf.connection, false, s->root,
|
2008-03-21 16:50:17 +01:00
|
|
|
MOUSEMASK, XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC,
|
2008-03-27 16:05:37 +01:00
|
|
|
s->root, globalconf.cursor[CurResize], XCB_CURRENT_TIME);
|
2008-03-23 18:48:07 +01:00
|
|
|
|
2008-04-09 15:32:55 +02:00
|
|
|
if(!(grab_pointer_r = xcb_grab_pointer_reply(globalconf.connection,
|
|
|
|
grab_pointer_c, NULL)))
|
2007-11-13 22:57:57 +01:00
|
|
|
return;
|
2007-12-28 17:11:20 +01:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
p_delete(&grab_pointer_r);
|
|
|
|
|
2007-12-28 17:11:20 +01:00
|
|
|
if(curtags[0]->layout->arrange == layout_tileleft)
|
2008-04-09 15:32:55 +02:00
|
|
|
xcb_warp_pointer(globalconf.connection, XCB_NONE, c->win, 0, 0, 0, 0,
|
|
|
|
0, c->geometry.height + c->border - 1);
|
2008-01-17 17:04:40 +01:00
|
|
|
else if(curtags[0]->layout->arrange == layout_tiletop)
|
2008-04-09 15:32:55 +02:00
|
|
|
xcb_warp_pointer(globalconf.connection, XCB_NONE, c->win, 0, 0, 0, 0,
|
|
|
|
c->geometry.width + c->border - 1, 0);
|
2007-12-28 17:11:20 +01:00
|
|
|
else
|
2008-04-09 15:32:55 +02:00
|
|
|
xcb_warp_pointer(globalconf.connection, XCB_NONE, c->win, 0, 0, 0, 0,
|
|
|
|
c->geometry.width + c->border - 1,
|
2008-03-21 16:50:17 +01:00
|
|
|
c->geometry.height + c->border - 1);
|
2007-12-28 17:11:20 +01:00
|
|
|
|
2008-03-23 18:48:07 +01:00
|
|
|
xcb_aux_sync(globalconf.connection);
|
|
|
|
|
2007-11-13 22:57:57 +01:00
|
|
|
for(;;)
|
|
|
|
{
|
2008-03-28 22:59:05 +01:00
|
|
|
/* XMaskEvent allows to retrieve only specified events from
|
|
|
|
* the queue and requeue the other events... */
|
2008-04-09 19:32:15 +02:00
|
|
|
while(ev || (ev = xcb_wait_for_event(globalconf.connection)))
|
2007-11-13 22:57:57 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
switch((ev->response_type & 0x7f))
|
2007-12-28 17:11:20 +01:00
|
|
|
{
|
2008-04-09 19:32:15 +02:00
|
|
|
case XCB_BUTTON_RELEASE:
|
2008-03-25 16:10:12 +01:00
|
|
|
if(sw)
|
2007-12-28 17:37:41 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
draw_context_delete(&ctx);
|
|
|
|
simplewindow_delete(&sw);
|
2007-12-28 17:37:41 +01:00
|
|
|
}
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_ungrab_pointer(globalconf.connection, XCB_CURRENT_TIME);
|
|
|
|
p_delete(&ev);
|
2008-04-09 15:32:55 +02:00
|
|
|
p_delete(&curtags);
|
2008-03-21 16:50:17 +01:00
|
|
|
return;
|
2008-04-09 19:32:15 +02:00
|
|
|
case XCB_MOTION_NOTIFY:
|
2008-03-21 16:50:17 +01:00
|
|
|
ev_motion = (xcb_motion_notify_event_t *) ev;
|
|
|
|
|
|
|
|
if(layout->arrange == layout_floating || c->isfloating)
|
|
|
|
{
|
|
|
|
if((geometry.width = ev_motion->event_x - ocx - 2 * c->border + 1) <= 0)
|
|
|
|
geometry.width = 1;
|
|
|
|
if((geometry.height = ev_motion->event_y - ocy - 2 * c->border + 1) <= 0)
|
|
|
|
geometry.height = 1;
|
|
|
|
geometry.x = c->geometry.x;
|
|
|
|
geometry.y = c->geometry.y;
|
|
|
|
client_resize(c, geometry, true);
|
|
|
|
if(sw)
|
|
|
|
mouse_resizebar_draw(ctx, style, sw, c->geometry, c->border);
|
2008-03-23 18:48:07 +01:00
|
|
|
xcb_aux_sync(globalconf.connection);
|
2008-03-21 16:50:17 +01:00
|
|
|
}
|
|
|
|
else if(layout->arrange == layout_tile || layout->arrange == layout_tileleft
|
|
|
|
|| layout->arrange == layout_tiletop || layout->arrange == layout_tilebottom)
|
|
|
|
{
|
|
|
|
if(layout->arrange == layout_tile)
|
|
|
|
mwfact = (double) (ev_motion->event_x - area.x) / area.width;
|
|
|
|
else if(curtags[0]->layout->arrange == layout_tileleft)
|
|
|
|
mwfact = 1 - (double) (ev_motion->event_x - area.x) / area.width;
|
|
|
|
else if(curtags[0]->layout->arrange == layout_tilebottom)
|
|
|
|
mwfact = (double) (ev_motion->event_y - area.y) / area.height;
|
|
|
|
else
|
|
|
|
mwfact = 1 - (double) (ev_motion->event_y - area.y) / area.height;
|
|
|
|
mwfact = MAX(globalconf.screens[screen].mwfact_lower_limit,
|
|
|
|
MIN(globalconf.screens[screen].mwfact_upper_limit, mwfact));
|
|
|
|
if(fabs(curtags[0]->mwfact - mwfact) >= 0.01)
|
|
|
|
{
|
|
|
|
curtags[0]->mwfact = mwfact;
|
|
|
|
globalconf.screens[screen].need_arrange = true;
|
|
|
|
layout_refresh();
|
|
|
|
}
|
|
|
|
}
|
2008-04-09 19:32:15 +02:00
|
|
|
p_delete(&ev);
|
|
|
|
while((ev = xcb_poll_for_event(globalconf.connection))
|
|
|
|
&& (ev->response_type & 0x7f) == XCB_MOTION_NOTIFY)
|
|
|
|
p_delete(&ev);
|
2008-03-21 16:50:17 +01:00
|
|
|
break;
|
2008-04-09 19:32:15 +02:00
|
|
|
default:
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_handle_event(globalconf.evenths, ev);
|
2008-04-09 19:32:15 +02:00
|
|
|
p_delete(&ev);
|
2008-03-21 16:50:17 +01:00
|
|
|
break;
|
2007-12-28 17:11:20 +01:00
|
|
|
}
|
2007-11-13 22:57:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|