2016-08-04 13:19:18 +03:00
|
|
|
/*
|
2016-08-18 02:54:25 +03:00
|
|
|
* gui/aoi.c - GUI: areas of interest
|
2016-08-04 13:19:18 +03:00
|
|
|
*
|
|
|
|
* Written 2016 by Werner Almesberger
|
|
|
|
* Copyright 2016 by Werner Almesberger
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Resources:
|
|
|
|
*
|
|
|
|
* http://zetcode.com/gfx/cairo/cairobackends/
|
|
|
|
* https://developer.gnome.org/gtk3/stable/gtk-migrating-2-to-3.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stddef.h>
|
2016-08-14 18:30:24 +03:00
|
|
|
#include <math.h>
|
|
|
|
#include <assert.h>
|
2016-08-04 13:19:18 +03:00
|
|
|
|
2016-08-18 03:37:15 +03:00
|
|
|
#include "misc/util.h"
|
2016-08-18 02:54:25 +03:00
|
|
|
#include "gui/aoi.h"
|
2016-08-04 13:19:18 +03:00
|
|
|
|
|
|
|
|
|
|
|
static const struct aoi *hovering = NULL;
|
|
|
|
|
|
|
|
|
2016-08-07 11:09:34 +03:00
|
|
|
struct aoi *aoi_add(struct aoi **aois, const struct aoi *cfg)
|
2016-08-04 13:19:18 +03:00
|
|
|
{
|
|
|
|
struct aoi *new;
|
|
|
|
|
|
|
|
new = alloc_type(struct aoi);
|
2016-08-07 11:09:34 +03:00
|
|
|
*new = *cfg;
|
2016-08-04 13:19:18 +03:00
|
|
|
new->next = *aois;
|
|
|
|
*aois = new;
|
2016-08-04 13:53:25 +03:00
|
|
|
|
|
|
|
return new;
|
2016-08-04 13:19:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-07 11:09:34 +03:00
|
|
|
void aoi_update(struct aoi *aoi, const struct aoi *cfg)
|
|
|
|
{
|
|
|
|
struct aoi *next = aoi->next;
|
|
|
|
|
|
|
|
*aoi = *cfg;
|
|
|
|
aoi->next = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-14 18:30:24 +03:00
|
|
|
static const struct aoi *find_aoi(const struct aoi *aois, int x, int y)
|
|
|
|
{
|
|
|
|
const struct aoi *aoi;
|
|
|
|
|
|
|
|
for (aoi = aois; aoi; aoi = aoi->next)
|
|
|
|
if (x >= aoi->x && x < aoi->x + aoi->w &&
|
|
|
|
y >= aoi->y && y < aoi->y + aoi->h)
|
|
|
|
break;
|
|
|
|
return aoi;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-04 13:19:18 +03:00
|
|
|
bool aoi_hover(const struct aoi *aois, int x, int y)
|
|
|
|
{
|
|
|
|
const struct aoi *aoi;
|
|
|
|
|
|
|
|
if (hovering) {
|
|
|
|
if (x >= hovering->x && x < hovering->x + hovering->w &&
|
|
|
|
y >= hovering->y && y < hovering->y + hovering->h)
|
|
|
|
return 1;
|
|
|
|
hovering->hover(hovering->user, 0);
|
|
|
|
hovering = NULL;
|
|
|
|
}
|
|
|
|
|
2016-08-14 18:30:24 +03:00
|
|
|
aoi = find_aoi(aois, x, y);
|
2016-08-04 13:19:18 +03:00
|
|
|
if (aoi && aoi->hover && aoi->hover(aoi->user, 1)) {
|
|
|
|
hovering = aoi;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-18 08:13:55 +03:00
|
|
|
bool aoi_click(const struct aoi *aois, int x, int y)
|
2016-08-14 18:30:24 +03:00
|
|
|
{
|
|
|
|
const struct aoi *aoi;
|
|
|
|
|
2016-08-18 08:13:55 +03:00
|
|
|
aoi_dehover();
|
2016-08-14 18:30:24 +03:00
|
|
|
|
2016-08-18 08:13:55 +03:00
|
|
|
aoi = find_aoi(aois, x, y);
|
|
|
|
if (!aoi || !aoi->click)
|
2016-08-14 18:30:24 +03:00
|
|
|
return 0;
|
2016-08-18 08:13:55 +03:00
|
|
|
aoi->click(aoi->user);
|
2016-08-14 18:30:24 +03:00
|
|
|
return 1;
|
2016-08-04 13:19:18 +03:00
|
|
|
}
|
2016-08-04 13:53:25 +03:00
|
|
|
|
|
|
|
|
|
|
|
void aoi_remove(struct aoi **aois, const struct aoi *aoi)
|
|
|
|
{
|
2016-08-07 11:09:34 +03:00
|
|
|
if (hovering == aoi) {
|
2016-08-04 13:53:25 +03:00
|
|
|
aoi->hover(aoi->user, 0);
|
2016-08-07 11:09:34 +03:00
|
|
|
hovering = NULL;
|
|
|
|
}
|
2016-08-04 13:53:25 +03:00
|
|
|
while (*aois != aoi)
|
|
|
|
aois = &(*aois)->next;
|
|
|
|
*aois = aoi->next;
|
|
|
|
free((void *) aoi);
|
|
|
|
}
|
2016-08-11 03:50:07 +03:00
|
|
|
|
|
|
|
|
|
|
|
void aoi_dehover(void)
|
|
|
|
{
|
|
|
|
if (hovering)
|
|
|
|
hovering->hover(hovering->user, 0);
|
|
|
|
hovering = NULL;
|
|
|
|
}
|
|
|
|
|