1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
|
/****************************************************************************
GLUI User Interface Toolkit
---------------------------
glui_panel.cpp - GLUI_Panel control class
--------------------------------------------------
Copyright (c) 1998 Paul Rademacher
This program is freely distributable without licensing fees and is
provided without guarantee or warrantee expressed or implied. This
program is -not- in the public domain.
*****************************************************************************/
#include "glui_internal_control.h"
/****************************** GLUI_Tree::GLUI_Tree() **********/
GLUI_Tree::GLUI_Tree(GLUI_Node *parent, const char *name,
int open, int inset)
{
common_init();
GLUI_StaticText *inset_label;
GLUI_Column *col;
this->set_name( name );
this->user_id = -1;
if ( NOT open ) {
this->is_open = false;
this->h = GLUI_DEFAULT_CONTROL_HEIGHT + 7;
}
parent->add_control( this );
inset_label = new GLUI_StaticText(this,"");
inset_label->set_w(inset);
col = new GLUI_Column(this,true);
this->set_column(col);
this->set_alignment(GLUI_ALIGN_LEFT);
}
/****************************** GLUI_Tree::open() **********/
void GLUI_Tree::open( void )
{
if ( is_open )
return;
is_open = true;
GLUI_DRAWINGSENTINAL_IDIOM
child_head = collapsed_node.child_head;
child_tail = collapsed_node.child_tail;
collapsed_node.child_head = NULL;
collapsed_node.child_tail = NULL;
if ( child_head != NULL ) {
((GLUI_Control*) child_head)->unhide_internal( true );
}
glui->refresh();
}
/****************************** GLUI_Tree::close() **********/
void GLUI_Tree::close( void )
{
if ( NOT glui )
return;
if ( NOT is_open )
return;
is_open = false;
GLUI_DRAWINGSENTINAL_IDIOM
if ( child_head != NULL ) {
((GLUI_Control*) child_head)->hide_internal( true );
}
collapsed_node.child_head = first_child();
collapsed_node.child_tail = last_child();
child_head = NULL;
child_tail = NULL;
this->h = GLUI_DEFAULT_CONTROL_HEIGHT + 7;
glui->refresh();
}
/**************************** GLUI_Tree::mouse_down_handler() **********/
int GLUI_Tree::mouse_down_handler( int local_x, int local_y )
{
if ( local_y - y_abs > 18 ) {
initially_inside = currently_inside = false;
return false;
}
currently_inside = true;
initially_inside = true;
redraw();
return false;
}
/**************************** GLUI_Tree::mouse_held_down_handler() ****/
int GLUI_Tree::mouse_held_down_handler(
int local_x, int local_y,
bool new_inside )
{
if ( NOT initially_inside )
return false;
if ( local_y - y_abs> 18 )
new_inside = false;
if (currently_inside != new_inside)
redraw();
return false;
}
/**************************** GLUI_Tree::mouse_down_handler() **********/
int GLUI_Tree::mouse_up_handler( int local_x, int local_y, bool inside )
{
if ( currently_inside ) {
if ( is_open )
close();
else
open();
}
currently_inside = false;
initially_inside = false;
redraw();
return false;
}
/********************************* GLUI_Tree::draw() ***********/
void GLUI_Tree::draw( int x, int y )
{
GLUI_DRAWINGSENTINAL_IDIOM
int left, right, top, bottom, delta_x;
left = 5;
right = w-left;
top = 3;
bottom = 3+16;
delta_x = 0;
glui->draw_raised_box( left, top, 16, 16 );
if ( glui )
glColor3ub(glui->bkgd_color.r,glui->bkgd_color.g,glui->bkgd_color.b);
glDisable( GL_CULL_FACE );
glBegin( GL_QUADS );
glVertex2i( left+17, top+1 ); glVertex2i( right-1, top+1 );
glVertex2i( right-1, bottom-1 ); glVertex2i( left+17, bottom-1 );
glEnd();
if (format & GLUI_TREEPANEL_DISPLAY_HIERARCHY) {
delta_x = string_width( level_name ) + char_width(' ');
glColor3f( lred, lgreen, lblue); /* The hierarchy is drawn in bold */
glRasterPos2i(left + 25, top + 11);
draw_string(level_name);
glRasterPos2i(left + 24, top + 11);
draw_string(level_name);
}
draw_name( delta_x+left+24, top+11 );
if ( active )
draw_active_box( left+22, delta_x+left+string_width( name )+32,
top, bottom-2 );
/** Draw '+' or '-' **/
glBegin( GL_LINES );
if ( is_open ) {
if ( enabled )
if (is_current)
glColor3f( 0, 0, 1 );
else
glColor3f( 0.0, 0.0, 0.0 );
else
glColor3f( 0.5, 0.5, 0.5 );
glVertex2i(left+4,(top+bottom)/2); glVertex2i(left+13,(top+bottom)/2);
glColor3f( 1.0, 1.0, 1.0 );
glVertex2i(left+4,1+(top+bottom)/2);glVertex2i(left+13,1+(top+bottom)/2);
}
else
{
glColor3f( 1.0, 1.0, 1.0 );
glVertex2i(left+9,top+3); glVertex2i(left+9,bottom-4);
glVertex2i(left+4,(top+bottom)/2); glVertex2i(left+13,(top+bottom)/2);
if ( enabled )
if (is_current)
glColor3f( 0, 0, 1 );
else
glColor3f( 0.0, 0.0, 0.0 );
else
glColor3f( 0.5, 0.5, 0.5 );
glVertex2i(left+4,-1+(top+bottom)/2);
glVertex2i(left+13,-1+(top+bottom)/2);
glVertex2i(left+8,top+3);
glVertex2i(left+8,bottom-4);
}
glEnd();
glLineWidth( 1.0 );
if (currently_inside) draw_pressed();
}
/***************************** GLUI_Tree::update_size() **********/
void GLUI_Tree::update_size( void )
{
int text_size = 0, delta_x = 0;
if ( NOT glui )
return;
text_size = string_width(name);
if (format & GLUI_TREEPANEL_DISPLAY_HIERARCHY) {
delta_x = string_width( level_name );
}
if ( w < text_size + 36 + delta_x)
w = text_size + 36 + delta_x;
}
/**************************** GLUI_Tree::draw_pressed() ***********/
void GLUI_Tree::draw_pressed( void )
{
int left, right, top, bottom;
left = 5;
right = w-left;
top = 3;
bottom = 3+16;
glColor3f( 0.0, 0.0, 0.0 );
glBegin( GL_LINE_LOOP );
glVertex2i( left, top ); glVertex2i( right, top );
glVertex2i( right, bottom ); glVertex2i( left,bottom );
glEnd();
glBegin( GL_LINE_LOOP );
glVertex2i( left+1, top+1 ); glVertex2i( right-1, top+1 );
glVertex2i( right-1, bottom-1 ); glVertex2i( left+1,bottom-1 );
glEnd();
}
|