1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
/*
* Diverse Bristol audio routines.
* Copyright (c) by Nick Copeland <nickycopeland@hotmail.com> 1996,2012
*
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
#include "brightoninternals.h"
brightonILocations *
brightonDeviceLocator(register brightonIResource *panel,
register int x, register int y)
{
register int index;
register brightonILocations *locn;
//printf("brightonDeviceLocator(%i, %i)\n", x, y);
if (((panel->flags & BRIGHTON_ACTIVE) == 0)
|| (panel->flags & BRIGHTON_WITHDRAWN))
return(0);
for (index = 0; index < panel->ndevices; index++)
{
locn = &panel->devlocn[index];
//printf("dev location %i %i %i %i\n", locn->ax, locn->ay, locn->aw, locn->ah);
if ((locn->ax <= x) && ((locn->ax + locn->aw) > x)
&& (locn->ay <= y) && ((locn->ay + locn->ah) > y))
{
//printf("found device %i\n", index);
return(locn);
}
}
return(0);
}
brightonIResource *
brightonPanelLocator(brightonWindow *bwin, int x, int y)
{
register int index;
register brightonIResource *locn;
/* printf("brightonLocator(%i, %i)\n", x, y); */
for (index = 0; index < bwin->app->nresources; index++)
{
locn = &bwin->app->resources[index];
if (((locn->flags & BRIGHTON_ACTIVE) == 0)
|| (locn->flags & BRIGHTON_WITHDRAWN))
continue;
if ((locn->sx <= x) && ((locn->sx + locn->sw) > x)
&& (locn->sy <= y) && ((locn->sy + locn->sh) > y))
{
/*printf("found panel %i\n", index); */
/*
* Found the panel. Now go look for the device
*/
return(locn);
}
}
return(0);
}
/*
* This will be called typically on button press, and attempts to locate
* which device is under the given x/y co-ord. May have other uses.
*/
brightonILocations *
brightonLocator(brightonWindow *bwin, int x, int y)
{
register int index;
register brightonIResource *locn;
/* printf("brightonLocator(%i, %i)\n", x, y); */
for (index = 0; index < bwin->app->nresources; index++)
{
locn = &bwin->app->resources[index];
if (((locn->flags & BRIGHTON_ACTIVE) == 0)
|| (locn->flags & BRIGHTON_WITHDRAWN))
continue;
if ((locn->sx <= x) && ((locn->sx + locn->sw) > x)
&& (locn->sy <= y) && ((locn->sy + locn->sh) > y))
{
/*printf("found panel %i\n", index); */
/*
* Found the panel. Now go look for the device
*/
return(brightonDeviceLocator(locn, x - locn->sx, y - locn->sy));
}
}
return(0);
}
|