Graphviz 13.0.0~dev.20250402.0402
Loading...
Searching...
No Matches
appmouse.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 "appmouse.h"
12#include "topfisheyeview.h"
13#include "arcball.h"
14#include "glmotion.h"
15#include "hotkeymap.h"
16
17#include "selectionfuncs.h"
18#include <stdbool.h>
19#include <stdint.h>
20#include "topviewfuncs.h"
21
22static int lastAction;
23
24static void apply_actions(ViewInfo* v,int x,int y)
25{
26 int a;
27 gdouble seconds;
28 a=get_mode(v);
29 if (a == MM_PAN && view->guiMode == GUI_FULLSCREEN &&
31 a=MM_ROTATE;
32 switch (a) {
33 case MM_ROTATE :
34 seconds = g_timer_elapsed(view->timer3, NULL);
35 if (seconds > 0.1) {
36 g_timer_stop(view->timer3);
37 view->arcball->MousePt.s.X = (float)x;
38 view->arcball->MousePt.s.Y = (float)y;
39 if (!view->arcball->isDragging) {
42 }
43 else
45 g_timer_start(view->timer3);
46 }
47 return;
48 case MM_PAN :
49 glmotion_pan(v);
50 break;
51 case MM_MOVE :
52 break;
54 if (!view->mouse.down) {
56 }
57 break;
60 break;
61 case MM_SINGLE_SELECT :
63 break;
64 case MM_FISHEYE_PICK :
65 if (view->activeGraph >= 0) {
68
69 }
70 break;
71 }
72 lastAction=a;
73}
74
75static void appmouse_down(ViewInfo* v,int x,int y)
76{
77 view->mouse.dragX = 0;
78 view->mouse.dragY = 0;
79 v->mouse.down = true;
80 v->mouse.x = x;
81 v->mouse.y = y;
82
84 to3D( x,y, &v->mouse.GLpos.x,&v->mouse.GLpos.y,&v->mouse.GLpos.z);
85}
86
87void appmouse_up(ViewInfo *v, int x, int y) {
88 v->mouse.down = false;
90 apply_actions(v,x,y);
91 view->mouse.dragX = 0;
92 view->mouse.dragY = 0;
94
95
96}
97
98void appmouse_drag(ViewInfo *v, int x, int y) {
99 v->mouse.x = x;
100 v->mouse.y = y;
101 to3D( x,y, &v->mouse.GLpos.x,&v->mouse.GLpos.y,&v->mouse.GLpos.z);
102 apply_actions(v,x,y);
103}
104
106{
108 appmouse_down(v,x,y);
109
110
111}
112
114{
116 appmouse_down(v,x,y);
117
118
119}
120
122{
124 appmouse_down(v,x,y);
125
126
127}
128
129void appmouse_move(ViewInfo* v,int x,int y)
130{
131 to3D( x,y, &v->mouse.GLpos.x,&v->mouse.GLpos.y,&v->mouse.GLpos.z);
132}
134{
136 {
137 glCompPoly_free(&view->Topview->sel.selPoly);
138 glexpose();
139 }
140 v->keyVal = 0;
141}
143{
144 v->keyVal = key;
145}
146
147
static int lastAction
Definition appmouse.c:22
void appmouse_drag(ViewInfo *v, int x, int y)
Definition appmouse.c:98
void appmouse_key_release(ViewInfo *v)
Definition appmouse.c:133
static void appmouse_down(ViewInfo *v, int x, int y)
Definition appmouse.c:75
void appmouse_move(ViewInfo *v, int x, int y)
Definition appmouse.c:129
void appmouse_key_press(ViewInfo *v, int key)
Definition appmouse.c:142
void appmouse_middle_click_down(ViewInfo *v, int x, int y)
Definition appmouse.c:121
static void apply_actions(ViewInfo *v, int x, int y)
Definition appmouse.c:24
void appmouse_left_click_down(ViewInfo *v, int x, int y)
Definition appmouse.c:105
void appmouse_right_click_down(ViewInfo *v, int x, int y)
Definition appmouse.c:113
void appmouse_up(ViewInfo *v, int x, int y)
Definition appmouse.c:87
void arcmouseClick(void)
Definition arcball.c:142
void arcmouseDrag(void)
Definition arcball.c:150
@ glMouseRightButton
Definition glcompdefs.h:67
@ glMouseMiddleButton
Definition glcompdefs.h:68
@ glMouseLeftButton
Definition glcompdefs.h:67
void glmotion_pan(ViewInfo *v)
Definition glmotion.c:70
void to3D(int x, int y, float *X, float *Y, float *Z)
Definition glutils.c:100
#define SIZE_MAX
Definition gmlscan.c:347
node NULL
Definition grammar.y:163
int get_mode(ViewInfo *v)
Definition hotkeymap.c:166
void add_selpoly(Agraph_t *g, glCompPoly_t *selPoly, glCompPoint pt)
void pick_objects_rect(Agraph_t *g)
void pick_object_xyz(Agraph_t *g, topview *t, float x, float y, float z)
#define GUI_FULLSCREEN
Definition smyrnadefs.h:210
ViewInfo * view
Definition viewport.c:37
#define MM_SINGLE_SELECT
Definition smyrnadefs.h:44
#define MM_ROTATE
Definition smyrnadefs.h:43
#define MM_FISHEYE_PICK
Definition smyrnadefs.h:50
#define MM_RECTANGULAR_SELECT
Definition smyrnadefs.h:45
#define MM_POLYGON_SELECT
Definition smyrnadefs.h:51
#define MM_MOVE
Definition smyrnadefs.h:47
void glexpose(void)
Definition viewport.c:538
#define MM_PAN
Definition smyrnadefs.h:41
Point2fT MousePt
Definition arcball.h:551
int isDragging
Definition arcball.h:554
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
Agraph_t ** g
Definition smyrnadefs.h:295
int activeGraph
Definition smyrnadefs.h:299
glCompMouse mouse
Definition smyrnadefs.h:302
GTimer * timer3
Definition smyrnadefs.h:318
size_t active_camera
<number of cameras
Definition smyrnadefs.h:306
glCompPoly_t selPoly
Definition smyrnadefs.h:213
glCompPoint GLfinalPos
Definition glcompdefs.h:227
glMouseButtonType t
Definition glcompdefs.h:223
glCompPoint GLpos
Definition glcompdefs.h:225
glCompPoint GLinitPos
Definition glcompdefs.h:226
float y
current mouse pos
Definition glcompdefs.h:224
struct topview::@56 fisheyeParams
int active
Definition smyrnadefs.h:221
selection sel
Definition smyrnadefs.h:242
void changetopfishfocus(topview *t, float *x, float *y, int num_foci)