2008-06-14 15:48:54 -06:00
|
|
|
/*
|
2011-05-11 07:53:51 -06:00
|
|
|
* calmwm - the calm window manager
|
2008-06-14 15:48:54 -06:00
|
|
|
*
|
2011-05-11 07:53:51 -06:00
|
|
|
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
|
|
|
|
* Copyright (c) 2008 rivo nurges <rix@estpak.ee>
|
2008-06-14 15:48:54 -06: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.
|
|
|
|
*
|
2016-12-06 14:03:58 -07:00
|
|
|
* $OpenBSD: mousefunc.c,v 1.115 2016/12/06 21:03:58 okan Exp $
|
2008-06-14 15:48:54 -06:00
|
|
|
*/
|
|
|
|
|
2015-01-19 07:54:16 -07:00
|
|
|
#include <sys/types.h>
|
2009-12-14 21:10:42 -07:00
|
|
|
#include <sys/queue.h>
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
2015-01-19 07:54:16 -07:00
|
|
|
#include <limits.h>
|
2012-11-08 20:52:02 -07:00
|
|
|
#include <stdio.h>
|
2009-12-14 21:10:42 -07:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2008-06-14 15:48:54 -06:00
|
|
|
#include "calmwm.h"
|
|
|
|
|
|
|
|
void
|
2016-10-18 11:03:30 -06:00
|
|
|
mousefunc_client_resize(void *ctx, union arg *arg, enum xev xev)
|
2008-06-14 15:48:54 -06:00
|
|
|
{
|
2016-10-18 11:03:30 -06:00
|
|
|
struct client_ctx *cc = ctx;
|
2009-01-11 11:34:46 -07:00
|
|
|
XEvent ev;
|
2011-10-17 12:18:38 -06:00
|
|
|
Time ltime = 0;
|
2009-08-26 19:38:08 -06:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2009-01-11 11:34:46 -07:00
|
|
|
|
2015-08-21 10:14:39 -06:00
|
|
|
if (cc->flags & CLIENT_FREEZE)
|
2011-05-07 11:15:37 -06:00
|
|
|
return;
|
|
|
|
|
2009-01-11 11:34:46 -07:00
|
|
|
client_raise(cc);
|
|
|
|
client_ptrsave(cc);
|
|
|
|
|
2016-10-03 07:52:17 -06:00
|
|
|
xu_ptr_setpos(cc->win, cc->geom.w, cc->geom.h);
|
|
|
|
|
2016-09-30 12:28:06 -06:00
|
|
|
if (XGrabPointer(X_Dpy, cc->win, False, MOUSEMASK,
|
|
|
|
GrabModeAsync, GrabModeAsync, None, Conf.cursor[CF_RESIZE],
|
|
|
|
CurrentTime) != GrabSuccess)
|
2009-01-11 11:34:46 -07:00
|
|
|
return;
|
|
|
|
|
2016-12-06 14:03:58 -07:00
|
|
|
menu_windraw(sc, cc->win, "%4d x %-4d", cc->dim.w, cc->dim.h);
|
|
|
|
|
2009-01-11 11:34:46 -07:00
|
|
|
for (;;) {
|
2016-09-30 09:05:02 -06:00
|
|
|
XWindowEvent(X_Dpy, cc->win, MOUSEMASK, &ev);
|
2009-01-11 11:34:46 -07:00
|
|
|
|
|
|
|
switch (ev.type) {
|
|
|
|
case MotionNotify:
|
2014-09-18 07:56:58 -06:00
|
|
|
/* not more than 60 times / second */
|
|
|
|
if ((ev.xmotion.time - ltime) <= (1000 / 60))
|
|
|
|
continue;
|
|
|
|
ltime = ev.xmotion.time;
|
|
|
|
|
2016-09-13 07:42:28 -06:00
|
|
|
cc->geom.w = ev.xmotion.x;
|
|
|
|
cc->geom.h = ev.xmotion.y;
|
2015-11-17 07:31:28 -07:00
|
|
|
client_applysizehints(cc);
|
2014-09-18 07:56:58 -06:00
|
|
|
client_resize(cc, 1);
|
2016-09-30 09:12:19 -06:00
|
|
|
menu_windraw(sc, cc->win,
|
|
|
|
"%4d x %-4d", cc->dim.w, cc->dim.h);
|
2009-01-11 11:34:46 -07:00
|
|
|
break;
|
|
|
|
case ButtonRelease:
|
2014-09-18 07:56:58 -06:00
|
|
|
client_resize(cc, 1);
|
2016-09-28 18:21:55 -06:00
|
|
|
XUnmapWindow(X_Dpy, sc->menu.win);
|
|
|
|
XReparentWindow(X_Dpy, sc->menu.win, sc->rootwin, 0, 0);
|
2016-09-30 12:28:06 -06:00
|
|
|
XUngrabPointer(X_Dpy, CurrentTime);
|
2009-01-11 11:34:46 -07:00
|
|
|
|
|
|
|
/* Make sure the pointer stays within the window. */
|
2012-07-13 11:01:04 -06:00
|
|
|
if (cc->ptr.x > cc->geom.w)
|
|
|
|
cc->ptr.x = cc->geom.w - cc->bwidth;
|
|
|
|
if (cc->ptr.y > cc->geom.h)
|
|
|
|
cc->ptr.y = cc->geom.h - cc->bwidth;
|
2009-01-11 11:34:46 -07:00
|
|
|
client_ptrwarp(cc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
2008-06-14 15:48:54 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-10-18 11:03:30 -06:00
|
|
|
mousefunc_client_move(void *ctx, union arg *arg, enum xev xev)
|
2008-06-14 15:48:54 -06:00
|
|
|
{
|
2016-10-18 11:03:30 -06:00
|
|
|
struct client_ctx *cc = ctx;
|
2009-01-11 11:34:46 -07:00
|
|
|
XEvent ev;
|
2011-10-17 12:18:38 -06:00
|
|
|
Time ltime = 0;
|
2012-07-04 17:42:03 -06:00
|
|
|
struct screen_ctx *sc = cc->sc;
|
2015-11-11 07:22:01 -07:00
|
|
|
struct geom area;
|
2009-06-17 06:45:01 -06:00
|
|
|
int px, py;
|
2009-01-11 11:34:46 -07:00
|
|
|
|
|
|
|
client_raise(cc);
|
|
|
|
|
2015-08-21 10:14:39 -06:00
|
|
|
if (cc->flags & CLIENT_FREEZE)
|
2011-05-07 11:15:37 -06:00
|
|
|
return;
|
|
|
|
|
2016-10-03 07:52:17 -06:00
|
|
|
xu_ptr_getpos(cc->win, &px, &py);
|
|
|
|
if (px < 0)
|
|
|
|
px = 0;
|
|
|
|
else if (px > cc->geom.w)
|
|
|
|
px = cc->geom.w;
|
|
|
|
if (py < 0)
|
|
|
|
py = 0;
|
|
|
|
else if (py > cc->geom.h)
|
|
|
|
py = cc->geom.h;
|
|
|
|
|
|
|
|
xu_ptr_setpos(cc->win, px, py);
|
|
|
|
|
2016-09-30 12:28:06 -06:00
|
|
|
if (XGrabPointer(X_Dpy, cc->win, False, MOUSEMASK,
|
|
|
|
GrabModeAsync, GrabModeAsync, None, Conf.cursor[CF_MOVE],
|
|
|
|
CurrentTime) != GrabSuccess)
|
2009-01-11 11:34:46 -07:00
|
|
|
return;
|
|
|
|
|
2016-12-06 14:03:58 -07:00
|
|
|
menu_windraw(sc, cc->win, "%4d, %-4d", cc->geom.x, cc->geom.y);
|
|
|
|
|
2009-01-11 11:34:46 -07:00
|
|
|
for (;;) {
|
2016-09-30 09:05:02 -06:00
|
|
|
XWindowEvent(X_Dpy, cc->win, MOUSEMASK, &ev);
|
2009-01-11 11:34:46 -07:00
|
|
|
|
|
|
|
switch (ev.type) {
|
|
|
|
case MotionNotify:
|
2014-09-18 07:56:58 -06:00
|
|
|
/* not more than 60 times / second */
|
|
|
|
if ((ev.xmotion.time - ltime) <= (1000 / 60))
|
|
|
|
continue;
|
|
|
|
ltime = ev.xmotion.time;
|
|
|
|
|
2010-12-14 04:08:47 -07:00
|
|
|
cc->geom.x = ev.xmotion.x_root - px - cc->bwidth;
|
|
|
|
cc->geom.y = ev.xmotion.y_root - py - cc->bwidth;
|
2009-04-15 08:10:07 -06:00
|
|
|
|
2015-11-11 07:22:01 -07:00
|
|
|
area = screen_area(sc,
|
|
|
|
cc->geom.x + cc->geom.w / 2,
|
|
|
|
cc->geom.y + cc->geom.h / 2, CWM_GAP);
|
2011-06-24 00:06:24 -06:00
|
|
|
cc->geom.x += client_snapcalc(cc->geom.x,
|
2013-01-02 14:37:21 -07:00
|
|
|
cc->geom.x + cc->geom.w + (cc->bwidth * 2),
|
2015-11-11 07:22:01 -07:00
|
|
|
area.x, area.x + area.w, sc->snapdist);
|
2011-06-24 00:06:24 -06:00
|
|
|
cc->geom.y += client_snapcalc(cc->geom.y,
|
2013-01-02 14:37:21 -07:00
|
|
|
cc->geom.y + cc->geom.h + (cc->bwidth * 2),
|
2015-11-11 07:22:01 -07:00
|
|
|
area.y, area.y + area.h, sc->snapdist);
|
2014-09-18 07:56:58 -06:00
|
|
|
client_move(cc);
|
2016-09-30 09:12:19 -06:00
|
|
|
menu_windraw(sc, cc->win,
|
|
|
|
"%4d, %-4d", cc->geom.x, cc->geom.y);
|
2009-01-11 11:34:46 -07:00
|
|
|
break;
|
|
|
|
case ButtonRelease:
|
2014-09-18 07:56:58 -06:00
|
|
|
client_move(cc);
|
2016-09-30 09:12:19 -06:00
|
|
|
XUnmapWindow(X_Dpy, sc->menu.win);
|
|
|
|
XReparentWindow(X_Dpy, sc->menu.win, sc->rootwin, 0, 0);
|
2016-09-30 12:28:06 -06:00
|
|
|
XUngrabPointer(X_Dpy, CurrentTime);
|
2009-01-11 11:34:46 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
2008-06-14 15:48:54 -06:00
|
|
|
}
|