Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
smyrnadefs.h
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#pragma once
12
13#ifdef _WIN32
14#ifndef NO_WIN_HEADER
15#include "windows.h"
16#endif
17#endif
18
19#include <stdbool.h>
20#include <stddef.h>
21#include <xdot/xdot.h>
22#include <gtk/gtk.h>
23#include <glcomp/opengl.h>
24#include <gtk/gtkgl.h>
25#include <cgraph/cgraph.h>
26#include <glcomp/glcompset.h>
27#include "hier.h"
28#include <glcomp/glutils.h>
29#include <util/list.h>
30
31#ifdef _MSC_VER // this is needed on MSVC to get libglade see the callback
32#define _BB __declspec(dllexport)
33#else
34#define _BB
35#endif
36
37typedef struct _ArcBall_t ArcBall_t;
38
39#define GL_VIEWPORT_FACTOR 100
40//mouse modes
41#define MM_PAN 0
42#define MM_ZOOM 1
43#define MM_ROTATE 2
44#define MM_SINGLE_SELECT 3
45#define MM_RECTANGULAR_SELECT 4
46#define MM_RECTANGULAR_X_SELECT 5
47#define MM_MOVE 10
48#define MM_MAGNIFIER 20
49#define MM_FISHEYE_MAGNIFIER 21
50#define MM_FISHEYE_PICK 22 /*fisheye select foci point*/
51#define MM_POLYGON_SELECT 30
52
53#define MAX_ZOOM 500.0f
54#define MIN_ZOOM 0.005f
55
56#define DEG2RAD G_PI/180
57
58#define MAX_FILTERED_ATTR_COUNT 50
59
62
63typedef struct {
64 size_t index;
65 char* name;
66 char* value;
67 char* defValG;
68 char* defValN;
69 char* defValE;
71 int objType[3];
72 GtkWidget* widget;
74}attr_t;
75
76DEFINE_LIST(attrs, attr_t*)
77
78typedef struct
79{
80 attrs_t attributes;
81 GtkLabel* fLabels[MAX_FILTERED_ATTR_COUNT];
83
84 typedef struct
85 {
87 void *obj;
89 int layer;
91 } sdot_op;
92
93 typedef struct {
94 float perc;
96
98
99enum {SCHEMACOUNT = 4}; // number of colors
100
101 typedef struct {
104
112
113 typedef struct
114 {
115 unsigned node_id;
116 unsigned edge_id;
117 unsigned selnode_id;
118 unsigned seledge_id;
119 unsigned nodelabel_id;
120 unsigned edgelabel_id;
122
132
133 typedef struct {
134 float x;
135 float y;
136
137 float targetx;
138 float targety;
139
140 float r;
142
143 typedef struct {
146 } graph_data;
147
148
149
150 typedef struct{
153 float size;
157 int TVref;
158 }nodeRec;
159#define NREC(n) ((nodeRec*)(aggetrec(n,"nodeRec",0)))
160#define ND_visible(n) (NREC(n)->visible)
161#define ND_selected(n) (NREC(n)->selected)
162#define ND_printLabel(n) (NREC(n)->printLabel)
163#define ND_A(n) (NREC(n)->A)
164#define ND_size(n) (NREC(n)->size)
165#define ND_TVref(n) (NREC(n)->TVref)
166
173#define EREC(e) ((edgeRec*)(aggetrec(e,"edgeRec",0)))
174#define ED_selected(e) (EREC(e)->selected)
175#define ED_posTail(e) (EREC(e)->posTail)
176#define ED_posHead(e) (EREC(e)->posHead)
177
194#define GREC(g) ((graphRec*)(AGDATA(g)))
195#define GN_pos(g) (GREC(g)->N_pos)
196#define GN_size(g) (GREC(g)->N_size)
197#define GN_visible(g) (GREC(g)->N_visible)
198#define GN_selected(g) (GREC(g)->N_selected)
199#define GG_nodelabelcolor(g) (GREC(g)->G_nodelabelcolor)
200#define GN_labelattribute(g) (GREC(g)->N_labelattribute)
201#define GG_labelattribute(g) (GREC(g)->GN_labelattribute)
202#define GE_pos(g) (GREC(g)->E_pos)
203#define GE_visible(g) (GREC(g)->E_visible)
204#define GE_selected(g) (GREC(g)->E_selected)
205#define GG_edgelabelcolor(g) (GREC(g)->G_edgelabelcolor)
206#define GE_labelattribute(g) (GREC(g)->E_labelattribute)
207#define GG_elabelattribute(g) (GREC(g)->GE_labelattribute)
208
209#define GUI_WINDOWED 0
210#define GUI_FULLSCREEN 1
211
212 typedef struct _selection {
213 glCompPoly_t selPoly;
217
218 typedef struct {
219 size_t Nodecount;
220 struct {
221 int active; //1 draw hierarchy 0 draw regular topview
229 glCompColor srcColor; //fine node colors of topfisheye
230 glCompColor tarColor; //supernode colors of fisheye
232 } fisheyeParams;
233
238 double global_z;
239 attr_list* attributes;/*attribute list*/
240
243
244 } topview;
245
250
251
252 typedef struct _ViewInfo {
254 /*view variables */
255 float panx;
256 float pany;
257 float zoom;
258
259 /*clipping coordinates, to avoid unnecesarry rendering */
261
262 /*background color */
264 /*default pen color */
266 /*default fill color */
268 /*grid color */
269 glCompColor gridColor; //grid color
270 /*border color */
272 /*selected node color */
274 /*default node alpha */
276
277 /*default line width */
279
280 /*grid is drawn if this variable is 1 */
282 /*grid cell size in gl coords system */
283 float gridSize; //grid cell size
284
285 /*draws a border in border colors if it is 1 */
286 int bdVisible; //if borders are visible (boundries of the drawing,
287 /*border coordinates, needs to be calculated for each graph */
288
291
292 /*screen window size in 2d */
293 int w, h;
294 /*graph pointer to hold loaded graphs */
296 /*number of graphs loaded */
298 /*active graph */
300
301 /*stores the info about status of mouse,pressed? what button ? where? */
303
307
309 GtkWidget *drawing_area;
310
311 /*Topview data structure, refer topview.h for more info */
313 /*timer for animations */
314 GTimer *timer;
315 /*this timer is session timer and always active */
316 GTimer *timer2;
317 /*general purpose timer */
318 GTimer *timer3;
321 /*lately added */
326
327 /*labelling properties */
328 void *glutfont;
334
335 glCompSet *widgets; //for novice user open gl menu
336 char *initFileName; //file name from command line
341 GtkComboBox *graphComboBox; /*pointer to graph combo box at top right */
343 int keyVal;
348 char* optArg;
349
351
352 extern ViewInfo *view;
353 extern char *smyrnaPath(char *suffix);
354
355 extern void glexpose(void);
char * suffix
Definition bcomps.c:66
abstract graph C library, Cgraph API
glMouseButtonType
Definition glcompdefs.h:67
#define DEFINE_LIST(name, type)
Definition list.h:22
ViewInfo * view
Definition viewport.c:37
@ SCHEMACOUNT
Definition smyrnadefs.h:99
char * smyrnaPath(char *suffix)
Definition main.c:54
struct _selection selection
attr_data_type
Definition smyrnadefs.h:60
@ attr_alpha
Definition smyrnadefs.h:60
@ attr_int
Definition smyrnadefs.h:60
@ attr_float
Definition smyrnadefs.h:60
@ attr_bool
Definition smyrnadefs.h:60
smyrna_view_mode
Definition smyrnadefs.h:61
@ smyrna_2D
Definition smyrnadefs.h:61
@ smyrna_all
Definition smyrnadefs.h:61
@ smyrna_fisheye
Definition smyrnadefs.h:61
@ smyrna_all_but_fisheye
Definition smyrnadefs.h:61
@ smyrna_3D
Definition smyrnadefs.h:61
#define MAX_FILTERED_ATTR_COUNT
Definition smyrnadefs.h:58
struct _ViewInfo ViewInfo
void glexpose(void)
Definition viewport.c:538
gvk_layout
Definition smyrnadefs.h:105
@ GVK_DOT
Definition smyrnadefs.h:106
@ GVK_NEATO
Definition smyrnadefs.h:107
@ GVK_CIRCO
Definition smyrnadefs.h:109
@ GVK_FDP
Definition smyrnadefs.h:110
@ GVK_TWOPI
Definition smyrnadefs.h:108
graph or subgraph
Definition cgraph.h:424
implementation of Agrec_t
Definition cgraph.h:172
string attribute descriptor symbol in Agattr_s.dict
Definition cgraph.h:651
float bdxLeft
Definition smyrnadefs.h:289
int active_frame
Definition smyrnadefs.h:319
ArcBall_t * arcball
Definition smyrnadefs.h:342
topview * Topview
Definition smyrnadefs.h:312
int keyVal
depressed key or 0 if none
Definition smyrnadefs.h:343
int drawnodes
Definition smyrnadefs.h:322
Agraph_t ** g
Definition smyrnadefs.h:295
float pany
Definition smyrnadefs.h:256
int total_frames
Definition smyrnadefs.h:320
float LineWidth
Definition smyrnadefs.h:278
int drawnodelabels
Definition smyrnadefs.h:324
char * template_file
Definition smyrnadefs.h:340
int labelnumberofnodes
Definition smyrnadefs.h:331
float clipX2
Definition smyrnadefs.h:260
float bdyTop
Definition smyrnadefs.h:289
char * optArg
Definition smyrnadefs.h:348
int drawedges
Definition smyrnadefs.h:323
float nodeScale
Definition smyrnadefs.h:346
GtkComboBox * graphComboBox
Definition smyrnadefs.h:341
GTimer * timer
Definition smyrnadefs.h:314
glCompSet * widgets
Definition smyrnadefs.h:335
size_t camera_count
Definition smyrnadefs.h:305
size_t graphCount
Definition smyrnadefs.h:297
mouse_action_t * mouse_actions
customizable mouse interaction list
Definition smyrnadefs.h:344
glCompColor nodelabelcolor
Definition smyrnadefs.h:329
glCompColor fillColor
Definition smyrnadefs.h:267
glCompColor borderColor
Definition smyrnadefs.h:271
int labelshowedges
Definition smyrnadefs.h:333
colorschemaset colschms
Definition smyrnadefs.h:339
float gridSize
Definition smyrnadefs.h:283
char * initFileName
Definition smyrnadefs.h:336
glCompColor edgelabelcolor
Definition smyrnadefs.h:330
float panx
Definition smyrnadefs.h:255
GTimer * timer2
Definition smyrnadefs.h:316
int activeGraph
Definition smyrnadefs.h:299
glCompColor selectedNodeColor
Definition smyrnadefs.h:273
glCompColor bgColor
Definition smyrnadefs.h:263
viewport_camera ** cameras
Definition smyrnadefs.h:304
int drawSplines
Definition smyrnadefs.h:338
int labelshownodes
Definition smyrnadefs.h:332
size_t mouse_action_count
Definition smyrnadefs.h:345
GtkWidget * drawing_area
open gl canvas
Definition smyrnadefs.h:309
float bdxRight
Definition smyrnadefs.h:290
float bdyBottom
Definition smyrnadefs.h:290
systemgraphs systemGraphs
Definition smyrnadefs.h:253
int gridVisible
Definition smyrnadefs.h:281
float zoom
Definition smyrnadefs.h:257
int bdVisible
Definition smyrnadefs.h:286
int drawedgelabels
Definition smyrnadefs.h:325
glCompMouse mouse
Definition smyrnadefs.h:302
float clipY1
Definition smyrnadefs.h:260
GTimer * timer3
Definition smyrnadefs.h:318
float clipX1
Definition smyrnadefs.h:260
glCompColor gridColor
Definition smyrnadefs.h:269
float clipY2
Definition smyrnadefs.h:260
glCompColor penColor
Definition smyrnadefs.h:265
size_t active_camera
<number of cameras
Definition smyrnadefs.h:306
float defaultnodealpha
Definition smyrnadefs.h:275
void * glutfont
Definition smyrnadefs.h:328
glCompPoly_t selPoly
Definition smyrnadefs.h:213
bool selectEdges
Definition smyrnadefs.h:215
bool selectNodes
Definition smyrnadefs.h:214
attrs_t attributes
Definition smyrnadefs.h:80
char * defValN
Definition smyrnadefs.h:68
char * name
Definition smyrnadefs.h:65
int propagate
Definition smyrnadefs.h:73
size_t index
Definition smyrnadefs.h:64
GtkWidget * widget
Definition smyrnadefs.h:72
char * defValG
Definition smyrnadefs.h:67
char * value
Definition smyrnadefs.h:66
attr_data_type type
Definition smyrnadefs.h:70
char * defValE
Definition smyrnadefs.h:69
glCompColor c
Definition smyrnadefs.h:95
glCompPoint posTail
Definition smyrnadefs.h:169
Agrec_t h
Definition smyrnadefs.h:168
int selected
Definition smyrnadefs.h:171
glCompPoint posHead
Definition smyrnadefs.h:170
Definition hier.h:16
Agsym_t * N_labelattribute
Definition smyrnadefs.h:186
Agsym_t * N_pos
Definition smyrnadefs.h:180
Agsym_t * G_nodelabelcolor
Definition smyrnadefs.h:184
Agsym_t * N_selected
Definition smyrnadefs.h:183
Agsym_t * G_edgelabelcolor
Definition smyrnadefs.h:190
Agrec_t h
Definition smyrnadefs.h:179
Agsym_t * E_visible
Definition smyrnadefs.h:187
Agsym_t * E_selected
Definition smyrnadefs.h:188
Agsym_t * N_size
Definition smyrnadefs.h:181
Agsym_t * N_visible
Definition smyrnadefs.h:182
Agsym_t * GN_labelattribute
Definition smyrnadefs.h:185
Agsym_t * E_pos
Definition smyrnadefs.h:189
Agsym_t * GE_labelattribute
Definition smyrnadefs.h:192
Agsym_t * E_labelattribute
Definition smyrnadefs.h:191
Agrec_t h
Definition smyrnadefs.h:144
char * GraphFileName
Definition smyrnadefs.h:145
smyrna_view_mode mode
Definition smyrnadefs.h:130
glMouseButtonType type
Definition smyrnadefs.h:128
glCompPoint A
Definition smyrnadefs.h:152
float size
Definition smyrnadefs.h:153
int TVref
Definition smyrnadefs.h:157
int printLabel
Definition smyrnadefs.h:156
Agrec_t h
Definition smyrnadefs.h:151
int visible
Definition smyrnadefs.h:155
int selected
Definition smyrnadefs.h:154
xdot_op op
Definition smyrnadefs.h:86
glCompImage * img
Definition smyrnadefs.h:90
void * obj
Definition smyrnadefs.h:87
int layer
Definition smyrnadefs.h:89
glCompFont font
Definition smyrnadefs.h:88
Agraph_t * attrs_widgets
Definition smyrnadefs.h:248
Agraph_t * def_attrs
Definition smyrnadefs.h:247
graph_data Graphdata
Definition smyrnadefs.h:234
double global_z
Definition smyrnadefs.h:238
int animate
Definition smyrnadefs.h:228
Hierarchy * h
Definition smyrnadefs.h:227
topviewcache cache
Definition smyrnadefs.h:241
glCompColor srcColor
Definition smyrnadefs.h:229
reposition_t repos
Definition smyrnadefs.h:222
xdot * xDot
Definition smyrnadefs.h:237
focus_t * fs
Definition smyrnadefs.h:231
int active
Definition smyrnadefs.h:221
bool dist2_limit
Definition smyrnadefs.h:226
size_t Nodecount
Definition smyrnadefs.h:219
attr_list * attributes
Definition smyrnadefs.h:239
float fitin_zoom
Definition smyrnadefs.h:236
levelparms_t level
Definition smyrnadefs.h:223
selection sel
Definition smyrnadefs.h:242
glCompColor tarColor
Definition smyrnadefs.h:230
float maxedgelen
Definition smyrnadefs.h:235
unsigned selnode_id
Definition smyrnadefs.h:117
unsigned nodelabel_id
Definition smyrnadefs.h:119
unsigned node_id
Definition smyrnadefs.h:115
unsigned edge_id
Definition smyrnadefs.h:116
unsigned seledge_id
Definition smyrnadefs.h:118
unsigned edgelabel_id
Definition smyrnadefs.h:120
Definition xdot.h:166
Definition grammar.c:93
parsing and deparsing of xdot operations