Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
glcompui.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 "glcompui.h"
12#include <glcomp/glcompbutton.h>
13#include <glcomp/glcomppanel.h>
14#include <glcomp/glcomplabel.h>
15#include <glcomp/glcompimage.h>
16#include "gltemplate.h"
17#include <glcomp/glutils.h>
18#include "glmotion.h"
19#include "topfisheyeview.h"
20#include "toolboxcallbacks.h"
21#include "viewportcamera.h"
22#include "selectionfuncs.h"
23#include <stdbool.h>
24#include <stdint.h>
25#include <stdlib.h>
26#include "frmobjectui.h"
27
36
37
38void menu_click_pan(glCompObj *obj, float x, float y, glMouseButtonType t) {
39 (void)obj;
40 (void)x;
41 (void)y;
42 (void)t;
43
45}
46
47void menu_click_zoom_minus(glCompObj *obj, float x, float y,
49{
50 (void)obj;
51 (void)x;
52 (void)y;
53 (void)t;
54
56}
57
58void menu_click_zoom_plus(glCompObj *obj, float x, float y, glMouseButtonType t)
59{
60 (void)obj;
61 (void)x;
62 (void)y;
63 (void)t;
64
66}
67
68static void menu_switch_to_fisheye(glCompObj *obj, float x, float y,
70{
71 (void)obj;
72 (void)x;
73 (void)y;
74 (void)t;
75
77 {
78 if (!view->Topview->fisheyeParams.h) {
80 g_timer_start(view->timer);
81 }
86
87
88 } else {
90 g_timer_stop(view->timer);
94
95
96 }
97}
98
99void menu_click_center(glCompObj *obj, float x, float y, glMouseButtonType t) {
100 (void)obj;
101 (void)x;
102 (void)y;
103 (void)t;
104
105 if (view->active_camera == SIZE_MAX) { // 2D mode
107 } else { /*there is active camera , adjust it to look at the center */
108
112
113 }
114}
115
116void switch2D3D(glCompObj *obj, float x, float y, glMouseButtonType t) {
117 (void)obj;
118 (void)x;
119 (void)y;
120
121 if (t == glMouseLeftButton) {
122
123 if (view->active_camera == SIZE_MAX) {
124
125 if (view->camera_count == 0) {
127 } else {
128 view->active_camera = 0; /*set to camera */
129 }
133 } else { /*switch to 2d */
134
135 view->active_camera = SIZE_MAX; // set to camera
138 panBtn->base.common.callbacks.click(&panBtn->base, 0.0f, 0.0f, 0);
140
141
142 }
143 }
144}
145
146static void CBglCompMouseUp(glCompObj *obj, float x, float y, glMouseButtonType t)
147{
148 (void)obj;
149 (void)x;
150 (void)y;
151 (void)t;
152
153 sel->base.common.visible = 0;
154 sel->base.common.pos.x = -5000;
155}
156
157static void CBglCompMouseRightClick(glCompObj *obj, float x, float y,
159{
160 (void)obj;
161
162 if (t == glMouseRightButton)
163 {
164 float X, Y, Z = 0;
165 to3D((int) x, (int) y, &X, &Y, &Z);
166 }
167}
168
169static void attrList(glCompObj *obj, float x, float y, glMouseButtonType t) {
170 (void)obj;
171 (void)x;
172 (void)y;
173 (void)t;
174
176}
177
178static void glCompMouseMove(glCompObj *obj, float x, float y) {
179 (void)x;
180 (void)y;
181
182 glCompMouse *m = &((glCompSet *) obj)->mouse;
183
184 sel->base.common.visible = 1;
185
186 if (m->down && m->t == glMouseRightButton) {
187 sel->base.common.pos.x = m->x - m->dragX;
188 sel->base.common.pos.y = m->y - m->dragY;
189 sel->base.common.width = m->dragX;
190 sel->base.common.height = m->dragY;
191 glexpose();
192 }
193}
194
195static void selectedges(glCompObj *obj, float x, float y, glMouseButtonType t) {
196 (void)obj;
197 (void)x;
198 (void)y;
199 (void)t;
200
202}
203
204static void selectnodes(glCompObj *obj, float x, float y, glMouseButtonType t) {
205 (void)obj;
206 (void)x;
207 (void)y;
208 (void)t;
209
211}
212
214{
215 float y = 5;
216 float off = 43;
218 glCompPanel *p = NULL;
219 glCompButton *b = NULL;
220 glCompImage *i = NULL;
221 s->base.common.callbacks.click = CBglCompMouseRightClick;
222
223 p = glCompPanelNew(s, 25, 25, 45, 47);
225 p->base.common.data = 0;
226
227 /*pan */
228 b = glCompButtonNew(p, 1, y, 42, 42, "");
229 {
230 char *pan = smyrnaPath("pan.png");
232 free(pan);
233 }
235 panBtn = b;
236
237 y = y + off;
238
239 /*switch to fisheye */
240 b = glCompButtonNew(p, 1, y, 42, 42, "");
241 {
242 char *fisheye = smyrnaPath("fisheye.png");
243 glCompButtonAddPngGlyph(b, fisheye);
244 free(fisheye);
245 }
247 toFisheye = b;
248
249
250 /*switch to normal mode */
251 b = glCompButtonNew(p, 1, y, 42, 42, "");
252 {
253 char *fisheye = smyrnaPath("no_fisheye.png");
254 glCompButtonAddPngGlyph(b, fisheye);
255 free(fisheye);
256 }
258 b->base.common.visible = 0;
259 toNormal = b;
260
261 y=y+off;
262 b = glCompButtonNew(p, 1, y, 42, 42, "");
263 {
264 char *threed = smyrnaPath("3D.png");
265 glCompButtonAddPngGlyph(b, threed);
266 free(threed);
267 }
269 to3DBtn = b;
270
271 b = glCompButtonNew(p, 1, y, 42, 42, "");
272 {
273 char *twod = smyrnaPath("2D.png");
275 free(twod);
276 }
279 to2DBtn = b;
280
281 y=y+off;
282 b = glCompButtonNew(p, 1, y, 42, 42, "N");
284 b->groupid=-1;
285 b->status = true;
286
287 y=y+off;
288 b = glCompButtonNew(p, 1, y, 42, 42, "E");
290 b->groupid=-1;
291
292 p = glCompPanelNew(p, 1, 325, 45, 180);
294 p->base.common.data = 0;
295 p->base.common.borderWidth = 1;
296 p->shadowwidth = 0;
297
298 const glCompColor c = {.R = 0.80f, .G = 0.6f, .B = 0.6f, .A = 1.6f};
299
300 y = 1;
301
302 b = glCompButtonNew(p, 1, y, 42, 42, "");
303 {
304 char *details = smyrnaPath("details.png");
305 glCompButtonAddPngGlyph(b, details);
306 free(details);
307 }
309 b->base.common.color = c;
310
311 y = y + off;
312
313 b = glCompButtonNew(p, 1, y, 42, 42, "");
314 {
315 char *zoomin = smyrnaPath("zoomin.png");
316 glCompButtonAddPngGlyph(b, zoomin);
317 free(zoomin);
318 }
319 b->groupid = 0;
321 b->base.common.color = c;
322 y = y + off;
323
324 b = glCompButtonNew(p, 1, y, 42, 42, "");
325 {
326 char *zoomout = smyrnaPath("zoomout.png");
327 glCompButtonAddPngGlyph(b, zoomout);
328 free(zoomout);
329 }
331 b->base.common.color = c;
332
333 y = y + off;
334
335 b = glCompButtonNew(p, 1, y, 42, 42, "");
336 {
337 char *center = smyrnaPath("center.png");
339 free(center);
340 }
342 b->base.common.color = c;
343
344 p = glCompPanelNew(s, -250, 550, 150, 175);
345 p->base.common.borderWidth = 0;
346 p->shadowwidth = 0;
347 p->base.common.color.R = 0;
348 p->base.common.color.G = 0;
349 p->base.common.color.B = 1;
350 p->base.common.color.A = 0.2f;
351 p->base.common.visible = 0;
352 sel = p;
353 s->base.common.callbacks.mouseover = glCompMouseMove;
354 s->base.common.callbacks.mouseup = CBglCompMouseUp;
355
356 p = glCompPanelNew(s, 25, 25, 52, 47);
358 p->base.common.data = 0;
359 p->base.common.color.A = 0;
360
361 p = glCompPanelNew(p, 25, 0, 52, 110);
363 p->base.common.data = 0;
364 p->base.common.color.A = 0;
365 p->shadowwidth = 0;
366
367 i = glCompImageNew(p, 0, 0);
368 {
369 char *fisheye = smyrnaPath("mod_fisheye.png");
370 glCompImageLoadPng(i, fisheye);
371 free(fisheye);
372 }
373 imgFisheye = i;
374 i->base.common.visible = 0;
375
376 i = glCompImageNew(p, 0, 52);
377 {
378 char *threed = smyrnaPath("mod_3D.png");
379 glCompImageLoadPng(i, threed);
380 free(threed);
381 }
382 img3D = i;
383 i->base.common.visible = 0;
384
385 return s;
386
387
388
389}
void showAttrsWidget(void)
#define Y(i)
Definition gdefs.h:3
#define X(prefix, name, str, type, subtype,...)
Definition gdefs.h:14
int glCompButtonAddPngGlyph(glCompButton *b, const char *fileName)
glCompButton * glCompButtonNew(void *par, float x, float y, float w, float h, char *caption)
void glCompButtonShow(glCompButton *p)
void glCompButtonHide(glCompButton *p)
glMouseButtonType
Definition glcompdefs.h:67
@ glMouseRightButton
Definition glcompdefs.h:67
@ glMouseLeftButton
Definition glcompdefs.h:67
@ glAlignTop
Definition glcompdefs.h:60
@ glAlignLeft
Definition glcompdefs.h:60
@ glAlignRight
Definition glcompdefs.h:61
int glCompImageLoadPng(glCompImage *i, const char *pngFile)
Definition glcompimage.c:75
glCompImage * glCompImageNew(void *par, float x, float y)
Definition glcompimage.c:20
glCompPanel * glCompPanelNew(void *parentObj, float x, float y, float w, float h)
Definition glcomppanel.c:50
glCompSet * glCompSetNew(int w, int h)
Definition glcompset.c:170
static void CBglCompMouseUp(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompui.c:146
static glCompButton * to3DBtn
Definition glcompui.c:29
void switch2D3D(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompui.c:116
static glCompButton * toNormal
Definition glcompui.c:32
glCompSet * glcreate_gl_topview_menu(void)
Definition glcompui.c:213
static void glCompMouseMove(glCompObj *obj, float x, float y)
Definition glcompui.c:178
static void attrList(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompui.c:169
static void selectedges(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompui.c:195
void menu_click_zoom_minus(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompui.c:47
void menu_click_center(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompui.c:99
static void menu_switch_to_fisheye(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompui.c:68
static glCompButton * toFisheye
Definition glcompui.c:31
static void selectnodes(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompui.c:204
static glCompImage * imgFisheye
Definition glcompui.c:33
void menu_click_pan(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompui.c:38
static glCompPanel * sel
Definition glcompui.c:28
static glCompButton * to2DBtn
Definition glcompui.c:30
static glCompButton * panBtn
Definition glcompui.c:35
static glCompImage * img3D
Definition glcompui.c:34
static void CBglCompMouseRightClick(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompui.c:157
void menu_click_zoom_plus(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompui.c:58
void glmotion_zoom_inc(int zoomin)
Definition glmotion.c:44
void to3D(int x, int y, float *X, float *Y, float *Z)
Definition glutils.c:100
void free(void *)
#define SIZE_MAX
Definition gmlscan.c:347
node NULL
Definition grammar.y:163
char * smyrnaPath(char *suffix)
Definition main.c:54
void deselect_all(Agraph_t *g)
ViewInfo * view
Definition viewport.c:37
void glexpose(void)
Definition viewport.c:538
topview * Topview
Definition smyrnadefs.h:312
Agraph_t ** g
Definition smyrnadefs.h:295
GTimer * timer
Definition smyrnadefs.h:314
size_t camera_count
Definition smyrnadefs.h:305
int activeGraph
Definition smyrnadefs.h:299
viewport_camera ** cameras
Definition smyrnadefs.h:304
size_t active_camera
<number of cameras
Definition smyrnadefs.h:306
bool selectEdges
Definition smyrnadefs.h:215
bool selectNodes
Definition smyrnadefs.h:214
glCompObj base
Definition glcompdefs.h:210
bool status
false not pressed, true pressed
Definition glcompdefs.h:213
glcompclickfunc_t click
Definition glcompdefs.h:151
glCompColor color
Definition glcompdefs.h:168
glCompCallBacks callbacks
Definition glcompdefs.h:178
glCompPoint pos
Definition glcompdefs.h:164
glCompAlignment align
Definition glcompdefs.h:175
float borderWidth
Definition glcompdefs.h:167
glCompObj base
Definition glcompdefs.h:190
glMouseButtonType t
Definition glcompdefs.h:223
float y
current mouse pos
Definition glcompdefs.h:224
object prototype
Definition glcompdefs.h:184
glCompCommon common
Definition glcompdefs.h:185
float shadowwidth
Definition glcompdefs.h:198
glCompObj base
Definition glcompdefs.h:197
struct topview::@56 fisheyeParams
Hierarchy * h
Definition smyrnadefs.h:227
int active
Definition smyrnadefs.h:221
selection sel
Definition smyrnadefs.h:242
static point center(point vertex[], size_t n)
void btnToolZoomFit_clicked(GtkWidget *widget, void *user_data)
void prepare_topological_fisheye(Agraph_t *g, topview *t)
Definition grammar.c:93
void menu_click_add_camera(void)