Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
glcompdefs.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#include <stdbool.h>
14#include <stdio.h>
15#include <stdint.h>
16#include <stdlib.h>
17#include <string.h>
18#include <stdarg.h>
19#include <math.h>
20#ifdef _WIN32
21#include <windows.h>
22#include <winuser.h>
23#include <tchar.h>
24#endif
25#include <glcomp/opengl.h>
26#include <util/list.h>
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32
33#define GLCOMPSET_PANEL_COLOR_R 0.16f
34#define GLCOMPSET_PANEL_COLOR_G 0.44f
35#define GLCOMPSET_PANEL_COLOR_B 0.87f
36#define GLCOMPSET_PANEL_COLOR_ALPHA 0.5f
37#define GLCOMPSET_PANEL_SHADOW_WIDTH 4.0f
38
39#define GLCOMPSET_BUTTON_COLOR_R 0.0f
40#define GLCOMPSET_BUTTON_COLOR_G 1.0f
41#define GLCOMPSET_BUTTON_COLOR_B 0.3f
42#define GLCOMPSET_BUTTON_COLOR_ALPHA 0.6f
43#define GLCOMPSET_BUTTON_THICKNESS 3.0f
44#define GLCOMPSET_BUTTON_BEVEL_BRIGHTNESS 1.7f
45#define GLCOMPSET_FONT_SIZE 14.0f
46
47#define GLCOMPSET_FONT_COLOR_R 0.0f
48#define GLCOMPSET_FONT_COLOR_G 0.0f
49#define GLCOMPSET_FONT_COLOR_B 0.0f
50#define GLCOMPSET_FONT_COLOR_ALPHA 1.0f
51#define GLCOMPSET_FONT_DESC "Times Italic"
52
53#define GLCOMPSET_BORDERWIDTH 2.0f
54#define GLCOMPSET_PANEL_BORDERWIDTH 3.0f
55#define GLCOMPSET_BUTTON_BEVEL 5.0f
56#define GLCOMPSET_BEVEL_DIFF 0.001f
57#define GLCOMP_DEFAULT_WIDTH 10.0f
58#define GLCOMP_DEFAULT_HEIGHT 10.0f
59
62
65
69
71
72 typedef struct glCompObj_ glCompObj;
73
74/*call backs for widgets*/
75 typedef void (*glcompdrawfunc_t) (void *obj);
76 typedef void (*glcompclickfunc_t)(glCompObj *obj, float x,
77 float y, glMouseButtonType t);
78 typedef void (*glcompmouseoverfunc_t) (glCompObj * obj, float x,
79 float y);
80 typedef void (*glcompmousedownfunc_t) (glCompObj * obj, float x,
81 float y, glMouseButtonType t);
82 typedef void (*glcompmouseupfunc_t) (glCompObj * obj, float x,
83 float y, glMouseButtonType t);
84
85 typedef struct {
86 int topAnchor; /*anchor booleans */
90
91 float top; /*anchor values */
92 float left;
93 float right;
94 float bottom;
95
96
98
103
104 typedef struct {
105 float x, y, z;
106 } glCompPoint;
107
108DEFINE_LIST(glCompPoly, glCompPoint)
109
110 typedef struct {
111 float R;
112 float G;
113 float B;
114 float A; //Alpha
115 } glCompColor;
116
117 typedef struct {
119 float w;
120 float h;
121 } glCompRect;
122
123 typedef struct {
124 uint32_t id;
125 char *def;
126 char *text;
127 int width;
132 unsigned char *data; /*data */
133 } glCompTex;
134
135
136
137/*opengl font*/
138 typedef struct {
139 char *fontdesc; //font description , only used with pango fonts
141 void *glutfont; /*glut font pointer if used */
143 glCompTex *tex; /* texture, if type is pangotext */
144 int size;
146 bool is2D;
147 } glCompFont;
148
156
157typedef struct glCompSet_ glCompSet;
158
159/*
160 common widget properties
161 also each widget has pointer to its parents common
162*/
163 typedef struct {
165 glCompPoint refPos; /*calculated pos after anchors and aligns */
166 float width, height;
172 void *parent; /*parent widget */
173 int data;
177 int layer; /*keep track of object order, what to draw on top */
181 } glCompCommon;
182
187
188/*generic image*/
189 typedef struct {
192 float width, height; /* width and height in world coords */
193 } glCompImage;
194
195/*generic panel*/
196 typedef struct {
199 char *text;
200 } glCompPanel;
201
202/*label*/
203 typedef struct {
205 char *text;
206 } glCompLabel;
207
208/*buttons*/
209 typedef struct {
211 float width, height;
213 bool status;
216 glCompImage *image; /*glyph */
217 int data;
218 } glCompButton;
219
220/*texture based image*/
221
222 typedef struct {
224 float x, y;
225 glCompPoint GLpos;/*3d converted opengl position*/
226 glCompPoint GLinitPos;/*mouse button down pos*/
227 glCompPoint GLfinalPos;/*mouse button up pos*/
228
229 float dragX, dragY;/*GLpos - GLinitpos*/
233 bool down;
234 } glCompMouse;
235
236
237
238/*main widget set manager*/
247
248#ifdef __cplusplus
249}
250#endif
glCompTexType
Definition glcompdefs.h:70
@ glTexImage
Definition glcompdefs.h:70
@ glTexLabel
Definition glcompdefs.h:70
glCompVJustify
Definition glcompdefs.h:63
@ glFontVJustifyCenter
Definition glcompdefs.h:63
@ glFontVJustifyNone
Definition glcompdefs.h:63
glCompHJustify
Definition glcompdefs.h:64
@ glFontHJustifyCenter
Definition glcompdefs.h:64
@ glFontHJustifyNone
Definition glcompdefs.h:64
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
void(* glcompmousedownfunc_t)(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompdefs.h:80
void(* glcompdrawfunc_t)(void *obj)
Definition glcompdefs.h:75
void(* glcompclickfunc_t)(glCompObj *obj, float x, float y, glMouseButtonType t)
Definition glcompdefs.h:76
glCompMouseStatus
Definition glcompdefs.h:66
@ glMouseDown
Definition glcompdefs.h:66
@ glMouseUp
Definition glcompdefs.h:66
glMouseButtonType
Definition glcompdefs.h:67
@ glMouseRightButton
Definition glcompdefs.h:67
@ glMouseMiddleButton
Definition glcompdefs.h:68
@ glMouseLeftButton
Definition glcompdefs.h:67
glCompAlignment
Definition glcompdefs.h:60
@ glAlignTop
Definition glcompdefs.h:60
@ glAlignLeft
Definition glcompdefs.h:60
@ glAlignCenter
Definition glcompdefs.h:61
@ glAlignBottom
Definition glcompdefs.h:60
@ glAlignNone
Definition glcompdefs.h:60
@ glAlignParent
Definition glcompdefs.h:61
@ glAlignRight
Definition glcompdefs.h:61
static int z
#define DEFINE_LIST(name, type)
Definition list.h:22
glCompLabel * label
Definition glcompdefs.h:212
glCompImage * image
Definition glcompdefs.h:216
glCompObj base
Definition glcompdefs.h:210
bool status
false not pressed, true pressed
Definition glcompdefs.h:213
bool refStatus
false not pressed, true pressed
Definition glcompdefs.h:214
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
glCompJustify justify
Definition glcompdefs.h:180
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
glCompColor color
Definition glcompdefs.h:140
int transparent
Definition glcompdefs.h:142
void * glutfont
Definition glcompdefs.h:141
glCompTex * tex
Definition glcompdefs.h:143
char * fontdesc
Definition glcompdefs.h:139
glCompJustify justify
Definition glcompdefs.h:145
glCompObj base
Definition glcompdefs.h:190
glCompTex * texture
Definition glcompdefs.h:191
glCompHJustify HJustify
Definition glcompdefs.h:101
glCompVJustify VJustify
Definition glcompdefs.h:100
char * text
Definition glcompdefs.h:205
glCompObj base
Definition glcompdefs.h:204
glCompCallBacks callbacks
Definition glcompdefs.h:231
glCompPoint GLfinalPos
Definition glcompdefs.h:227
glCompCallBacks functions
Definition glcompdefs.h:232
glMouseButtonType t
Definition glcompdefs.h:223
glCompPoint GLpos
Definition glcompdefs.h:225
glCompPoint GLinitPos
Definition glcompdefs.h:226
glCompObj * clickedObj
Definition glcompdefs.h:230
object prototype
Definition glcompdefs.h:184
glCompCommon common
Definition glcompdefs.h:185
float shadowwidth
Definition glcompdefs.h:198
glCompObj base
Definition glcompdefs.h:197
char * text
Definition glcompdefs.h:199
glCompPoint pos
Definition glcompdefs.h:118
glCompObj ** obj
Definition glcompdefs.h:241
size_t objcnt
Definition glcompdefs.h:242
glCompObj base
Definition glcompdefs.h:240
glCompMouse mouse
Definition glcompdefs.h:245
size_t textureCount
Definition glcompdefs.h:243
glCompTex ** textures
Definition glcompdefs.h:244
char * def
Definition glcompdefs.h:125
uint32_t id
Definition glcompdefs.h:124
unsigned char * data
Definition glcompdefs.h:132
int userCount
Definition glcompdefs.h:130
glCompTexType type
Definition glcompdefs.h:129
char * text
Definition glcompdefs.h:126