2007-04-27 11:58:48 -06:00
|
|
|
/*
|
|
|
|
* calmwm - the calm window manager
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
|
|
|
|
*
|
2008-01-11 09:06:44 -07:00
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
2008-06-14 20:47:46 -06:00
|
|
|
* $Id: grab.c,v 1.19 2008/06/15 02:47:46 oga Exp $
|
2007-04-27 11:58:48 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "headers.h"
|
|
|
|
#include "calmwm.h"
|
|
|
|
|
2008-01-14 08:21:10 -07:00
|
|
|
static int _sweepcalc(struct client_ctx *, int, int, int, int);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
#define ADJUST_HEIGHT(cc, dy) ((cc->geom.height - cc->geom.min_dy)/ dy)
|
|
|
|
#define ADJUST_WIDTH(cc, dx) ((cc->geom.width - cc->geom.min_dx)/ dx)
|
|
|
|
|
|
|
|
void
|
|
|
|
grab_sweep_draw(struct client_ctx *cc, int dx, int dy)
|
|
|
|
{
|
|
|
|
struct screen_ctx *sc = CCTOSC(cc);
|
|
|
|
int x0 = cc->geom.x, y0 = cc->geom.y;
|
|
|
|
char asize[10]; /* fits "nnnnxnnnn\0" */
|
|
|
|
int wide, height, wide_size, wide_name;
|
|
|
|
|
|
|
|
snprintf(asize, sizeof(asize), "%dx%d",
|
|
|
|
ADJUST_WIDTH(cc, dx), ADJUST_HEIGHT(cc, dy));
|
2008-06-14 20:47:46 -06:00
|
|
|
wide_size = font_width(asize, strlen(asize)) + 4;
|
|
|
|
wide_name = font_width(cc->name, strlen(cc->name)) + 4;
|
2007-04-27 11:58:48 -06:00
|
|
|
wide = MAX(wide_size, wide_name);
|
2008-06-14 20:47:46 -06:00
|
|
|
height = font_ascent() + font_descent() + 1;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
2007-05-28 12:34:27 -06:00
|
|
|
XMoveResizeWindow(X_Dpy, sc->menuwin, x0, y0, wide, height * 2);
|
|
|
|
XMapWindow(X_Dpy, sc->menuwin);
|
|
|
|
XReparentWindow(X_Dpy, sc->menuwin, cc->win, 0, 0);
|
|
|
|
XClearWindow(X_Dpy, sc->menuwin);
|
2008-06-14 20:47:46 -06:00
|
|
|
font_draw(sc, cc->name, strlen(cc->name), sc->menuwin,
|
|
|
|
2, font_ascent() + 1);
|
|
|
|
font_draw(sc, asize, strlen(asize), sc->menuwin,
|
|
|
|
wide/2 - wide_size/2, height + font_ascent() + 1);
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
|
2008-01-16 04:39:20 -07:00
|
|
|
void
|
2007-04-27 11:58:48 -06:00
|
|
|
grab_sweep(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
XEvent ev;
|
|
|
|
struct screen_ctx *sc = CCTOSC(cc);
|
|
|
|
int x0 = cc->geom.x, y0 = cc->geom.y;
|
|
|
|
int dx, dy;
|
|
|
|
|
|
|
|
dx = MAX(1, cc->size->width_inc);
|
|
|
|
dy = MAX(1, cc->size->height_inc);
|
|
|
|
|
|
|
|
client_raise(cc);
|
|
|
|
client_ptrsave(cc);
|
|
|
|
|
2007-05-28 12:34:27 -06:00
|
|
|
if (xu_ptr_grab(sc->rootwin, MouseMask, Cursor_resize) < 0)
|
2008-01-16 04:39:20 -07:00
|
|
|
return;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
xu_ptr_setpos(cc->win, cc->geom.width, cc->geom.height);
|
|
|
|
grab_sweep_draw(cc, dx, dy);
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
/* Look for changes in ptr position. */
|
2007-06-05 12:57:03 -06:00
|
|
|
XMaskEvent(X_Dpy, MouseMask|ExposureMask, &ev);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
switch (ev.type) {
|
2007-06-05 12:57:03 -06:00
|
|
|
case Expose:
|
|
|
|
client_draw_border(cc);
|
|
|
|
break;
|
2007-04-27 11:58:48 -06:00
|
|
|
case MotionNotify:
|
|
|
|
if (_sweepcalc(cc, x0, y0, ev.xmotion.x, ev.xmotion.y))
|
2008-04-15 14:24:41 -06:00
|
|
|
/* Recompute window output */
|
2007-04-27 11:58:48 -06:00
|
|
|
grab_sweep_draw(cc, dx, dy);
|
|
|
|
|
2007-05-28 12:34:27 -06:00
|
|
|
XMoveResizeWindow(X_Dpy, cc->pwin,
|
2007-04-27 11:58:48 -06:00
|
|
|
cc->geom.x - cc->bwidth,
|
|
|
|
cc->geom.y - cc->bwidth,
|
|
|
|
cc->geom.width + cc->bwidth*2,
|
|
|
|
cc->geom.height + cc->bwidth*2);
|
2007-05-28 12:34:27 -06:00
|
|
|
XMoveResizeWindow(X_Dpy, cc->win,
|
2007-04-27 11:58:48 -06:00
|
|
|
cc->bwidth, cc->bwidth,
|
|
|
|
cc->geom.width, cc->geom.height);
|
|
|
|
|
2008-06-14 16:04:11 -06:00
|
|
|
client_do_shape(cc);
|
2007-04-27 11:58:48 -06:00
|
|
|
break;
|
|
|
|
case ButtonRelease:
|
2007-05-28 12:34:27 -06:00
|
|
|
XUnmapWindow(X_Dpy, sc->menuwin);
|
|
|
|
XReparentWindow(X_Dpy, sc->menuwin, sc->rootwin, 0, 0);
|
2007-04-27 11:58:48 -06:00
|
|
|
xu_ptr_ungrab();
|
2008-06-12 12:32:06 -06:00
|
|
|
|
|
|
|
/* Make sure the pointer stays within the window. */
|
|
|
|
if (cc->ptr.x > cc->geom.width)
|
|
|
|
cc->ptr.x = cc->geom.width - cc->bwidth;
|
|
|
|
if (cc->ptr.y > cc->geom.height)
|
|
|
|
cc->ptr.y = cc->geom.height - cc->bwidth;
|
2007-04-27 11:58:48 -06:00
|
|
|
client_ptrwarp(cc);
|
2008-06-12 12:32:06 -06:00
|
|
|
|
2008-01-16 04:39:20 -07:00
|
|
|
return;
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
2008-01-16 04:39:20 -07:00
|
|
|
void
|
2007-04-27 11:58:48 -06:00
|
|
|
grab_drag(struct client_ctx *cc)
|
|
|
|
{
|
|
|
|
int x0 = cc->geom.x, y0 = cc->geom.y, xm, ym;
|
|
|
|
struct screen_ctx *sc = CCTOSC(cc);
|
|
|
|
XEvent ev;
|
|
|
|
|
|
|
|
client_raise(cc);
|
|
|
|
|
2007-05-28 12:34:27 -06:00
|
|
|
if (xu_ptr_grab(sc->rootwin, MouseMask, Cursor_move) < 0)
|
2008-01-16 04:39:20 -07:00
|
|
|
return;
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
xu_ptr_getpos(sc->rootwin, &xm, &ym);
|
|
|
|
|
|
|
|
for (;;) {
|
2007-06-05 12:57:03 -06:00
|
|
|
XMaskEvent(X_Dpy, MouseMask|ExposureMask, &ev);
|
2007-04-27 11:58:48 -06:00
|
|
|
|
|
|
|
switch (ev.type) {
|
2007-06-05 12:57:03 -06:00
|
|
|
case Expose:
|
|
|
|
client_draw_border(cc);
|
|
|
|
break;
|
2007-04-27 11:58:48 -06:00
|
|
|
case MotionNotify:
|
|
|
|
cc->geom.x = x0 + (ev.xmotion.x - xm);
|
|
|
|
cc->geom.y = y0 + (ev.xmotion.y - ym);
|
|
|
|
|
2007-05-28 12:34:27 -06:00
|
|
|
XMoveWindow(X_Dpy, cc->pwin,
|
2007-04-27 11:58:48 -06:00
|
|
|
cc->geom.x - cc->bwidth, cc->geom.y - cc->bwidth);
|
|
|
|
|
|
|
|
break;
|
|
|
|
case ButtonRelease:
|
|
|
|
xu_ptr_ungrab();
|
2008-01-16 04:39:20 -07:00
|
|
|
return;
|
2007-04-27 11:58:48 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
2008-01-14 08:21:10 -07:00
|
|
|
static int
|
2007-04-27 11:58:48 -06:00
|
|
|
_sweepcalc(struct client_ctx *cc, int x0, int y0, int motionx, int motiony)
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
width = cc->geom.width;
|
|
|
|
height = cc->geom.height;
|
|
|
|
|
|
|
|
cc->geom.width = abs(x0 - motionx);
|
|
|
|
cc->geom.height = abs(y0 - motiony);
|
|
|
|
|
|
|
|
if (cc->size->flags & PResizeInc) {
|
|
|
|
cc->geom.width -=
|
|
|
|
(cc->geom.width - cc->geom.min_dx) % cc->size->width_inc;
|
|
|
|
cc->geom.height -=
|
|
|
|
(cc->geom.height - cc->geom.min_dy) % cc->size->height_inc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cc->size->flags & PMinSize) {
|
|
|
|
cc->geom.width = MAX(cc->geom.width, cc->size->min_width);
|
|
|
|
cc->geom.height = MAX(cc->geom.height, cc->size->min_height);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cc->size->flags & PMaxSize) {
|
|
|
|
cc->geom.width = MIN(cc->geom.width, cc->size->max_width);
|
|
|
|
cc->geom.height = MIN(cc->geom.height, cc->size->max_height);
|
|
|
|
}
|
|
|
|
|
|
|
|
cc->geom.x = x0 <= motionx ? x0 : x0 - cc->geom.width;
|
|
|
|
cc->geom.y = y0 <= motiony ? y0 : y0 - cc->geom.height;
|
|
|
|
|
|
|
|
return (width != cc->geom.width || height != cc->geom.height);
|
|
|
|
}
|