14c8945a0SNathan Whitehorn /*
2*f4f33ea0SBaptiste Daroussin * $Id: mouse.c,v 1.24 2017/01/31 00:27:21 tom Exp $
34c8945a0SNathan Whitehorn *
44c8945a0SNathan Whitehorn * mouse.c -- mouse support for dialog
54c8945a0SNathan Whitehorn *
6*f4f33ea0SBaptiste Daroussin * Copyright 2002-2016,2017 Thomas E. Dickey
74c8945a0SNathan Whitehorn *
84c8945a0SNathan Whitehorn * This program is free software; you can redistribute it and/or modify
94c8945a0SNathan Whitehorn * it under the terms of the GNU Lesser General Public License, version 2.1
104c8945a0SNathan Whitehorn * as published by the Free Software Foundation.
114c8945a0SNathan Whitehorn *
124c8945a0SNathan Whitehorn * This program is distributed in the hope that it will be useful, but
134c8945a0SNathan Whitehorn * WITHOUT ANY WARRANTY; without even the implied warranty of
144c8945a0SNathan Whitehorn * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
154c8945a0SNathan Whitehorn * Lesser General Public License for more details.
164c8945a0SNathan Whitehorn *
174c8945a0SNathan Whitehorn * You should have received a copy of the GNU Lesser General Public
184c8945a0SNathan Whitehorn * License along with this program; if not, write to
194c8945a0SNathan Whitehorn * Free Software Foundation, Inc.
204c8945a0SNathan Whitehorn * 51 Franklin St., Fifth Floor
214c8945a0SNathan Whitehorn * Boston, MA 02110, USA.
224c8945a0SNathan Whitehorn */
234c8945a0SNathan Whitehorn
244c8945a0SNathan Whitehorn #include <dialog.h>
254c8945a0SNathan Whitehorn #include <dlg_keys.h>
264c8945a0SNathan Whitehorn
274c8945a0SNathan Whitehorn #if USE_MOUSE
284c8945a0SNathan Whitehorn
292a3e3873SBaptiste Daroussin static int basex, basey, basecode;
304c8945a0SNathan Whitehorn
314c8945a0SNathan Whitehorn static mseRegion *regionList = NULL;
324c8945a0SNathan Whitehorn
334c8945a0SNathan Whitehorn /*=========== region related functions =============*/
344c8945a0SNathan Whitehorn
354c8945a0SNathan Whitehorn static mseRegion *
find_region_by_code(int code)364c8945a0SNathan Whitehorn find_region_by_code(int code)
374c8945a0SNathan Whitehorn {
384c8945a0SNathan Whitehorn mseRegion *butPtr;
394c8945a0SNathan Whitehorn
404c8945a0SNathan Whitehorn for (butPtr = regionList; butPtr; butPtr = butPtr->next) {
414c8945a0SNathan Whitehorn if (code == butPtr->code)
424c8945a0SNathan Whitehorn break;
434c8945a0SNathan Whitehorn }
444c8945a0SNathan Whitehorn return butPtr;
454c8945a0SNathan Whitehorn }
464c8945a0SNathan Whitehorn
474c8945a0SNathan Whitehorn void
dlg_mouse_setbase(int x,int y)484c8945a0SNathan Whitehorn dlg_mouse_setbase(int x, int y)
494c8945a0SNathan Whitehorn {
504c8945a0SNathan Whitehorn basex = x;
514c8945a0SNathan Whitehorn basey = y;
524c8945a0SNathan Whitehorn }
534c8945a0SNathan Whitehorn
544c8945a0SNathan Whitehorn void
dlg_mouse_setcode(int code)552a3e3873SBaptiste Daroussin dlg_mouse_setcode(int code)
562a3e3873SBaptiste Daroussin {
572a3e3873SBaptiste Daroussin basecode = code;
58*f4f33ea0SBaptiste Daroussin DLG_TRACE(("# mouse_setcode %d\n", code));
592a3e3873SBaptiste Daroussin }
602a3e3873SBaptiste Daroussin
612a3e3873SBaptiste Daroussin void
dlg_mouse_mkbigregion(int y,int x,int height,int width,int code,int step_y,int step_x,int mode)624c8945a0SNathan Whitehorn dlg_mouse_mkbigregion(int y, int x,
634c8945a0SNathan Whitehorn int height, int width,
644c8945a0SNathan Whitehorn int code,
654c8945a0SNathan Whitehorn int step_y, int step_x,
664c8945a0SNathan Whitehorn int mode)
674c8945a0SNathan Whitehorn {
684c8945a0SNathan Whitehorn mseRegion *butPtr = dlg_mouse_mkregion(y, x, height, width, -DLGK_MOUSE(code));
694c8945a0SNathan Whitehorn butPtr->mode = mode;
704c8945a0SNathan Whitehorn butPtr->step_x = MAX(1, step_x);
714c8945a0SNathan Whitehorn butPtr->step_y = MAX(1, step_y);
724c8945a0SNathan Whitehorn }
734c8945a0SNathan Whitehorn
744c8945a0SNathan Whitehorn void
dlg_mouse_free_regions(void)754c8945a0SNathan Whitehorn dlg_mouse_free_regions(void)
764c8945a0SNathan Whitehorn {
774c8945a0SNathan Whitehorn while (regionList != 0) {
784c8945a0SNathan Whitehorn mseRegion *butPtr = regionList->next;
794c8945a0SNathan Whitehorn free(regionList);
804c8945a0SNathan Whitehorn regionList = butPtr;
814c8945a0SNathan Whitehorn }
824c8945a0SNathan Whitehorn }
834c8945a0SNathan Whitehorn
844c8945a0SNathan Whitehorn mseRegion *
dlg_mouse_mkregion(int y,int x,int height,int width,int code)854c8945a0SNathan Whitehorn dlg_mouse_mkregion(int y, int x, int height, int width, int code)
864c8945a0SNathan Whitehorn {
874c8945a0SNathan Whitehorn mseRegion *butPtr;
884c8945a0SNathan Whitehorn
892a3e3873SBaptiste Daroussin if ((butPtr = find_region_by_code(basecode + code)) == 0) {
90*f4f33ea0SBaptiste Daroussin butPtr = dlg_calloc(mseRegion, 1);
914c8945a0SNathan Whitehorn assert_ptr(butPtr, "dlg_mouse_mkregion");
924c8945a0SNathan Whitehorn butPtr->next = regionList;
934c8945a0SNathan Whitehorn regionList = butPtr;
944c8945a0SNathan Whitehorn }
95*f4f33ea0SBaptiste Daroussin
96*f4f33ea0SBaptiste Daroussin if ((butPtr->mode != -1) ||
97*f4f33ea0SBaptiste Daroussin (butPtr->step_x != 0) ||
98*f4f33ea0SBaptiste Daroussin (butPtr->step_y != 0) ||
99*f4f33ea0SBaptiste Daroussin (butPtr->y != (basey + y)) ||
100*f4f33ea0SBaptiste Daroussin (butPtr->Y != (basey + y + height)) ||
101*f4f33ea0SBaptiste Daroussin (butPtr->x != (basex + x)) ||
102*f4f33ea0SBaptiste Daroussin (butPtr->X != (basex + x + width)) ||
103*f4f33ea0SBaptiste Daroussin (butPtr->code != basecode + code)) {
104*f4f33ea0SBaptiste Daroussin DLG_TRACE(("# mouse_mkregion %d,%d %dx%d %d (%d)\n",
105*f4f33ea0SBaptiste Daroussin y, x, height, width,
106*f4f33ea0SBaptiste Daroussin butPtr->code, code));
107*f4f33ea0SBaptiste Daroussin }
108*f4f33ea0SBaptiste Daroussin
1094c8945a0SNathan Whitehorn butPtr->mode = -1;
1104c8945a0SNathan Whitehorn butPtr->step_x = 0;
1114c8945a0SNathan Whitehorn butPtr->step_y = 0;
1124c8945a0SNathan Whitehorn butPtr->y = basey + y;
1134c8945a0SNathan Whitehorn butPtr->Y = basey + y + height;
1144c8945a0SNathan Whitehorn butPtr->x = basex + x;
1154c8945a0SNathan Whitehorn butPtr->X = basex + x + width;
1162a3e3873SBaptiste Daroussin butPtr->code = basecode + code;
117*f4f33ea0SBaptiste Daroussin
1184c8945a0SNathan Whitehorn return butPtr;
1194c8945a0SNathan Whitehorn }
1204c8945a0SNathan Whitehorn
1214c8945a0SNathan Whitehorn /* retrieve the frame under the pointer */
1224c8945a0SNathan Whitehorn static mseRegion *
any_mouse_region(int y,int x,int small)1234c8945a0SNathan Whitehorn any_mouse_region(int y, int x, int small)
1244c8945a0SNathan Whitehorn {
1254c8945a0SNathan Whitehorn mseRegion *butPtr;
1264c8945a0SNathan Whitehorn
1274c8945a0SNathan Whitehorn for (butPtr = regionList; butPtr; butPtr = butPtr->next) {
1282a3e3873SBaptiste Daroussin if (small ^ (butPtr->code >= 0)) {
1294c8945a0SNathan Whitehorn continue;
1302a3e3873SBaptiste Daroussin }
1312a3e3873SBaptiste Daroussin if (y < butPtr->y || y >= butPtr->Y) {
1324c8945a0SNathan Whitehorn continue;
1332a3e3873SBaptiste Daroussin }
1342a3e3873SBaptiste Daroussin if (x < butPtr->x || x >= butPtr->X) {
1354c8945a0SNathan Whitehorn continue;
1362a3e3873SBaptiste Daroussin }
1374c8945a0SNathan Whitehorn break; /* found */
1384c8945a0SNathan Whitehorn }
1394c8945a0SNathan Whitehorn return butPtr;
1404c8945a0SNathan Whitehorn }
1414c8945a0SNathan Whitehorn
1424c8945a0SNathan Whitehorn /* retrieve the frame under the pointer */
1434c8945a0SNathan Whitehorn mseRegion *
dlg_mouse_region(int y,int x)1444c8945a0SNathan Whitehorn dlg_mouse_region(int y, int x)
1454c8945a0SNathan Whitehorn {
1464c8945a0SNathan Whitehorn return any_mouse_region(y, x, TRUE);
1474c8945a0SNathan Whitehorn }
1484c8945a0SNathan Whitehorn
1494c8945a0SNathan Whitehorn /* retrieve the bigframe under the pointer */
1504c8945a0SNathan Whitehorn mseRegion *
dlg_mouse_bigregion(int y,int x)1514c8945a0SNathan Whitehorn dlg_mouse_bigregion(int y, int x)
1524c8945a0SNathan Whitehorn {
1534c8945a0SNathan Whitehorn return any_mouse_region(y, x, FALSE);
1544c8945a0SNathan Whitehorn }
1554c8945a0SNathan Whitehorn
1564c8945a0SNathan Whitehorn #else
1574c8945a0SNathan Whitehorn void mouse_dummy(void);
1584c8945a0SNathan Whitehorn void
mouse_dummy(void)1594c8945a0SNathan Whitehorn mouse_dummy(void)
1604c8945a0SNathan Whitehorn {
1614c8945a0SNathan Whitehorn }
1624c8945a0SNathan Whitehorn #endif /* USE_MOUSE */
163