Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
glcompset.c
Go to the documentation of this file.
1/*************************************************************************
2 * Copyright (c) 2011 AT&T Intellectual Property
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * https://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors: Details at https://graphviz.org
9 *************************************************************************/
10
11#include <glcomp/glcompset.h>
12#include <glcomp/glcomppanel.h>
13#include <glcomp/glcomplabel.h>
14#include <glcomp/glcompbutton.h>
15#include <glcomp/glcompmouse.h>
16
17#include <glcomp/glutils.h>
18#include <stdbool.h>
19#include <stdlib.h>
20#include <util/alloc.h>
21
22static float startX, startY;
23
24static int glCompPointInObject(glCompObj * p, float x, float y)
25{
26 return x > p->common.refPos.x
27 && x < p->common.refPos.x + p->common.width
28 && y > p->common.refPos.y
29 && y < p->common.refPos.y + p->common.height;
30}
31
33 glCompObj *rv = NULL;
34 for (size_t ind = 0; ind < s.objcnt; ind++) {
35 if (s.obj[ind]->common.visible && glCompPointInObject(s.obj[ind], m.x, m.y)) {
36 if (!rv || s.obj[ind]->common.layer >= rv->common.layer) {
37 if (s.obj[ind]->common.functions.click)
38 rv = s.obj[ind];
39 }
40 }
41 }
42
43 return rv;
44}
45
46static void glCompMouseMove(void *obj, float x, float y) {
47 glCompSet *o = obj;
48 o->mouse.x = x;
49 o->mouse.y = o->base.common.height - y;
50 o->mouse.dragY = o->mouse.y - startY;
51 o->mouse.dragX = o->mouse.x - startX;
53 o->base.common.callbacks.mouseover(obj, x, y);
54 }
55}
56
57static void glCompSetMouseClick(void *obj, float x, float y,
59{
60 glCompObj *o = obj;
61 if (o->common.callbacks.click) {
62 o->common.callbacks.click(obj, x, y, t);
63 }
64}
65
66static void glCompSetMouseDown(void *obj, float x, float y,
68{
69 glCompSet *o = obj;
70 o->mouse.t = t;
71 if (t == glMouseLeftButton) {
72 o->mouse.x = x;
73 o->mouse.y = o->base.common.height - y;
76 if (o->mouse.clickedObj)
79 }
80 o->mouse.down = true;
81 startX = x;
82 startY = o->base.common.height - y;
83}
84
85static void glCompSetMouseUp(void *obj, float x, float y, glMouseButtonType t) {
86 float tempX = x;
87 glCompSet *ob = obj;
88 float tempY = ob->base.common.height - y;
89
90 ob->mouse.down = false;
91 if (t == glMouseLeftButton) {
92 glCompObj *o = NULL;
93 glCompObj *o_clicked = ob->mouse.clickedObj;
94 ob->mouse.x = tempX;
95 ob->mouse.y = tempY;
96 if (o_clicked)
97 o = glCompGetObjByMouse(*ob, ob->mouse);
98 if (!o)
99 return;
100 if (o == o_clicked)
101 o->common.functions.click(o, x, y, t);
102 }
104 ob->base.common.callbacks.mouseup(obj, x, y, t);
105 /*check if mouse is clicked or dragged */
106 if (startX == (int)tempX && startY == tempY)
107 glCompSetMouseClick(obj, x, y, t);
108}
109
110void glCompInitCommon(glCompObj *childObj, glCompObj *parentObj, float x,
111 float y) {
112 glCompCommon *c;
114 c = &childObj->common;
115 c->align = glAlignNone;
116 c->anchor.bottom = 0;
117 c->anchor.left = 0;
118 c->anchor.top = 0;
119 c->anchor.right = 0;
120 c->anchor.leftAnchor = 0;
121 c->anchor.rightAnchor = 0;
122 c->anchor.topAnchor = 0;
123 c->anchor.bottomAnchor = 0;
124 c->data = 0;
125 c->enabled = 1;
128 c->visible = 1;
129 c->pos.x = x;
130 c->pos.y = y;
132
133 /*NULL function pointers */
134 childObj->common.callbacks.click = NULL;
135 childObj->common.callbacks.mouseover = NULL;
136 childObj->common.callbacks.mouseup = NULL;
137
138 childObj->common.functions.click = NULL;
139 childObj->common.functions.draw = NULL;
140 childObj->common.functions.mousedown = NULL;
141 childObj->common.functions.mouseover = NULL;
142 childObj->common.functions.mouseup = NULL;
143
144
145
146 if (parentObj) {
147 c->parent = &parentObj->common;
148 parent = &parentObj->common;
149 c->color = parent->color;
150 c->layer = parent->layer + 1;
151 c->pos.z = parent->pos.z;
152 glCompSetAddObj(parent->compset, childObj);
153 } else {
154 c->parent = NULL;
159 c->layer = 0;
160 c->pos.z = 0;
161 }
162 c->font = glNewFontFromParent(childObj, NULL);
163}
164
166{
167 glDeleteFont(&c->font);
168}
169
171{
172 glCompSet *s = gv_alloc(sizeof(glCompSet));
173 glCompInitCommon(&s->base, NULL, 0.0f, 0.0f);
174 s->base.common.width = (float)w;
175 s->base.common.height = (float)h;
176 s->objcnt = 0;
177 s->obj = NULL;
178 s->textureCount = 0;
179 s->textures = NULL;
180 glDeleteFont(&s->base.common.font);
181 s->base.common.font = glNewFontFromParent(&s->base, NULL);
182 s->base.common.compset = s;
183 s->base.common.functions.mouseover = (glcompmouseoverfunc_t)glCompMouseMove;
184 s->base.common.functions.mousedown = (glcompmousedownfunc_t)glCompSetMouseDown;
185 s->base.common.functions.mouseup = (glcompmouseupfunc_t)glCompSetMouseUp;
186 glCompMouseInit(&s->mouse);
187 return s;
188}
189
191{
192 s->obj = gv_recalloc(s->obj, s->objcnt, s->objcnt + 1, sizeof(glCompObj*));
193 s->objcnt++;
194 s->obj[s->objcnt - 1] = obj;
195 obj->common.compset = s;
196}
197
198void glCompDrawBegin(void) //pushes a gl stack
199{
200 int vPort[4];
201
202 glGetIntegerv(GL_VIEWPORT, vPort);
203
204 glMatrixMode(GL_PROJECTION);
205 glPushMatrix();
206 glLoadIdentity();
207
208
209 glOrtho(0, vPort[2], 0, vPort[3], -1, 1);
210 glMatrixMode(GL_MODELVIEW);
211 glEnable(GL_BLEND);
212
213 glPushMatrix();
214 glLoadIdentity();
215 glDisable(GL_DEPTH_TEST);
216}
217
218void glCompDrawEnd(void) //pops the gl stack
219{
220 glMatrixMode(GL_PROJECTION);
221 glPopMatrix();
222 glMatrixMode(GL_MODELVIEW);
223 glPopMatrix();
224 glEnable(GL_DEPTH_TEST);
225}
226
229 for (size_t ind = 0; ind < s->objcnt; ind++) {
230 s->obj[ind]->common.functions.draw(s->obj[ind]);
231 }
233}
234
235void glcompsetUpdateBorder(glCompSet * s, int w, int h)
236{
237 if (w > 0 && h > 0) {
238 s->base.common.width = (float)w;
239 s->base.common.height = (float)h;
240 }
241}
Memory allocation wrappers that exit on failure.
static void * gv_recalloc(void *ptr, size_t old_nmemb, size_t new_nmemb, size_t size)
Definition alloc.h:73
static void * gv_alloc(size_t size)
Definition alloc.h:47
#define parent(i)
Definition closest.c:80
#define GLCOMPSET_BORDERWIDTH
Definition glcompdefs.h:53
#define GLCOMP_DEFAULT_HEIGHT
Definition glcompdefs.h:58
void(* glcompmouseoverfunc_t)(glCompObj *obj, float x, float y)
Definition glcompdefs.h:78
void(* glcompmouseupfunc_t)(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompdefs.h:82
#define GLCOMP_DEFAULT_WIDTH
Definition glcompdefs.h:57
void(* glcompmousedownfunc_t)(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompdefs.h:80
#define GLCOMPSET_PANEL_COLOR_B
Definition glcompdefs.h:35
#define GLCOMPSET_PANEL_COLOR_G
Definition glcompdefs.h:34
#define GLCOMPSET_PANEL_COLOR_R
Definition glcompdefs.h:33
#define GLCOMPSET_PANEL_COLOR_ALPHA
Definition glcompdefs.h:36
glMouseButtonType
Definition glcompdefs.h:67
@ glMouseLeftButton
Definition glcompdefs.h:67
@ glAlignNone
Definition glcompdefs.h:60
glCompFont glNewFontFromParent(glCompObj *o, char *text)
Definition glcompfont.c:70
void glDeleteFont(glCompFont *f)
Definition glcompfont.c:38
void glCompMouseInit(glCompMouse *m)
Definition glcompmouse.c:17
static int glCompPointInObject(glCompObj *p, float x, float y)
Definition glcompset.c:24
void glCompInitCommon(glCompObj *childObj, glCompObj *parentObj, float x, float y)
Definition glcompset.c:110
void glCompEmptyCommon(glCompCommon *c)
Definition glcompset.c:165
void glCompDrawEnd(void)
Definition glcompset.c:218
static glCompObj * glCompGetObjByMouse(glCompSet s, const glCompMouse m)
Definition glcompset.c:32
static float startX
Definition glcompset.c:22
static void glCompMouseMove(void *obj, float x, float y)
Definition glcompset.c:46
void glCompSetDraw(glCompSet *s)
Definition glcompset.c:227
void glCompSetAddObj(glCompSet *s, glCompObj *obj)
Definition glcompset.c:190
void glCompDrawBegin(void)
Definition glcompset.c:198
glCompSet * glCompSetNew(int w, int h)
Definition glcompset.c:170
static void glCompSetMouseUp(void *obj, float x, float y, glMouseButtonType t)
Definition glcompset.c:85
static void glCompSetMouseDown(void *obj, float x, float y, glMouseButtonType t)
Definition glcompset.c:66
static float startY
Definition glcompset.c:22
static void glCompSetMouseClick(void *obj, float x, float y, glMouseButtonType t)
Definition glcompset.c:57
void glcompsetUpdateBorder(glCompSet *s, int w, int h)
Definition glcompset.c:235
node NULL
Definition grammar.y:163
glcompmouseupfunc_t mouseup
Definition glcompdefs.h:154
glcompclickfunc_t click
Definition glcompdefs.h:151
glcompmousedownfunc_t mousedown
Definition glcompdefs.h:153
glcompdrawfunc_t draw
Definition glcompdefs.h:150
glcompmouseoverfunc_t mouseover
Definition glcompdefs.h:152
glCompColor color
Definition glcompdefs.h:168
glCompCallBacks callbacks
Definition glcompdefs.h:178
glCompCallBacks functions
Definition glcompdefs.h:179
glCompPoint pos
Definition glcompdefs.h:164
glCompAnchor anchor
Definition glcompdefs.h:176
glCompAlignment align
Definition glcompdefs.h:175
void * parent
Definition glcompdefs.h:172
glCompFont font
font to use
Definition glcompdefs.h:174
glCompPoint refPos
Definition glcompdefs.h:165
glCompSet * compset
compset
Definition glcompdefs.h:171
float borderWidth
Definition glcompdefs.h:167
glMouseButtonType t
Definition glcompdefs.h:223
glCompObj * clickedObj
Definition glcompdefs.h:230
float y
current mouse pos
Definition glcompdefs.h:224
object prototype
Definition glcompdefs.h:184
glCompCommon common
Definition glcompdefs.h:185
glCompObj base
Definition glcompdefs.h:240
glCompMouse mouse
Definition glcompdefs.h:245
Definition grammar.c:93