Mercurial > hg > octave-avbm
annotate src/graphics.h.in @ 7833:8ff92634982d
Add initial support for patch rendering through GLU tessellation (no transparency, no border, no markers yet).
* * *
Use facevertexcdata when rendering patch.
* * *
Add patch border rendering (no transparency yet).
author | Michael Goffioul <michael.goffioul@gmail.com> |
---|---|
date | Wed, 20 Feb 2008 16:29:37 +0100 |
parents | e06fdf7ea647 |
children | caab78e7e377 |
rev | line source |
---|---|
6874 | 1 /* |
2 | |
3 Copyright (C) 2007 John W. Eaton | |
4 | |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
6874 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
6874 | 20 |
21 */ | |
22 | |
23 #if !defined (graphics_h) | |
24 #define graphics_h 1 | |
25 | |
26 #ifdef HAVE_CONFIG_H | |
27 #include <config.h> | |
28 #endif | |
29 | |
30 #include <cctype> | |
31 | |
32 #include <algorithm> | |
33 #include <list> | |
34 #include <map> | |
35 #include <set> | |
36 #include <string> | |
37 | |
6890 | 38 #include "gripes.h" |
6874 | 39 #include "oct-map.h" |
40 #include "ov.h" | |
41 | |
7189 | 42 class caseless_str : public std::string |
43 { | |
44 public: | |
45 typedef std::string::iterator iterator; | |
46 typedef std::string::const_iterator const_iterator; | |
47 | |
48 caseless_str (void) : std::string () { } | |
49 caseless_str (const std::string& s) : std::string (s) { } | |
50 caseless_str (const char *s) : std::string (s) { } | |
51 | |
52 caseless_str (const caseless_str& name) : std::string (name) { } | |
53 | |
54 caseless_str& operator = (const caseless_str& pname) | |
55 { | |
56 std::string::operator = (pname); | |
57 return *this; | |
58 } | |
59 | |
60 operator std::string (void) const { return *this; } | |
61 | |
62 // Case-insensitive comparison. | |
63 bool compare (const std::string& s, size_t limit = NPOS) const | |
64 { | |
65 const_iterator p1 = begin (); | |
66 const_iterator p2 = s.begin (); | |
67 | |
68 size_t k = 0; | |
69 | |
70 while (p1 != end () && p2 != s.end () && k++ < limit) | |
71 { | |
72 if (std::tolower (*p1) != std::tolower (*p2)) | |
73 return false; | |
74 | |
75 *p1++; | |
76 *p2++; | |
77 } | |
78 | |
79 return (limit == NPOS) ? size () == s.size () : k == limit; | |
80 } | |
81 }; | |
82 | |
83 // --------------------------------------------------------------------- | |
84 | |
6874 | 85 class graphics_handle |
86 { | |
87 public: | |
88 graphics_handle (void) : val (octave_NaN) { } | |
89 | |
90 graphics_handle (const octave_value& a); | |
91 | |
92 graphics_handle (int a) : val (a) { } | |
93 | |
94 graphics_handle (double a) : val (a) { } | |
95 | |
96 graphics_handle (const graphics_handle& a) : val (a.val) { } | |
97 | |
98 graphics_handle& operator = (const graphics_handle& a) | |
99 { | |
100 if (&a != this) | |
101 val = a.val; | |
102 | |
103 return *this; | |
104 } | |
105 | |
106 ~graphics_handle (void) { } | |
107 | |
108 double value (void) const { return val; } | |
109 | |
110 octave_value as_octave_value (void) const | |
111 { | |
112 return ok () ? octave_value (val) : octave_value (Matrix ()); | |
113 } | |
114 | |
115 graphics_handle operator ++ (void) | |
116 { | |
117 ++val; | |
118 return *this; | |
119 } | |
120 | |
121 graphics_handle operator ++ (int) | |
122 { | |
123 graphics_handle h = *this; | |
124 ++val; | |
125 return h; | |
126 } | |
127 | |
128 graphics_handle operator -- (void) | |
129 { | |
130 --val; | |
131 return *this; | |
132 } | |
133 | |
134 graphics_handle operator -- (int) | |
135 { | |
136 graphics_handle h = *this; | |
137 --val; | |
138 return h; | |
139 } | |
140 | |
141 bool ok (void) const { return ! xisnan (val); } | |
142 | |
143 private: | |
144 double val; | |
145 }; | |
146 | |
147 inline bool | |
148 operator == (const graphics_handle& a, const graphics_handle& b) | |
149 { | |
150 return a.value () == b.value (); | |
151 } | |
152 | |
153 inline bool | |
154 operator != (const graphics_handle& a, const graphics_handle& b) | |
155 { | |
156 return a.value () != b.value (); | |
157 } | |
158 | |
159 inline bool | |
160 operator < (const graphics_handle& a, const graphics_handle& b) | |
161 { | |
162 return a.value () < b.value (); | |
163 } | |
164 | |
165 inline bool | |
166 operator <= (const graphics_handle& a, const graphics_handle& b) | |
167 { | |
168 return a.value () <= b.value (); | |
169 } | |
170 | |
171 inline bool | |
172 operator >= (const graphics_handle& a, const graphics_handle& b) | |
173 { | |
174 return a.value () >= b.value (); | |
175 } | |
176 | |
177 inline bool | |
178 operator > (const graphics_handle& a, const graphics_handle& b) | |
179 { | |
180 return a.value () > b.value (); | |
181 } | |
182 | |
183 // --------------------------------------------------------------------- | |
184 | |
7427 | 185 class base_scaler |
186 { | |
187 public: | |
188 base_scaler (void) { } | |
189 | |
7441 | 190 virtual ~base_scaler (void) { } |
7440 | 191 |
7427 | 192 virtual Matrix scale (const Matrix& m) const |
193 { | |
194 error ("invalid axis scale"); | |
195 return m; | |
196 } | |
197 | |
7829
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
198 virtual NDArray scale (const NDArray& m) const |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
199 { |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
200 error ("invalid axis scale"); |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
201 return m; |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
202 } |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
203 |
7427 | 204 virtual double scale (double d) const |
205 { | |
206 error ("invalid axis scale"); | |
207 return d; | |
208 } | |
209 | |
210 virtual double unscale (double d) const | |
211 { | |
212 error ("invalid axis scale"); | |
213 return d; | |
214 } | |
215 | |
216 virtual base_scaler* clone () const | |
217 { return new base_scaler (); } | |
7832
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
218 |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
219 virtual bool is_linear (void) const |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
220 { return false; } |
7427 | 221 }; |
222 | |
223 class lin_scaler : public base_scaler | |
224 { | |
225 public: | |
226 lin_scaler (void) { } | |
227 | |
228 Matrix scale (const Matrix& m) const { return m; } | |
229 | |
7829
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
230 NDArray scale (const NDArray& m) const { return m; } |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
231 |
7427 | 232 double scale (double d) const { return d; } |
233 | |
234 double unscale (double d) const { return d; } | |
235 | |
236 base_scaler* clone (void) const { return new lin_scaler (); } | |
7832
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
237 |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
238 bool is_linear (void) const { return true; } |
7427 | 239 }; |
240 | |
241 class log_scaler : public base_scaler | |
242 { | |
243 public: | |
244 log_scaler (void) { } | |
245 | |
246 Matrix scale (const Matrix& m) const | |
247 { | |
248 Matrix retval (m.rows (), m.cols ()); | |
7829
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
249 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
250 do_scale (m.data (), retval.fortran_vec (), m.numel ()); |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
251 return retval; |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
252 } |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
253 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
254 NDArray scale (const NDArray& m) const |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
255 { |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
256 NDArray retval (m.dims ()); |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
257 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
258 do_scale (m.data (), retval.fortran_vec (), m.numel ()); |
7427 | 259 return retval; |
260 } | |
261 | |
262 double scale (double d) const | |
263 { return log10 (d); } | |
264 | |
265 double unscale (double d) const | |
266 { return pow (10.0, d); } | |
267 | |
268 base_scaler* clone (void) const | |
269 { return new log_scaler (); } | |
7829
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
270 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
271 private: |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
272 void do_scale (const double *src, double *dest, int n) const |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
273 { |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
274 for (int i = 0; i < n; i++) |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
275 dest[i] = log10(src[i]); |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
276 } |
7427 | 277 }; |
278 | |
279 class scaler | |
280 { | |
281 public: | |
282 scaler (void) : rep (new base_scaler ()) { } | |
283 | |
284 scaler (const scaler& s) : rep (s.rep->clone()) { } | |
285 | |
286 ~scaler (void) { delete rep; } | |
287 | |
288 Matrix scale (const Matrix& m) const | |
289 { return rep->scale (m); } | |
290 | |
7829
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
291 NDArray scale (const NDArray& m) const |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
292 { return rep->scale (m); } |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
293 |
7427 | 294 double scale (double d) const |
295 { return rep->scale (d); } | |
296 | |
297 double unscale (double d) const | |
298 { return rep->unscale (d); } | |
299 | |
7832
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
300 bool is_linear (void) const |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
301 { return rep->is_linear (); } |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
302 |
7427 | 303 scaler& operator = (const scaler& s) |
304 { | |
305 if (rep) | |
306 { | |
307 delete rep; | |
308 rep = 0; | |
309 } | |
310 | |
311 rep = s.rep->clone (); | |
312 | |
313 return *this; | |
314 } | |
315 | |
316 scaler& operator = (const std::string& s) | |
317 { | |
318 if (rep) | |
319 { | |
320 delete rep; | |
321 rep = 0; | |
322 } | |
323 | |
324 if (s == "log") | |
325 rep = new log_scaler (); | |
326 else if (s == "linear") | |
327 rep = new lin_scaler (); | |
328 else | |
329 rep = new base_scaler (); | |
330 | |
331 return *this; | |
332 } | |
333 | |
334 private: | |
335 base_scaler *rep; | |
336 }; | |
337 | |
338 // --------------------------------------------------------------------- | |
339 | |
7363 | 340 class property; |
341 | |
342 class base_property | |
343 { | |
344 public: | |
345 friend class property; | |
346 | |
347 public: | |
348 base_property (void) : count (0) { } | |
349 | |
350 base_property (const std::string& s, const graphics_handle& h) | |
351 : count (0), name (s), parent (h), hidden (false) { } | |
352 | |
353 base_property (const base_property& p) | |
354 : count (0), name (p.name), parent (p.parent), hidden (p.hidden) { } | |
355 | |
356 virtual ~base_property (void) { } | |
357 | |
358 bool ok (void) const { return parent.ok (); } | |
359 | |
360 std::string get_name (void) const { return name; } | |
361 | |
362 void set_name (const std::string& s) { name = s; } | |
363 | |
364 graphics_handle get_parent (void) const { return parent; } | |
365 | |
366 void set_parent (const graphics_handle &h) { parent = h; } | |
367 | |
368 bool is_hidden (void) const { return hidden; } | |
369 | |
370 void set_hidden (bool flag) { hidden = flag; } | |
371 | |
7364 | 372 virtual void set (const octave_value&) |
7363 | 373 { error ("set: invalid property \"%s\"", name.c_str ()); } |
374 | |
375 virtual octave_value get (void) const | |
376 { | |
377 error ("get: invalid property \"%s\"", name.c_str ()); | |
378 return octave_value (); | |
379 } | |
380 | |
381 base_property& operator = (const octave_value& val) | |
382 { | |
383 set (val); | |
384 return *this; | |
385 } | |
386 | |
387 private: | |
388 int count; | |
389 std::string name; | |
390 graphics_handle parent; | |
391 bool hidden; | |
392 }; | |
393 | |
394 // --------------------------------------------------------------------- | |
395 | |
396 class string_property : public base_property | |
397 { | |
398 public: | |
399 string_property (const std::string& s, const graphics_handle& h, | |
400 const std::string& val = "") | |
401 : base_property (s, h), str (val) { } | |
402 | |
403 string_property (const string_property& p) | |
404 : base_property (p), str (p.str) { } | |
405 | |
406 void set (const octave_value& val) | |
407 { | |
408 if (val.is_string ()) | |
409 str = val.string_value (); | |
410 else | |
411 error ("set: invalid string property value for \"%s\"", | |
412 get_name ().c_str ()); | |
413 } | |
414 | |
415 octave_value get (void) const | |
416 { return octave_value (str); } | |
417 | |
418 std::string string_value (void) const { return str; } | |
419 | |
420 string_property& operator = (const octave_value& val) | |
421 { | |
422 set (val); | |
423 return *this; | |
424 } | |
425 | |
426 private: | |
427 std::string str; | |
428 }; | |
429 | |
430 // --------------------------------------------------------------------- | |
431 | |
432 class radio_values | |
433 { | |
434 public: | |
435 OCTINTERP_API radio_values (const std::string& opt_string = std::string ()); | |
436 | |
437 radio_values (const radio_values& a) | |
438 : default_val (a.default_val), possible_vals (a.possible_vals) { } | |
439 | |
440 radio_values& operator = (const radio_values& a) | |
441 { | |
442 if (&a != this) | |
443 { | |
444 default_val = a.default_val; | |
445 possible_vals = a.possible_vals; | |
446 } | |
447 | |
448 return *this; | |
449 } | |
450 | |
451 std::string default_value (void) const { return default_val; } | |
452 | |
453 bool validate (const std::string& val) | |
454 { | |
455 bool retval = true; | |
456 | |
457 if (! contains (val)) | |
458 { | |
459 error ("invalid value = %s", val.c_str ()); | |
460 retval = false; | |
461 } | |
462 | |
463 return retval; | |
464 } | |
465 | |
466 bool contains (const std::string& val) | |
467 { | |
468 return (possible_vals.find (val) != possible_vals.end ()); | |
469 } | |
470 | |
471 private: | |
472 // Might also want to cache | |
473 std::string default_val; | |
474 std::set<caseless_str> possible_vals; | |
475 }; | |
476 | |
477 class radio_property : public base_property | |
478 { | |
479 public: | |
7364 | 480 radio_property (const std::string& nm, const graphics_handle& h, |
7363 | 481 const radio_values& v = radio_values ()) |
7364 | 482 : base_property (nm, h), |
7363 | 483 vals (v), current_val (v.default_value ()) { } |
484 | |
7364 | 485 radio_property (const std::string& nm, const graphics_handle& h, |
7363 | 486 const std::string& v) |
7364 | 487 : base_property (nm, h), |
7363 | 488 vals (v), current_val (vals.default_value ()) { } |
489 | |
7364 | 490 radio_property (const std::string& nm, const graphics_handle& h, |
7363 | 491 const radio_values& v, const std::string& def) |
7364 | 492 : base_property (nm, h), |
7363 | 493 vals (v), current_val (def) { } |
494 | |
495 radio_property (const radio_property& p) | |
496 : base_property (p), vals (p.vals), current_val (p.current_val) { } | |
497 | |
498 void set (const octave_value& newval) | |
499 { | |
500 if (newval.is_string ()) | |
501 { | |
502 std::string s = newval.string_value (); | |
503 if (vals.validate (s)) | |
504 current_val = s; | |
505 else | |
506 error ("set: invalid value for radio property \"%s\" (value = %s)", | |
507 get_name ().c_str (), s.c_str ()); | |
508 } | |
509 else | |
510 error ("set: invalid value for radio property \"%s\"", | |
511 get_name ().c_str ()); | |
512 } | |
513 | |
514 octave_value get (void) const { return octave_value (current_val); } | |
515 | |
516 const std::string& current_value (void) const { return current_val; } | |
517 | |
518 bool is (const caseless_str& v) const | |
519 { return v.compare (current_val); } | |
520 | |
521 radio_property& operator = (const octave_value& val) | |
522 { | |
523 set (val); | |
524 return *this; | |
525 } | |
526 | |
527 private: | |
528 radio_values vals; | |
529 std::string current_val; | |
530 }; | |
531 | |
532 // --------------------------------------------------------------------- | |
533 | |
534 class color_values | |
535 { | |
536 public: | |
537 color_values (double r = 0, double g = 0, double b = 1) | |
538 : xrgb (1, 3) | |
539 { | |
540 xrgb(0) = r; | |
541 xrgb(1) = g; | |
542 xrgb(2) = b; | |
543 | |
544 validate (); | |
545 } | |
546 | |
547 color_values (std::string str) | |
548 : xrgb (1, 3) | |
549 { | |
550 if (! str2rgb (str)) | |
551 error ("invalid color specification: %s", str.c_str ()); | |
552 } | |
553 | |
554 color_values (const color_values& c) | |
555 : xrgb (c.xrgb) | |
556 { } | |
557 | |
558 color_values& operator = (const color_values& c) | |
559 { | |
560 if (&c != this) | |
561 xrgb = c.xrgb; | |
562 | |
563 return *this; | |
564 } | |
565 | |
566 Matrix rgb (void) const { return xrgb; } | |
567 | |
568 operator octave_value (void) const { return xrgb; } | |
569 | |
570 void validate (void) const | |
571 { | |
572 for (int i = 0; i < 3; i++) | |
573 { | |
574 if (xrgb(i) < 0 || xrgb(i) > 1) | |
575 { | |
576 error ("invalid RGB color specification"); | |
577 break; | |
578 } | |
579 } | |
580 } | |
581 | |
582 private: | |
583 Matrix xrgb; | |
584 | |
585 OCTINTERP_API bool str2rgb (std::string str); | |
586 }; | |
587 | |
588 class color_property : public base_property | |
589 { | |
590 public: | |
591 color_property (const color_values& c, const radio_values& v) | |
592 : base_property ("", graphics_handle ()), | |
593 current_type (color_t), color_val (c), radio_val (v), | |
594 current_val (v.default_value ()) | |
595 { } | |
596 | |
7364 | 597 color_property (const std::string& nm, const graphics_handle& h, |
7363 | 598 const color_values& c = color_values (), |
599 const radio_values& v = radio_values ()) | |
7364 | 600 : base_property (nm, h), |
7363 | 601 current_type (color_t), color_val (c), radio_val (v), |
602 current_val (v.default_value ()) | |
603 { } | |
604 | |
7364 | 605 color_property (const std::string& nm, const graphics_handle& h, |
7363 | 606 const radio_values& v) |
7364 | 607 : base_property (nm, h), |
7363 | 608 current_type (radio_t), color_val (color_values ()), radio_val (v), |
609 current_val (v.default_value ()) | |
610 { } | |
611 | |
7364 | 612 color_property (const std::string& nm, const graphics_handle& h, |
7363 | 613 const std::string& v) |
7364 | 614 : base_property (nm, h), |
7363 | 615 current_type (radio_t), color_val (color_values ()), radio_val (v), |
616 current_val (radio_val.default_value ()) | |
617 { } | |
618 | |
7364 | 619 color_property (const std::string& nm, const graphics_handle& h, |
7363 | 620 const color_property& v) |
7364 | 621 : base_property (nm, h), |
7363 | 622 current_type (v.current_type), color_val (v.color_val), |
623 radio_val (v.radio_val), current_val (v.current_val) | |
624 { } | |
625 | |
626 color_property (const color_property& p) | |
627 : base_property (p), current_type (p.current_type), | |
628 color_val (p.color_val), radio_val (p.radio_val), | |
629 current_val (p.current_val) { } | |
630 | |
631 octave_value get (void) const | |
632 { | |
633 if (current_type == color_t) | |
634 return color_val.rgb (); | |
635 | |
636 return current_val; | |
637 } | |
638 | |
639 OCTINTERP_API void set (const octave_value& newval); | |
640 | |
641 bool is_rgb (void) const { return (current_type == color_t); } | |
642 | |
643 bool is_radio (void) const { return (current_type == radio_t); } | |
644 | |
645 bool is (const std::string& v) const | |
646 { return (is_radio () && current_val == v); } | |
647 | |
648 Matrix rgb (void) const | |
649 { | |
650 if (current_type != color_t) | |
651 error ("color has no rgb value"); | |
652 | |
653 return color_val.rgb (); | |
654 } | |
655 | |
656 const std::string& current_value (void) const | |
657 { | |
658 if (current_type != radio_t) | |
659 error ("color has no radio value"); | |
660 | |
661 return current_val; | |
662 } | |
663 | |
664 color_property& operator = (const octave_value& val) | |
665 { | |
666 set (val); | |
667 return *this; | |
668 } | |
669 | |
670 operator octave_value (void) const { return get (); } | |
671 | |
672 private: | |
673 enum current_enum { color_t, radio_t } current_type; | |
674 color_values color_val; | |
675 radio_values radio_val; | |
676 std::string current_val; | |
677 }; | |
678 | |
679 // --------------------------------------------------------------------- | |
680 | |
681 class double_property : public base_property | |
682 { | |
683 public: | |
7364 | 684 double_property (const std::string& nm, const graphics_handle& h, |
7363 | 685 double d = 0) |
7364 | 686 : base_property (nm, h), |
7363 | 687 current_val (d) { } |
688 | |
689 double_property (const double_property& p) | |
690 : base_property (p), current_val (p.current_val) { } | |
691 | |
692 void set (const octave_value& v) | |
693 { | |
694 if (v.is_scalar_type () && v.is_real_type ()) | |
695 current_val = v.double_value (); | |
696 else | |
697 error ("set: invalid value for double property \"%s\"", | |
698 get_name ().c_str ()); | |
699 } | |
700 | |
701 octave_value get (void) const { return octave_value (current_val); } | |
702 | |
703 double double_value (void) const { return current_val; } | |
704 | |
705 double_property& operator = (const octave_value& val) | |
706 { | |
707 set (val); | |
708 return *this; | |
709 } | |
710 | |
711 private: | |
712 double current_val; | |
713 }; | |
714 | |
715 // --------------------------------------------------------------------- | |
716 | |
717 class array_property : public base_property | |
718 { | |
719 public: | |
7364 | 720 array_property (const std::string& nm, const graphics_handle& h, |
7363 | 721 const octave_value& m) |
7364 | 722 : base_property (nm, h), data (m) { } |
7363 | 723 |
724 octave_value get (void) const { return data; } | |
725 | |
726 void set (const octave_value& v) | |
727 { | |
728 if (validate (v)) | |
729 data = v; | |
730 else | |
731 error ("invalid value for array property \"%s\"", | |
732 get_name ().c_str ()); | |
733 } | |
734 | |
735 void add_constraint (const std::string& type) | |
736 { type_constraints.push_back (type); } | |
737 | |
7524
a653856aa3e1
array_value::add_constraint: pass dim_vector as const reference, not value
John W. Eaton <jwe@octave.org>
parents:
7523
diff
changeset
|
738 void add_constraint (const dim_vector& dims) |
7363 | 739 { size_constraints.push_back (dims); } |
740 | |
741 array_property& operator = (const octave_value& val) | |
742 { | |
743 set (val); | |
744 return *this; | |
745 } | |
746 | |
747 private: | |
748 OCTINTERP_API bool validate (const octave_value& v); | |
749 | |
7523
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
750 protected: |
7363 | 751 octave_value data; |
752 std::list<std::string> type_constraints; | |
753 std::list<dim_vector> size_constraints; | |
754 }; | |
755 | |
7523
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
756 class row_vector_property : public array_property |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
757 { |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
758 public: |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
759 row_vector_property (const std::string& nm, const graphics_handle& h, |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
760 const octave_value& m) |
7527
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
761 : array_property (nm, h, m) |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
762 { |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
763 add_constraint (dim_vector (-1, 1)); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
764 add_constraint (dim_vector (1, -1)); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
765 } |
7523
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
766 |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
767 void set (const octave_value& v) |
7527
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
768 { |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
769 array_property::set (v); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
770 |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
771 if (! error_state) |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
772 { |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
773 dim_vector dv = data.dims (); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
774 |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
775 if (dv(0) > 1 && dv(1) == 1) |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
776 { |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
777 int tmp = dv(0); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
778 dv(0) = dv(1); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
779 dv(1) = tmp; |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
780 |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
781 data = data.reshape (dv); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
782 } |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
783 } |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
784 } |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
785 |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
786 void add_constraint (const std::string& type) |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
787 { |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
788 array_property::add_constraint (type); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
789 } |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
790 |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
791 void add_constraint (const dim_vector& dims) |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
792 { |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
793 array_property::add_constraint (dims); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
794 } |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
795 |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
796 void add_constraint (octave_idx_type len) |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
797 { |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
798 size_constraints.remove (dim_vector (1, -1)); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
799 size_constraints.remove (dim_vector (-1, 1)); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
800 |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
801 add_constraint (dim_vector (1, len)); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
802 add_constraint (dim_vector (len, 1)); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
803 } |
7523
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
804 |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
805 row_vector_property& operator = (const octave_value& val) |
7527
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
806 { |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
807 set (val); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
808 return *this; |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
809 } |
7523
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
810 |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
811 private: |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
812 OCTINTERP_API bool validate (const octave_value& v); |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
813 }; |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
814 |
7363 | 815 // --------------------------------------------------------------------- |
816 | |
817 class data_property : public base_property | |
818 { | |
819 public: | |
820 data_property (void) | |
821 : base_property ("", graphics_handle ()) { } | |
822 | |
7364 | 823 data_property (const std::string& nm, const graphics_handle& h, |
7363 | 824 const NDArray& m = NDArray ()) |
7364 | 825 : base_property (nm, h), |
7363 | 826 data (m), xmin (octave_Inf), xmax (-octave_Inf), xminp (octave_Inf) |
827 { | |
828 get_data_limits (); | |
829 } | |
830 | |
7364 | 831 data_property (const std::string& nm, const graphics_handle& h, |
7363 | 832 const Matrix& m) |
7364 | 833 : base_property (nm, h), |
7363 | 834 data (m), xmin (octave_Inf), xmax (-octave_Inf), xminp (octave_Inf) |
835 { | |
836 get_data_limits (); | |
837 } | |
838 | |
839 data_property (const data_property& p) | |
840 : base_property (p), data (p.data), | |
841 xmin (p.xmin), xmax (p.xmax), xminp (p.xminp) { } | |
842 | |
843 void set (const octave_value& val) | |
844 { | |
845 data = val.array_value (); | |
846 | |
847 get_data_limits (); | |
848 } | |
849 | |
850 octave_value get (void) const { return data; } | |
851 | |
852 NDArray array_value (void) const { return data; } | |
853 | |
854 Matrix matrix_value (void) const { return data.matrix_value (); } | |
855 | |
856 double min_val (void) const { return xmin; } | |
857 double max_val (void) const { return xmax; } | |
858 double min_pos (void) const { return xminp; } | |
859 | |
860 data_property& operator = (const octave_value& val) | |
861 { | |
862 set (val); | |
863 return *this; | |
864 } | |
865 | |
866 private: | |
867 NDArray data; | |
868 double xmin; | |
869 double xmax; | |
870 double xminp; | |
871 | |
872 void get_data_limits (void) | |
873 { | |
874 octave_idx_type nel = data.numel (); | |
875 | |
7395 | 876 xmin = xminp = octave_Inf; |
877 xmax = -octave_Inf; | |
878 | |
7363 | 879 if (nel > 0) |
880 { | |
881 const double *d = data.data (); | |
882 | |
883 for (octave_idx_type i = 0; i < nel; i++) | |
884 { | |
885 double val = d[i]; | |
886 | |
887 if (! (xisinf (val) || xisnan (val))) | |
888 { | |
889 if (val < xmin) | |
890 xmin = val; | |
891 | |
892 if (val > xmax) | |
893 xmax = val; | |
894 | |
895 if (val > 0 && val < xminp) | |
896 xminp = val; | |
897 } | |
898 } | |
899 } | |
900 } | |
901 }; | |
902 | |
903 // --------------------------------------------------------------------- | |
904 | |
905 class bool_property : public radio_property | |
906 { | |
907 public: | |
7364 | 908 bool_property (const std::string& nm, const graphics_handle& h, |
7363 | 909 bool val) |
7364 | 910 : radio_property (nm, h, radio_values (val ? "{on}|off" : "on|{off}")) |
7363 | 911 { } |
912 | |
7364 | 913 bool_property (const std::string& nm, const graphics_handle& h, |
7363 | 914 const char* val) |
7364 | 915 : radio_property (nm, h, radio_values ("on|off"), val) |
7363 | 916 { } |
917 | |
918 bool_property (const bool_property& p) | |
919 : radio_property (p) { } | |
920 | |
921 void set (const octave_value& val) | |
922 { | |
923 if (val.is_bool_scalar ()) | |
924 radio_property::set (val.bool_value () ? "on" : "off"); | |
925 else | |
926 radio_property::set (val); | |
927 } | |
928 | |
929 bool is_on (void) const { return is ("on"); } | |
930 | |
931 bool_property& operator = (const octave_value& val) | |
932 { | |
933 set (val); | |
934 return *this; | |
935 } | |
936 }; | |
937 | |
938 // --------------------------------------------------------------------- | |
939 | |
940 class handle_property : public base_property | |
941 { | |
942 public: | |
7364 | 943 handle_property (const std::string& nm, const graphics_handle& h, |
7363 | 944 const graphics_handle& val = graphics_handle ()) |
7364 | 945 : base_property (nm, h), |
7363 | 946 current_val (val) { } |
947 | |
948 handle_property (const handle_property& p) | |
949 : base_property (p), current_val (p.current_val) { } | |
950 | |
951 OCTINTERP_API void set (const octave_value& v); | |
952 | |
953 octave_value get (void) const { return current_val.as_octave_value (); } | |
954 | |
955 graphics_handle handle_value (void) const { return current_val; } | |
956 | |
957 handle_property& operator = (const octave_value& val) | |
958 { | |
959 set (val); | |
960 return *this; | |
961 } | |
962 | |
963 handle_property& operator = (const graphics_handle& h) | |
964 { | |
965 set (octave_value (h.value ())); | |
966 return *this; | |
967 } | |
968 | |
969 private: | |
970 graphics_handle current_val; | |
971 }; | |
972 | |
973 // --------------------------------------------------------------------- | |
974 | |
975 class any_property : public base_property | |
976 { | |
977 public: | |
7364 | 978 any_property (const std::string& nm, const graphics_handle& h, |
7363 | 979 const octave_value& m = Matrix ()) |
7364 | 980 : base_property (nm, h), data (m) { } |
7363 | 981 |
982 octave_value get (void) const { return data; } | |
983 | |
984 void set (const octave_value& v) { data = v; } | |
985 | |
986 any_property& operator = (const octave_value& val) | |
987 { | |
988 set (val); | |
989 return *this; | |
990 } | |
991 | |
992 private: | |
993 octave_value data; | |
994 }; | |
995 | |
996 // --------------------------------------------------------------------- | |
997 | |
998 class callback_property : public base_property | |
999 { | |
1000 public: | |
7364 | 1001 callback_property (const std::string& nm, const graphics_handle& h, |
7363 | 1002 const octave_value& m) |
7364 | 1003 : base_property (nm, h), callback (m) { } |
7363 | 1004 |
1005 octave_value get (void) const { return callback; } | |
1006 | |
1007 void set (const octave_value& v) | |
1008 { | |
1009 if (validate (v)) | |
1010 callback = v; | |
1011 else | |
1012 error ("invalid value for callback property \"%s\"", | |
1013 get_name ().c_str ()); | |
1014 } | |
1015 | |
7367 | 1016 OCTINTERP_API void execute (const octave_value& data = octave_value ()) const; |
7363 | 1017 |
7824
adb520646d7e
Fix execution of callback strings and allow execution of callback by name.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7822
diff
changeset
|
1018 OCTINTERP_API static |
adb520646d7e
Fix execution of callback strings and allow execution of callback by name.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7822
diff
changeset
|
1019 void execute (const octave_value& cb, const graphics_handle& h, |
adb520646d7e
Fix execution of callback strings and allow execution of callback by name.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7822
diff
changeset
|
1020 const octave_value& data = octave_value ()); |
adb520646d7e
Fix execution of callback strings and allow execution of callback by name.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7822
diff
changeset
|
1021 |
adb520646d7e
Fix execution of callback strings and allow execution of callback by name.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7822
diff
changeset
|
1022 |
7363 | 1023 callback_property& operator = (const octave_value& val) |
1024 { | |
1025 set (val); | |
1026 return *this; | |
1027 } | |
1028 | |
1029 private: | |
1030 OCTINTERP_API bool validate (const octave_value& v) const; | |
1031 | |
1032 private: | |
1033 octave_value callback; | |
1034 }; | |
1035 | |
1036 // --------------------------------------------------------------------- | |
1037 | |
1038 class property | |
1039 { | |
1040 public: | |
1041 property (void) : rep (new base_property ("", graphics_handle ())) | |
1042 { rep->count++; } | |
1043 | |
1044 property (base_property *bp, bool persist = false) : rep (bp) | |
1045 { rep->count++; if (persist) rep->count++; } | |
1046 | |
1047 property (const property& p) | |
1048 { | |
1049 rep = p.rep; | |
1050 rep->count++; | |
1051 } | |
1052 | |
1053 ~property (void) | |
1054 { | |
1055 if (--rep->count <= 0) | |
1056 delete rep; | |
1057 } | |
1058 | |
1059 bool ok (void) const | |
1060 { return rep->ok (); } | |
1061 | |
1062 std::string get_name (void) const | |
1063 { return rep->get_name (); } | |
1064 | |
1065 void set_name (const std::string& name) | |
1066 { rep->set_name (name); } | |
1067 | |
1068 graphics_handle get_parent (void) const | |
1069 { return rep->get_parent (); } | |
1070 | |
1071 void set_parent (const graphics_handle& h) | |
1072 { rep->set_parent (h); } | |
1073 | |
1074 bool is_hidden (void) const | |
1075 { return rep->is_hidden (); } | |
1076 | |
1077 void set_hidden (bool flag) | |
1078 { rep->set_hidden (flag); } | |
1079 | |
1080 octave_value get (void) const | |
1081 { return rep->get (); } | |
1082 | |
1083 void set (const octave_value& val) | |
1084 { rep->set (val); } | |
1085 | |
1086 property& operator = (const octave_value& val) | |
1087 { | |
1088 *rep = val; | |
1089 return *this; | |
1090 } | |
1091 | |
1092 property& operator = (const property& p) | |
1093 { | |
1094 if (rep && --rep->count <= 0) | |
1095 delete rep; | |
1096 | |
1097 rep = p.rep; | |
1098 rep->count++; | |
1099 | |
1100 return *this; | |
1101 } | |
1102 | |
1103 /* | |
1104 const string_property& as_string_property (void) const | |
1105 { return *(dynamic_cast<string_property*> (rep)); } | |
1106 | |
1107 const radio_property& as_radio_property (void) const | |
1108 { return *(dynamic_cast<radio_property*> (rep)); } | |
1109 | |
1110 const color_property& as_color_property (void) const | |
1111 { return *(dynamic_cast<color_property*> (rep)); } | |
1112 | |
1113 const double_property& as_double_property (void) const | |
1114 { return *(dynamic_cast<double_property*> (rep)); } | |
1115 | |
1116 const data_property& as_data_property (void) const | |
1117 { return *(dynamic_cast<data_property*> (rep)); } | |
1118 | |
1119 const bool_property& as_bool_property (void) const | |
1120 { return *(dynamic_cast<bool_property*> (rep)); } | |
1121 | |
1122 const handle_property& as_handle_property (void) const | |
1123 { return *(dynamic_cast<handle_property*> (rep)); } | |
1124 */ | |
1125 | |
1126 private: | |
1127 base_property *rep; | |
1128 }; | |
1129 | |
1130 // --------------------------------------------------------------------- | |
1131 | |
1132 class property_list | |
1133 { | |
1134 public: | |
1135 typedef std::map<std::string, octave_value> pval_map_type; | |
1136 typedef std::map<std::string, pval_map_type> plist_map_type; | |
1137 | |
1138 typedef pval_map_type::iterator pval_map_iterator; | |
1139 typedef pval_map_type::const_iterator pval_map_const_iterator; | |
1140 | |
1141 typedef plist_map_type::iterator plist_map_iterator; | |
1142 typedef plist_map_type::const_iterator plist_map_const_iterator; | |
1143 | |
1144 property_list (const plist_map_type& m = plist_map_type ()) | |
1145 : plist_map (m) { } | |
1146 | |
1147 ~property_list (void) { } | |
1148 | |
1149 void set (const caseless_str& name, const octave_value& val); | |
1150 | |
1151 octave_value lookup (const caseless_str& name) const; | |
1152 | |
1153 plist_map_iterator begin (void) { return plist_map.begin (); } | |
1154 plist_map_const_iterator begin (void) const { return plist_map.begin (); } | |
1155 | |
1156 plist_map_iterator end (void) { return plist_map.end (); } | |
1157 plist_map_const_iterator end (void) const { return plist_map.end (); } | |
1158 | |
1159 plist_map_iterator find (const std::string& go_name) | |
1160 { | |
1161 return plist_map.find (go_name); | |
1162 } | |
1163 | |
1164 plist_map_const_iterator find (const std::string& go_name) const | |
1165 { | |
1166 return plist_map.find (go_name); | |
1167 } | |
1168 | |
1169 Octave_map as_struct (const std::string& prefix_arg) const; | |
1170 | |
1171 private: | |
1172 plist_map_type plist_map; | |
1173 }; | |
1174 | |
1175 // --------------------------------------------------------------------- | |
1176 | |
7419 | 1177 class graphics_backend; |
1178 | |
1179 class base_graphics_backend | |
1180 { | |
1181 public: | |
1182 friend class graphics_backend; | |
1183 | |
1184 public: | |
1185 base_graphics_backend (const std::string& nm) | |
1186 : name (nm), count (0) { } | |
1187 | |
1188 virtual ~base_graphics_backend (void) { } | |
1189 | |
1190 std::string get_name (void) const { return name; } | |
1191 | |
1192 virtual bool is_valid (void) const { return false; } | |
1193 | |
1194 virtual void close_figure (const octave_value&) const | |
7826
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1195 { gripe_invalid ("close_figure"); } |
7419 | 1196 |
1197 virtual void redraw_figure (const graphics_handle&) const | |
7826
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1198 { gripe_invalid ("redraw_figure"); } |
7419 | 1199 |
1200 virtual void print_figure (const graphics_handle&, const std::string&, | |
1201 const std::string&, bool, | |
1202 const std::string& = "") const | |
7826
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1203 { gripe_invalid ("print_figure"); } |
7419 | 1204 |
1205 virtual Matrix get_canvas_size (const graphics_handle&) const | |
1206 { | |
7826
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1207 gripe_invalid ("get_canvas_size"); |
7419 | 1208 return Matrix (1, 2, 0.0); |
1209 } | |
1210 | |
7427 | 1211 virtual double get_screen_resolution (void) const |
1212 { | |
7826
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1213 gripe_invalid ("get_screen_resolution"); |
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1214 return 72.0; |
7427 | 1215 } |
7445 | 1216 |
1217 virtual Matrix get_screen_size (void) const | |
1218 { | |
7826
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1219 gripe_invalid ("get_screen_size"); |
7445 | 1220 return Matrix (1, 2, 0.0); |
1221 } | |
7427 | 1222 |
7826
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1223 virtual void set_figure_position (const graphics_handle&, const Matrix&) const |
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1224 { gripe_invalid ("set_figure_position"); } |
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1225 |
7419 | 1226 private: |
1227 std::string name; | |
1228 int count; | |
7826
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1229 |
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1230 private: |
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1231 void gripe_invalid (const std::string& fname) const |
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1232 { |
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1233 if (! is_valid ()) |
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1234 error ("%s: invalid graphics backend", fname.c_str ()); |
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1235 } |
7419 | 1236 }; |
1237 | |
1238 class graphics_backend | |
1239 { | |
1240 public: | |
1241 graphics_backend (void) | |
1242 : rep (new base_graphics_backend ("unknown")) | |
1243 { | |
1244 rep->count++; | |
1245 } | |
1246 | |
1247 graphics_backend (base_graphics_backend* b) | |
1248 : rep (b) | |
1249 { | |
1250 rep->count++; | |
1251 } | |
1252 | |
1253 graphics_backend (const graphics_backend& b) | |
1254 : rep (b.rep) | |
1255 { | |
1256 rep->count++; | |
1257 } | |
1258 | |
1259 ~graphics_backend (void) | |
1260 { | |
1261 if (--rep->count == 0) | |
1262 delete rep; | |
1263 } | |
1264 | |
1265 graphics_backend& operator = (const graphics_backend& b) | |
1266 { | |
1267 if (rep != b.rep) | |
1268 { | |
1269 if (--rep->count == 0) | |
1270 delete rep; | |
1271 | |
1272 rep = b.rep; | |
1273 rep->count++; | |
1274 } | |
1275 | |
1276 return *this; | |
1277 } | |
1278 | |
1279 operator bool (void) const { return rep->is_valid (); } | |
1280 | |
1281 std::string get_name (void) const { return rep->get_name (); } | |
1282 | |
1283 void close_figure (const octave_value& pstream) const | |
1284 { rep->close_figure (pstream); } | |
1285 | |
1286 void redraw_figure (const graphics_handle& fh) const | |
1287 { rep->redraw_figure (fh); } | |
1288 | |
1289 void print_figure (const graphics_handle& fh, const std::string& term, | |
1290 const std::string& file, bool mono, | |
1291 const std::string& debug_file = "") const | |
1292 { rep->print_figure (fh, term, file, mono, debug_file); } | |
1293 | |
1294 Matrix get_canvas_size (const graphics_handle& fh) const | |
1295 { return rep->get_canvas_size (fh); } | |
1296 | |
7427 | 1297 double get_screen_resolution (void) const |
1298 { return rep->get_screen_resolution (); } | |
1299 | |
7445 | 1300 Matrix get_screen_size (void) const |
1301 { return rep->get_screen_size (); } | |
1302 | |
7826
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1303 void set_figure_position (const graphics_handle& h, const Matrix& pos) const |
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1304 { rep->set_figure_position (h, pos); } |
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
1305 |
7419 | 1306 OCTINTERP_API static graphics_backend default_backend (void); |
1307 | |
1308 static void register_backend (const graphics_backend& b) | |
1309 { available_backends[b.get_name ()] = b; } | |
1310 | |
1311 static void unregister_backend (const std::string& name) | |
1312 { available_backends.erase (name); } | |
1313 | |
7439 | 1314 static graphics_backend find_backend (const std::string& name) |
1315 { | |
1316 const_available_backends_iterator p = available_backends.find (name); | |
1317 | |
1318 if (p != available_backends.end ()) | |
1319 return p->second; | |
1320 else | |
1321 return default_backend (); | |
1322 } | |
1323 | |
7419 | 1324 private: |
1325 base_graphics_backend *rep; | |
1326 | |
7445 | 1327 static OCTINTERP_API std::map<std::string, graphics_backend> available_backends; |
7439 | 1328 |
1329 typedef std::map<std::string, graphics_backend>::iterator available_backends_iterator; | |
1330 typedef std::map<std::string, graphics_backend>::const_iterator const_available_backends_iterator; | |
7419 | 1331 }; |
1332 | |
1333 // --------------------------------------------------------------------- | |
1334 | |
6874 | 1335 class base_graphics_object; |
1336 | |
7365 | 1337 class OCTINTERP_API base_properties |
6874 | 1338 { |
1339 public: | |
7176 | 1340 base_properties (const std::string& ty = "unknown", |
7363 | 1341 const graphics_handle& mh = graphics_handle (), |
1342 const graphics_handle& p = graphics_handle ()) | |
7404 | 1343 : beingdeleted ("beingdeleted", mh, false), |
7366 | 1344 busyaction ("parent", mh, "{queue}|cancel"), |
7367 | 1345 buttondownfcn ("buttondownfcn", mh, Matrix ()), |
7404 | 1346 children (), |
7366 | 1347 clipping ("clipping", mh, true), |
7406 | 1348 createfcn ("createfcn", mh, Matrix ()), |
7367 | 1349 deletefcn ("deletefcn", mh, Matrix ()), |
7366 | 1350 handlevisibility ("handlevisibility", mh, "{on}|callback|off"), |
1351 hittest ("hittest", mh, true), | |
1352 interruptible ("interruptible", mh, true), | |
7404 | 1353 parent ("parent", mh, p), |
7366 | 1354 selected ("selected", mh, false), |
1355 selectionhighlight ("selectionhighlight", mh, true), | |
7404 | 1356 tag ("tag", mh), |
1357 type ("type", mh, ty), | |
7367 | 1358 userdata ("userdata", mh, Matrix ()), |
7403 | 1359 visible ("visible", mh, true), |
7404 | 1360 __modified__ ("__modified__", mh, true), |
1361 __myhandle__ (mh), | |
1362 uicontextmenu ("uicontextmenu", mh, graphics_handle ()) | |
7363 | 1363 { } |
6874 | 1364 |
1365 virtual ~base_properties (void) { } | |
1366 | |
1367 virtual std::string graphics_object_name (void) const { return "unknonwn"; } | |
1368 | |
1369 void mark_modified (void); | |
1370 | |
1371 void override_defaults (base_graphics_object& obj); | |
1372 | |
1373 // Look through DEFAULTS for properties with given CLASS_NAME, and | |
1374 // apply them to the current object with set (virtual method). | |
1375 | |
1376 void set_from_list (base_graphics_object& obj, property_list& defaults); | |
1377 | |
7363 | 1378 void insert_property (const std::string& name, property p) |
1379 { | |
1380 p.set_name (name); | |
1381 p.set_parent (__myhandle__); | |
1382 all_props[name] = p; | |
1383 } | |
1384 | |
1385 virtual void set (const caseless_str&, const octave_value&); | |
1386 | |
1387 virtual octave_value get (const caseless_str&) const; | |
1388 | |
7379 | 1389 virtual octave_value get (bool all = false) const; |
7363 | 1390 |
1391 property get_property (const caseless_str&) const; | |
1392 | |
1393 std::string get_tag (void) const { return tag.string_value (); } | |
1394 | |
1395 graphics_handle get_parent (void) const { return parent.handle_value (); } | |
1396 | |
1397 std::string get_type (void) const { return type.string_value (); } | |
1398 | |
1399 bool is_modified (void) const { return __modified__.is_on (); } | |
7251 | 1400 |
1401 graphics_handle get___myhandle__ (void) const { return __myhandle__; } | |
7366 | 1402 |
1403 std::string get_busyaction (void) const { return busyaction.current_value (); } | |
1404 | |
1405 octave_value get_buttondownfcn (void) const { return buttondownfcn.get (); } | |
1406 | |
7435 | 1407 bool is_clipping (void) const { return clipping.is_on (); } |
7366 | 1408 std::string get_clipping (void) const { return clipping.current_value (); } |
1409 | |
7367 | 1410 void execute_createfcn (const octave_value& data = octave_value ()) const |
1411 { createfcn.execute (data); } | |
1412 | |
7366 | 1413 octave_value get_createfcn (void) const { return createfcn.get (); } |
1414 | |
7367 | 1415 void execute_deletefcn (const octave_value& data = octave_value ()) const |
1416 { deletefcn.execute (data); } | |
1417 | |
7366 | 1418 octave_value get_deletefcn (void) const { return deletefcn.get (); } |
1419 | |
1420 std::string get_handlevisibility (void) const { return handlevisibility.current_value (); } | |
1421 | |
1422 std::string get_hittest (void) const { return hittest.current_value (); } | |
1423 | |
1424 std::string get_interruptible (void) const { return interruptible.current_value (); } | |
1425 | |
1426 std::string get_selected (void) const { return selected.current_value (); } | |
1427 | |
1428 std::string get_selectionhighlight (void) const { return selectionhighlight.current_value (); } | |
1429 | |
1430 octave_value get_uicontextmenu (void) const { return uicontextmenu.get (); } | |
1431 | |
1432 octave_value get_userdata (void) const { return userdata.get (); } | |
7408 | 1433 |
1434 bool is_visible (void) const { return visible.is_on (); } | |
7366 | 1435 std::string get_visible (void) const { return visible.current_value (); } |
1436 | |
7403 | 1437 bool is_beingdeleted (void) const { return beingdeleted.is_on (); } |
1438 std::string get_beingdeleted (void) const { return beingdeleted.current_value (); } | |
1439 | |
7386 | 1440 virtual void remove_child (const graphics_handle& h); |
1441 | |
1442 virtual void adopt (const graphics_handle& h) | |
6874 | 1443 { |
1444 octave_idx_type n = children.numel (); | |
1445 children.resize (1, n+1); | |
7056 | 1446 children(n) = h.value (); |
6874 | 1447 } |
1448 | |
7419 | 1449 virtual graphics_backend get_backend (void) const; |
1450 | |
7526
52d58b0463ed
graphics.cc, graphics.h.in: avoid some GCC warnings
John W. Eaton <jwe@octave.org>
parents:
7524
diff
changeset
|
1451 virtual Matrix get_boundingbox (bool /*internal*/ = false) const |
7447 | 1452 { return Matrix (1, 4, 0.0); } |
1453 | |
7828
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
1454 virtual void update_boundingbox (void); |
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
1455 |
7363 | 1456 void set_tag (const octave_value& val) { tag = val; } |
7176 | 1457 |
6874 | 1458 void set_parent (const octave_value& val); |
1459 | |
7408 | 1460 void set_modified (const octave_value& val) { __modified__ = val; } |
1461 | |
7366 | 1462 void set_busyaction (const octave_value& val) |
1463 { | |
1464 if (! error_state) | |
1465 { | |
1466 busyaction = val; | |
1467 mark_modified (); | |
1468 } | |
1469 } | |
1470 | |
1471 void set_buttondownfcn (const octave_value& val) | |
1472 { | |
1473 if (! error_state) | |
1474 { | |
1475 buttondownfcn = val; | |
1476 mark_modified (); | |
1477 } | |
1478 } | |
1479 | |
1480 void set_clipping (const octave_value& val) | |
1481 { | |
1482 if (! error_state) | |
1483 { | |
1484 clipping = val; | |
1485 mark_modified (); | |
1486 } | |
1487 } | |
1488 | |
1489 void set_createfcn (const octave_value& val) | |
1490 { | |
1491 if (! error_state) | |
1492 { | |
1493 createfcn = val; | |
1494 mark_modified (); | |
1495 } | |
1496 } | |
1497 | |
1498 void set_deletefcn (const octave_value& val) | |
1499 { | |
1500 if (! error_state) | |
1501 { | |
1502 deletefcn = val; | |
1503 mark_modified (); | |
1504 } | |
1505 } | |
1506 | |
1507 void set_handlevisibility (const octave_value& val) | |
1508 { | |
1509 if (! error_state) | |
1510 { | |
1511 handlevisibility = val; | |
1512 mark_modified (); | |
1513 } | |
1514 } | |
1515 | |
1516 void set_hittest (const octave_value& val) | |
1517 { | |
1518 if (! error_state) | |
1519 { | |
1520 hittest = val; | |
1521 mark_modified (); | |
1522 } | |
1523 } | |
1524 | |
1525 void set_interruptible (const octave_value& val) | |
1526 { | |
1527 if (! error_state) | |
1528 { | |
1529 interruptible = val; | |
1530 mark_modified (); | |
1531 } | |
1532 } | |
1533 | |
1534 void set_selected (const octave_value& val) | |
1535 { | |
1536 if (! error_state) | |
1537 { | |
1538 selected = val; | |
1539 mark_modified (); | |
1540 } | |
1541 } | |
1542 | |
1543 void set_selectionhighlight (const octave_value& val) | |
1544 { | |
1545 if (! error_state) | |
1546 { | |
1547 selectionhighlight = val; | |
1548 mark_modified (); | |
1549 } | |
1550 } | |
1551 | |
1552 void set_uicontextmenu (const octave_value& val) | |
1553 { | |
1554 if (! error_state) | |
1555 { | |
1556 uicontextmenu = val; | |
1557 mark_modified (); | |
1558 } | |
1559 } | |
1560 | |
1561 void set_userdata (const octave_value& val) | |
1562 { | |
1563 if (! error_state) | |
1564 { | |
1565 userdata = val; | |
1566 mark_modified (); | |
1567 } | |
1568 } | |
1569 | |
1570 virtual void set_visible (const octave_value& val) | |
1571 { | |
1572 if (! error_state) | |
1573 { | |
1574 visible = val; | |
1575 mark_modified (); | |
1576 } | |
1577 } | |
1578 | |
7403 | 1579 void set_beingdeleted (const octave_value& val) |
1580 { | |
1581 if (! error_state) | |
1582 { | |
1583 beingdeleted = val; | |
1584 mark_modified (); | |
1585 } | |
1586 } | |
1587 | |
7366 | 1588 |
1589 | |
6874 | 1590 void reparent (const graphics_handle& new_parent) { parent = new_parent; } |
1591 | |
7214 | 1592 // Update data limits for AXIS_TYPE (xdata, ydata, etc.) in the parent |
1593 // axes object. | |
1594 | |
7386 | 1595 virtual void update_axis_limits (const std::string& axis_type) const; |
7214 | 1596 |
6874 | 1597 virtual void delete_children (void); |
1598 | |
7222 | 1599 Matrix get_children (void) const { return children; } |
1600 | |
1601 // FIXME -- these functions should be generated automatically by the | |
1602 // genprops.awk script. | |
1603 // | |
1604 // EMIT_BASE_PROPERTIES_GET_FUNCTIONS | |
7363 | 1605 virtual data_property get_xdata_property (void) const |
7222 | 1606 { |
1607 error ("get: invalid property \"xdata\""); | |
1608 return data_property (); | |
1609 } | |
1610 | |
7363 | 1611 virtual data_property get_ydata_property (void) const |
7222 | 1612 { |
1613 error ("get: invalid property \"ydata\""); | |
1614 return data_property (); | |
1615 } | |
1616 | |
7363 | 1617 virtual data_property get_zdata_property (void) const |
7222 | 1618 { |
1619 error ("get: invalid property \"zdata\""); | |
1620 return data_property (); | |
1621 } | |
1622 | |
7363 | 1623 virtual data_property get_ldata_property (void) const |
7222 | 1624 { |
1625 error ("get: invalid property \"ldata\""); | |
1626 return data_property (); | |
1627 } | |
1628 | |
7363 | 1629 virtual data_property get_udata_property (void) const |
7222 | 1630 { |
1631 error ("get: invalid property \"udata\""); | |
1632 return data_property (); | |
1633 } | |
1634 | |
7363 | 1635 virtual data_property get_xldata_property (void) const |
7222 | 1636 { |
1637 error ("get: invalid property \"xldata\""); | |
1638 return data_property (); | |
1639 } | |
1640 | |
7363 | 1641 virtual data_property get_xudata_property (void) const |
7222 | 1642 { |
1643 error ("get: invalid property \"xudata\""); | |
1644 return data_property (); | |
1645 } | |
1646 | |
7363 | 1647 virtual data_property get_cdata_property (void) const |
7222 | 1648 { |
1649 error ("get: invalid property \"cdata\""); | |
1650 return data_property (); | |
1651 } | |
1652 | |
6874 | 1653 protected: |
7403 | 1654 // properties common to all objects |
1655 bool_property beingdeleted; | |
1656 radio_property busyaction; | |
1657 callback_property buttondownfcn; | |
7363 | 1658 // FIXME: use a property class for children |
6874 | 1659 Matrix children; |
7366 | 1660 bool_property clipping; |
1661 callback_property createfcn; | |
1662 callback_property deletefcn; | |
1663 radio_property handlevisibility; | |
1664 bool_property hittest; | |
1665 bool_property interruptible; | |
7403 | 1666 handle_property parent; |
7366 | 1667 bool_property selected; |
1668 bool_property selectionhighlight; | |
7403 | 1669 string_property tag; |
1670 string_property type; | |
7366 | 1671 any_property userdata; |
1672 bool_property visible; | |
7403 | 1673 // additional (octave-specific) properties |
1674 bool_property __modified__; | |
1675 graphics_handle __myhandle__; | |
1676 // FIXME: should this really be here? | |
1677 handle_property uicontextmenu; | |
7363 | 1678 |
1679 protected: | |
1680 std::map<caseless_str, property> all_props; | |
1681 | |
1682 protected: | |
1683 void insert_static_property (const std::string& name, base_property& p) | |
1684 { insert_property (name, property (&p, true)); } | |
1685 | |
1686 virtual void init (void) { } | |
6874 | 1687 }; |
1688 | |
7365 | 1689 class OCTINTERP_API base_graphics_object |
6874 | 1690 { |
1691 public: | |
1692 friend class graphics_object; | |
1693 | |
1694 base_graphics_object (void) : count (1) { } | |
1695 | |
1696 base_graphics_object (const base_graphics_object&) { } | |
1697 | |
1698 virtual ~base_graphics_object (void) { } | |
1699 | |
1700 virtual void mark_modified (void) | |
1701 { | |
7386 | 1702 if (valid_object ()) |
1703 get_properties ().mark_modified (); | |
1704 else | |
1705 error ("base_graphics_object::mark_modified: invalid graphics object"); | |
6874 | 1706 } |
1707 | |
7386 | 1708 virtual void override_defaults (base_graphics_object& obj) |
6874 | 1709 { |
7386 | 1710 if (valid_object ()) |
1711 get_properties ().override_defaults (obj); | |
1712 else | |
1713 error ("base_graphics_object::override_defaults: invalid graphics object"); | |
6874 | 1714 } |
1715 | |
7386 | 1716 virtual void set_from_list (property_list& plist) |
6874 | 1717 { |
7386 | 1718 if (valid_object ()) |
1719 get_properties ().set_from_list (*this, plist); | |
1720 else | |
1721 error ("base_graphics_object::set_from_list: invalid graphics object"); | |
6874 | 1722 } |
1723 | |
7386 | 1724 virtual void set (const caseless_str& pname, const octave_value& pval) |
6874 | 1725 { |
7386 | 1726 if (valid_object ()) |
1727 get_properties ().set (pname, pval); | |
1728 else | |
1729 error ("base_graphics_object::set: invalid graphics object"); | |
6874 | 1730 } |
1731 | |
1732 virtual void set_defaults (const std::string&) | |
1733 { | |
1734 error ("base_graphics_object::set_defaults: invalid graphics object"); | |
1735 } | |
1736 | |
7379 | 1737 virtual octave_value get (bool all = false) const |
6874 | 1738 { |
7386 | 1739 if (valid_object ()) |
1740 return get_properties ().get (all); | |
1741 else | |
1742 { | |
1743 error ("base_graphics_object::get: invalid graphics object"); | |
1744 return octave_value (); | |
1745 } | |
6874 | 1746 } |
1747 | |
7386 | 1748 virtual octave_value get (const caseless_str& pname) const |
6874 | 1749 { |
7386 | 1750 if (valid_object ()) |
1751 return get_properties ().get (pname); | |
1752 else | |
1753 { | |
1754 error ("base_graphics_object::get: invalid graphics object"); | |
1755 return octave_value (); | |
1756 } | |
6874 | 1757 } |
1758 | |
7189 | 1759 virtual octave_value get_default (const caseless_str&) const; |
6874 | 1760 |
7189 | 1761 virtual octave_value get_factory_default (const caseless_str&) const; |
6874 | 1762 |
1763 virtual octave_value get_defaults (void) const | |
1764 { | |
1765 error ("base_graphics_object::get_defaults: invalid graphics object"); | |
1766 return octave_value (); | |
1767 } | |
1768 | |
1769 virtual octave_value get_factory_defaults (void) const | |
1770 { | |
1771 error ("base_graphics_object::get_factory_defaults: invalid graphics object"); | |
1772 return octave_value (); | |
1773 } | |
1774 | |
1775 virtual graphics_handle get_parent (void) const | |
1776 { | |
7386 | 1777 if (valid_object ()) |
1778 return get_properties ().get_parent (); | |
1779 else | |
1780 { | |
1781 error ("base_graphics_object::get_parent: invalid graphics object"); | |
1782 return graphics_handle (); | |
1783 } | |
6874 | 1784 } |
1785 | |
7386 | 1786 virtual void remove_child (const graphics_handle& h) |
6874 | 1787 { |
7386 | 1788 if (valid_object ()) |
1789 get_properties ().remove_child (h); | |
1790 else | |
1791 error ("base_graphics_object::remove_child: invalid graphics object"); | |
6874 | 1792 } |
1793 | |
7386 | 1794 virtual void adopt (const graphics_handle& h) |
6874 | 1795 { |
7386 | 1796 if (valid_object ()) |
1797 get_properties ().adopt (h); | |
1798 else | |
1799 error ("base_graphics_object::adopt: invalid graphics object"); | |
6874 | 1800 } |
1801 | |
7386 | 1802 virtual void reparent (const graphics_handle& np) |
6874 | 1803 { |
7386 | 1804 if (valid_object ()) |
1805 get_properties ().reparent (np); | |
1806 else | |
1807 error ("base_graphics_object::reparent: invalid graphics object"); | |
6874 | 1808 } |
1809 | |
1810 virtual void defaults (void) const | |
1811 { | |
7386 | 1812 if (valid_object ()) |
1813 { | |
1814 std::string msg = (type () + "::defaults"); | |
1815 gripe_not_implemented (msg.c_str ()); | |
1816 } | |
1817 else | |
1818 error ("base_graphics_object::default: invalid graphics object"); | |
6874 | 1819 } |
1820 | |
1821 virtual base_properties& get_properties (void) | |
1822 { | |
1823 static base_properties properties; | |
1824 error ("base_graphics_object::get_properties: invalid graphics object"); | |
1825 return properties; | |
1826 } | |
1827 | |
7222 | 1828 virtual const base_properties& get_properties (void) const |
1829 { | |
1830 static base_properties properties; | |
1831 error ("base_graphics_object::get_properties: invalid graphics object"); | |
1832 return properties; | |
1833 } | |
1834 | |
1835 virtual void update_axis_limits (const std::string&) | |
7214 | 1836 { |
1837 error ("base_graphics_object::update_axis_limits: invalid graphics object"); | |
1838 } | |
1839 | |
6874 | 1840 virtual bool valid_object (void) const { return false; } |
1841 | |
7386 | 1842 virtual std::string type (void) const |
1843 { | |
1844 return (valid_object () ? get_properties ().graphics_object_name () | |
1845 : "unknown"); | |
1846 } | |
6874 | 1847 |
1848 bool isa (const std::string& go_name) const | |
1849 { | |
1850 return type () == go_name; | |
1851 } | |
1852 | |
7419 | 1853 virtual graphics_backend get_backend (void) const |
1854 { | |
1855 if (valid_object ()) | |
1856 return get_properties ().get_backend (); | |
1857 else | |
1858 { | |
1859 error ("base_graphics_object::get_backend: invalid graphics object"); | |
1860 return graphics_backend (); | |
1861 } | |
1862 } | |
1863 | |
6874 | 1864 protected: |
1865 // A reference count. | |
1866 int count; | |
1867 }; | |
1868 | |
7365 | 1869 class OCTINTERP_API graphics_object |
6874 | 1870 { |
1871 public: | |
1872 graphics_object (void) : rep (new base_graphics_object ()) { } | |
1873 | |
1874 graphics_object (base_graphics_object *new_rep) | |
1875 : rep (new_rep) { } | |
1876 | |
1877 graphics_object (const graphics_object& obj) | |
1878 { | |
1879 rep = obj.rep; | |
1880 rep->count++; | |
1881 } | |
1882 | |
1883 graphics_object& operator = (const graphics_object& obj) | |
1884 { | |
1885 if (rep != obj.rep) | |
1886 { | |
1887 if (--rep->count == 0) | |
1888 delete rep; | |
1889 | |
1890 rep = obj.rep; | |
1891 rep->count++; | |
1892 } | |
1893 | |
1894 return *this; | |
1895 } | |
1896 | |
1897 ~graphics_object (void) | |
1898 { | |
1899 if (--rep->count == 0) | |
1900 delete rep; | |
1901 } | |
1902 | |
1903 void mark_modified (void) { rep->mark_modified (); } | |
1904 | |
1905 void override_defaults (base_graphics_object& obj) | |
1906 { | |
1907 rep->override_defaults (obj); | |
1908 } | |
1909 | |
7214 | 1910 void set_from_list (property_list& plist) { rep->set_from_list (plist); } |
6874 | 1911 |
7189 | 1912 void set (const caseless_str& name, const octave_value& val) |
6874 | 1913 { |
1914 rep->set (name, val); | |
1915 } | |
1916 | |
1917 void set (const octave_value_list& args); | |
1918 | |
7214 | 1919 void set_defaults (const std::string& mode) { rep->set_defaults (mode); } |
1920 | |
7379 | 1921 octave_value get (bool all = false) const { return rep->get (all); } |
6874 | 1922 |
7189 | 1923 octave_value get (const caseless_str& name) const |
6874 | 1924 { |
1925 return name.compare ("default") | |
1926 ? get_defaults () | |
1927 : (name.compare ("factory") | |
1928 ? get_factory_defaults () : rep->get (name)); | |
1929 } | |
1930 | |
7189 | 1931 octave_value get_default (const caseless_str& name) const |
6874 | 1932 { |
1933 return rep->get_default (name); | |
1934 } | |
1935 | |
7189 | 1936 octave_value get_factory_default (const caseless_str& name) const |
6874 | 1937 { |
1938 return rep->get_factory_default (name); | |
1939 } | |
1940 | |
1941 octave_value get_defaults (void) const { return rep->get_defaults (); } | |
1942 | |
1943 octave_value get_factory_defaults (void) const | |
1944 { | |
1945 return rep->get_factory_defaults (); | |
1946 } | |
1947 | |
1948 graphics_handle get_parent (void) const { return rep->get_parent (); } | |
1949 | |
7214 | 1950 void remove_child (const graphics_handle& h) { rep->remove_child (h); } |
1951 | |
1952 void adopt (const graphics_handle& h) { rep->adopt (h); } | |
1953 | |
1954 void reparent (const graphics_handle& h) { rep->reparent (h); } | |
6874 | 1955 |
1956 void defaults (void) const { rep->defaults (); } | |
1957 | |
1958 bool isa (const std::string& go_name) const { return rep->isa (go_name); } | |
1959 | |
1960 base_properties& get_properties (void) { return rep->get_properties (); } | |
1961 | |
7222 | 1962 const base_properties& get_properties (void) const |
1963 { | |
1964 return rep->get_properties (); | |
1965 } | |
1966 | |
7214 | 1967 void update_axis_limits (const std::string& axis_type) |
1968 { | |
1969 rep->update_axis_limits (axis_type); | |
1970 } | |
1971 | |
6874 | 1972 bool valid_object (void) const { return rep->valid_object (); } |
1973 | |
1974 operator bool (void) const { return rep->valid_object (); } | |
1975 | |
7222 | 1976 // FIXME -- these functions should be generated automatically by the |
1977 // genprops.awk script. | |
1978 // | |
1979 // EMIT_GRAPHICS_OBJECT_GET_FUNCTIONS | |
7363 | 1980 data_property get_xdata_property (void) const |
7222 | 1981 { |
1982 const base_properties& props = get_properties (); | |
7363 | 1983 return props.get_xdata_property (); |
7222 | 1984 } |
1985 | |
7363 | 1986 data_property get_ydata_property (void) const |
7222 | 1987 { |
1988 const base_properties& props = get_properties (); | |
7363 | 1989 return props.get_ydata_property (); |
7222 | 1990 } |
1991 | |
7363 | 1992 data_property get_zdata_property (void) const |
7222 | 1993 { |
1994 const base_properties& props = get_properties (); | |
7363 | 1995 return props.get_zdata_property (); |
7222 | 1996 } |
1997 | |
7363 | 1998 data_property get_ldata_property (void) const |
7222 | 1999 { |
2000 const base_properties& props = get_properties (); | |
7363 | 2001 return props.get_ldata_property (); |
7222 | 2002 } |
2003 | |
7363 | 2004 data_property get_udata_property (void) const |
7222 | 2005 { |
2006 const base_properties& props = get_properties (); | |
7363 | 2007 return props.get_udata_property (); |
7222 | 2008 } |
2009 | |
7363 | 2010 data_property get_xldata_property (void) const |
7222 | 2011 { |
2012 const base_properties& props = get_properties (); | |
7363 | 2013 return props.get_xldata_property (); |
7222 | 2014 } |
2015 | |
7363 | 2016 data_property get_xudata_property (void) const |
7222 | 2017 { |
2018 const base_properties& props = get_properties (); | |
7363 | 2019 return props.get_xudata_property (); |
7222 | 2020 } |
2021 | |
7363 | 2022 data_property get_cdata_property (void) const |
7222 | 2023 { |
2024 const base_properties& props = get_properties (); | |
7363 | 2025 return props.get_cdata_property (); |
7222 | 2026 } |
2027 | |
7419 | 2028 graphics_backend get_backend (void) const { return rep->get_backend (); } |
7408 | 2029 |
2030 private: | |
7419 | 2031 base_graphics_object *rep; |
7408 | 2032 }; |
2033 | |
2034 // --------------------------------------------------------------------- | |
2035 | |
7365 | 2036 class OCTINTERP_API root_figure : public base_graphics_object |
6874 | 2037 { |
2038 public: | |
7821
f79dcba526a8
Export nested properties classes of all graphics object.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7527
diff
changeset
|
2039 class OCTINTERP_API properties : public base_properties |
6874 | 2040 { |
2041 public: | |
2042 // See the genprops.awk script for an explanation of the | |
2043 // properties declarations. | |
2044 | |
7363 | 2045 BEGIN_PROPERTIES(root_figure) |
2046 handle_property currentfigure S , graphics_handle () | |
7822
edbaa13397ee
Implement callbackobject property in root object.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7821
diff
changeset
|
2047 handle_property callbackobject Sr , graphics_handle () |
6874 | 2048 END_PROPERTIES |
7822
edbaa13397ee
Implement callbackobject property in root object.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7821
diff
changeset
|
2049 |
edbaa13397ee
Implement callbackobject property in root object.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7821
diff
changeset
|
2050 private: |
edbaa13397ee
Implement callbackobject property in root object.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7821
diff
changeset
|
2051 std::list<graphics_handle> cbo_stack; |
6874 | 2052 }; |
2053 | |
2054 private: | |
2055 properties xproperties; | |
2056 | |
2057 public: | |
2058 | |
7363 | 2059 root_figure (void) : xproperties (0, graphics_handle ()), default_properties () { } |
6874 | 2060 |
2061 ~root_figure (void) { xproperties.delete_children (); } | |
2062 | |
2063 void mark_modified (void) { } | |
2064 | |
2065 void override_defaults (base_graphics_object& obj) | |
2066 { | |
2067 // Now override with our defaults. If the default_properties | |
2068 // list includes the properties for all defaults (line, | |
2069 // surface, etc.) then we don't have to know the type of OBJ | |
2070 // here, we just call its set function and let it decide which | |
2071 // properties from the list to use. | |
2072 obj.set_from_list (default_properties); | |
2073 } | |
2074 | |
7189 | 2075 void set (const caseless_str& name, const octave_value& value) |
6874 | 2076 { |
2077 if (name.compare ("default", 7)) | |
2078 // strip "default", pass rest to function that will | |
2079 // parse the remainder and add the element to the | |
2080 // default_properties map. | |
2081 default_properties.set (name.substr (7), value); | |
2082 else | |
2083 xproperties.set (name, value); | |
2084 } | |
2085 | |
7189 | 2086 octave_value get (const caseless_str& name) const |
6874 | 2087 { |
2088 octave_value retval; | |
2089 | |
2090 if (name.compare ("default", 7)) | |
2091 return get_default (name.substr (7)); | |
2092 else if (name.compare ("factory", 7)) | |
2093 return get_factory_default (name.substr (7)); | |
2094 else | |
2095 retval = xproperties.get (name); | |
2096 | |
2097 return retval; | |
2098 } | |
2099 | |
7189 | 2100 octave_value get_default (const caseless_str& name) const |
6874 | 2101 { |
2102 octave_value retval = default_properties.lookup (name); | |
2103 | |
2104 if (retval.is_undefined ()) | |
2105 error ("get: invalid default property `%s'", name.c_str ()); | |
2106 | |
2107 return retval; | |
2108 } | |
2109 | |
7189 | 2110 octave_value get_factory_default (const caseless_str& name) const |
6874 | 2111 { |
2112 octave_value retval = factory_properties.lookup (name); | |
2113 | |
2114 if (retval.is_undefined ()) | |
2115 error ("get: invalid factory default property `%s'", name.c_str ()); | |
2116 | |
2117 return retval; | |
2118 } | |
2119 | |
2120 octave_value get_defaults (void) const | |
2121 { | |
2122 return default_properties.as_struct ("default"); | |
2123 } | |
2124 | |
2125 octave_value get_factory_defaults (void) const | |
2126 { | |
2127 return factory_properties.as_struct ("factory"); | |
2128 } | |
2129 | |
2130 base_properties& get_properties (void) { return xproperties; } | |
2131 | |
7222 | 2132 const base_properties& get_properties (void) const { return xproperties; } |
2133 | |
6874 | 2134 bool valid_object (void) const { return true; } |
2135 | |
2136 private: | |
2137 property_list default_properties; | |
2138 | |
2139 static property_list factory_properties; | |
2140 | |
2141 static property_list::plist_map_type init_factory_properties (void); | |
2142 }; | |
2143 | |
2144 // --------------------------------------------------------------------- | |
2145 | |
7365 | 2146 class OCTINTERP_API figure : public base_graphics_object |
6874 | 2147 { |
2148 public: | |
7445 | 2149 class OCTINTERP_API properties : public base_properties |
6874 | 2150 { |
2151 public: | |
7408 | 2152 void close (bool pop = true); |
2153 | |
7366 | 2154 void set_visible (const octave_value& val); |
6874 | 2155 |
7408 | 2156 graphics_backend get_backend (void) const |
2157 { | |
2158 if (! backend) | |
2159 backend = graphics_backend::default_backend (); | |
2160 | |
2161 return backend; | |
2162 } | |
2163 | |
7439 | 2164 void set_backend (const graphics_backend& b) |
2165 { | |
2166 close (false); | |
2167 backend = b; | |
2168 __backend__ = b.get_name (); | |
2169 mark_modified (); | |
2170 } | |
2171 | |
2172 void set___backend__ (const octave_value& val) | |
2173 { | |
2174 if (! error_state) | |
2175 { | |
2176 if (val.is_string ()) | |
2177 { | |
2178 std::string nm = val.string_value (); | |
2179 graphics_backend b = graphics_backend::find_backend (nm); | |
2180 if (b.get_name () != nm) | |
2181 { | |
2182 error ("figure::__backend__ : illegal backend"); | |
2183 } | |
2184 else | |
2185 { | |
2186 set_backend (b); | |
2187 mark_modified (); | |
2188 } | |
2189 } | |
2190 else | |
2191 error ("__backend__ must be a string"); | |
2192 } | |
2193 } | |
7408 | 2194 |
7447 | 2195 Matrix get_boundingbox (bool internal = false) const; |
7445 | 2196 |
7828
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
2197 void set_boundingbox (const Matrix& bb); |
7826
68550ad9ee9c
Add support for extern updaters. Add set_figure_position interface to graphics_backend.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7824
diff
changeset
|
2198 |
6874 | 2199 // See the genprops.awk script for an explanation of the |
2200 // properties declarations. | |
2201 | |
7363 | 2202 BEGIN_PROPERTIES(figure) |
7379 | 2203 any_property __plot_stream__ h , Matrix () |
2204 bool_property __enhanced__ h , "on" | |
7405 | 2205 radio_property nextplot , "new|{add}|replace_children|replace" |
7363 | 2206 callback_property closerequestfcn , "closereq" |
2207 handle_property currentaxes S , graphics_handle () | |
2208 array_property colormap , jet_colormap () | |
7405 | 2209 radio_property paperorientation , "{portrait}|landscape|rotated" |
7363 | 2210 color_property color , color_values (1, 1, 1) |
7405 | 2211 array_property alphamap , Matrix (64, 1, 1) |
2212 string_property currentcharacter r , "" | |
2213 handle_property currentobject r , graphics_handle () | |
2214 array_property current_point r , Matrix (2, 1, 0) | |
2215 bool_property dockcontrols , "off" | |
2216 bool_property doublebuffer , "on" | |
2217 string_property filename r , "" | |
2218 bool_property integerhandle , "on" | |
2219 bool_property inverthardcopy , "off" | |
2220 callback_property keypressfcn , Matrix () | |
2221 callback_property keyreleasefcn , Matrix () | |
2222 radio_property menubar , "none|{figure}" | |
2223 double_property mincolormap , 64 | |
2224 string_property name , "" | |
2225 bool_property numbertitle , "on" | |
2226 radio_property paperunits , "{inches}|centimeters|normalized|points" | |
2227 array_property paperposition , Matrix (1, 4 , 0) | |
2228 radio_property paperpositionmode , "auto|{manual}" | |
2229 array_property papersize r , Matrix (1, 4, 0) | |
2230 radio_property papertype , "{usletter}|uslegal|a0|a1|a2|a3|a4|a5|b0|b1|b2|b3|b4|b5|arch-a|arch-b|arch-c|arch-d|arch-e|a|b|c|d|e|tabloid" | |
2231 radio_property pointer , "crosshair|fullcrosshair|{arrow}|ibeam|watch|topl|topr|botl|botr|left|top|right|bottom|circle|cross|fleur|custom|hand" | |
2232 array_property pointershapecdata , Matrix (16, 16, 0) | |
2233 array_property pointershapehotspot , Matrix (1, 2, 0) | |
7828
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
2234 array_property position S , default_figure_position () |
7405 | 2235 radio_property renderer , "{painters}|zbuffer|opengl|none" |
2236 radio_property renderermode , "{auto}|manual" | |
2237 bool_property resize , "on" | |
2238 callback_property resizefcn , Matrix () | |
2239 radio_property selectiontype , "{normal}|open|alt|extend" | |
2240 radio_property toolbar , "none|{auto}|figure" | |
2241 radio_property units , "inches|centimeters|normalized|points|{pixels}|characters" | |
2242 callback_property windowbuttondownfcn , Matrix () | |
2243 callback_property windowbuttonmotionfcn , Matrix () | |
2244 callback_property windowbuttonupfcn , Matrix () | |
2245 callback_property windowbuttonwheelfcn , Matrix () | |
2246 radio_property windowstyle , "{normal}|modal|docked" | |
2247 string_property wvisual , "" | |
2248 radio_property wvisualmode , "{auto}|manual" | |
2249 string_property xdisplay , "" | |
2250 string_property xvisual , "" | |
2251 radio_property xvisualmode , "{auto}|manual" | |
2252 callback_property buttondownfcn , Matrix () | |
7439 | 2253 string_property __backend__ s , "gnuplot" |
6874 | 2254 END_PROPERTIES |
7363 | 2255 |
2256 protected: | |
2257 void init (void) | |
2258 { | |
2259 colormap.add_constraint (dim_vector (-1, 3)); | |
7406 | 2260 alphamap.add_constraint (dim_vector (-1, 1)); |
2261 paperposition.add_constraint (dim_vector (1, 4)); | |
2262 pointershapecdata.add_constraint (dim_vector (16, 16)); | |
2263 pointershapehotspot.add_constraint (dim_vector (1, 2)); | |
2264 position.add_constraint (dim_vector (1, 4)); | |
7363 | 2265 } |
7408 | 2266 |
2267 private: | |
2268 mutable graphics_backend backend; | |
6874 | 2269 }; |
2270 | |
2271 private: | |
2272 properties xproperties; | |
2273 | |
2274 public: | |
2275 figure (const graphics_handle& mh, const graphics_handle& p) | |
2276 : base_graphics_object (), xproperties (mh, p), default_properties () | |
2277 { | |
2278 xproperties.override_defaults (*this); | |
2279 } | |
2280 | |
2281 ~figure (void) | |
2282 { | |
7386 | 2283 xproperties.delete_children (); |
6874 | 2284 xproperties.close (); |
2285 } | |
2286 | |
2287 void override_defaults (base_graphics_object& obj) | |
2288 { | |
2289 // Allow parent (root figure) to override first (properties knows how | |
2290 // to find the parent object). | |
2291 xproperties.override_defaults (obj); | |
2292 | |
2293 // Now override with our defaults. If the default_properties | |
2294 // list includes the properties for all defaults (line, | |
2295 // surface, etc.) then we don't have to know the type of OBJ | |
2296 // here, we just call its set function and let it decide which | |
2297 // properties from the list to use. | |
2298 obj.set_from_list (default_properties); | |
2299 } | |
2300 | |
7189 | 2301 void set (const caseless_str& name, const octave_value& value) |
6874 | 2302 { |
2303 if (name.compare ("default", 7)) | |
2304 // strip "default", pass rest to function that will | |
2305 // parse the remainder and add the element to the | |
2306 // default_properties map. | |
2307 default_properties.set (name.substr (7), value); | |
2308 else | |
2309 xproperties.set (name, value); | |
2310 } | |
2311 | |
7189 | 2312 octave_value get (const caseless_str& name) const |
6874 | 2313 { |
2314 octave_value retval; | |
2315 | |
2316 if (name.compare ("default", 7)) | |
2317 retval = get_default (name.substr (7)); | |
2318 else | |
2319 retval = xproperties.get (name); | |
2320 | |
2321 return retval; | |
2322 } | |
2323 | |
7189 | 2324 octave_value get_default (const caseless_str& name) const; |
6874 | 2325 |
2326 octave_value get_defaults (void) const | |
2327 { | |
2328 return default_properties.as_struct ("default"); | |
2329 } | |
2330 | |
2331 base_properties& get_properties (void) { return xproperties; } | |
2332 | |
7222 | 2333 const base_properties& get_properties (void) const { return xproperties; } |
2334 | |
6874 | 2335 bool valid_object (void) const { return true; } |
2336 | |
2337 private: | |
2338 property_list default_properties; | |
2339 }; | |
2340 | |
2341 // --------------------------------------------------------------------- | |
2342 | |
7435 | 2343 class OCTINTERP_API graphics_xform |
2344 { | |
2345 public: | |
2346 graphics_xform (void) | |
2347 : xform (xform_eye ()), xform_inv (xform_eye ()) | |
2348 { | |
2349 sx = sy = sz = "linear"; | |
2350 } | |
2351 | |
2352 graphics_xform (const Matrix& xm, const Matrix& xim, | |
2353 const scaler& x, const scaler& y, const scaler& z) | |
2354 : xform (xm), xform_inv (xim), sx (x), sy (y), sz (z) { } | |
2355 | |
2356 graphics_xform (const graphics_xform& g) | |
2357 : xform (g.xform), xform_inv (g.xform_inv), sx (g.sx), | |
2358 sy (g.sy), sz (g.sz) { } | |
2359 | |
2360 ~graphics_xform (void) { } | |
2361 | |
2362 graphics_xform& operator = (const graphics_xform& g) | |
2363 { | |
2364 xform = g.xform; | |
2365 xform_inv = g.xform_inv; | |
2366 sx = g.sx; | |
2367 sy = g.sy; | |
2368 sz = g.sz; | |
2369 | |
2370 return *this; | |
2371 } | |
2372 | |
2373 static ColumnVector xform_vector (double x, double y, double z); | |
2374 | |
2375 static Matrix xform_eye (void); | |
2376 | |
2377 ColumnVector transform (double x, double y, double z, | |
2378 bool scale = true) const; | |
2379 | |
2380 ColumnVector untransform (double x, double y, double z, | |
2381 bool scale = true) const; | |
2382 | |
2383 Matrix xscale (const Matrix& m) const { return sx.scale (m); } | |
2384 Matrix yscale (const Matrix& m) const { return sy.scale (m); } | |
2385 Matrix zscale (const Matrix& m) const { return sz.scale (m); } | |
2386 | |
7832
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2387 Matrix scale (const Matrix& m) const |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2388 { |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2389 bool has_z = (m.columns () > 2); |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2390 |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2391 if (sx.is_linear () && sy.is_linear () |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2392 && (! has_z || sz.is_linear ())) |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2393 return m; |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2394 |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2395 Matrix retval (m.dims ()); |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2396 |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2397 int r = m.rows (); |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2398 |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2399 for (int i = 0; i < r; i++) |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2400 { |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2401 retval(i,0) = sx.scale (m(i,0)); |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2402 retval(i,1) = sy.scale (m(i,1)); |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2403 if (has_z) |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2404 retval(i,2) = sz.scale (m(i,2)); |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2405 } |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2406 |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2407 return retval; |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2408 } |
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2409 |
7435 | 2410 private: |
2411 Matrix xform; | |
2412 Matrix xform_inv; | |
2413 scaler sx, sy, sz; | |
2414 }; | |
2415 | |
7365 | 2416 class OCTINTERP_API axes : public base_graphics_object |
6874 | 2417 { |
2418 public: | |
7445 | 2419 class OCTINTERP_API properties : public base_properties |
6874 | 2420 { |
2421 public: | |
2422 void set_defaults (base_graphics_object& obj, const std::string& mode); | |
2423 | |
2424 void remove_child (const graphics_handle& h); | |
2425 | |
2426 void delete_children (void); | |
2427 | |
7427 | 2428 const scaler& get_x_scaler (void) const { return sx; } |
2429 const scaler& get_y_scaler (void) const { return sy; } | |
2430 const scaler& get_z_scaler (void) const { return sz; } | |
2431 | |
7447 | 2432 Matrix get_boundingbox (bool internal = false) const; |
7427 | 2433 |
7828
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
2434 void update_boundingbox (void) |
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
2435 { |
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
2436 if (units_is ("normalized")) |
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
2437 { |
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
2438 update_transform (); |
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
2439 base_properties::update_boundingbox (); |
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
2440 } |
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
2441 } |
4739b6a1925c
Implement resize handler mechanism (call resizefcn on figure resize and notify children).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7827
diff
changeset
|
2442 |
7427 | 2443 void update_camera (void); |
2444 void update_aspectratios (void); | |
2445 void update_transform (void) | |
2446 { | |
2447 update_aspectratios (); | |
2448 update_camera (); | |
2449 } | |
2450 | |
7435 | 2451 graphics_xform get_transform (void) const |
2452 { return graphics_xform (x_render, x_render_inv, sx, sy, sz); } | |
2453 | |
2454 Matrix get_transform_matrix (void) const { return x_render; } | |
2455 Matrix get_inverse_transform_matrix (void) const { return x_render_inv; } | |
2456 Matrix get_opengl_matrix_1 (void) const { return x_gl_mat1; } | |
2457 Matrix get_opengl_matrix_2 (void) const { return x_gl_mat2; } | |
2458 Matrix get_transform_zlim (void) const { return x_zlim; } | |
2459 | |
7427 | 2460 private: |
2461 scaler sx, sy, sz; | |
2462 Matrix x_render, x_render_inv; | |
2463 Matrix x_gl_mat1, x_gl_mat2; | |
2464 Matrix x_zlim; | |
2465 | |
6874 | 2466 // See the genprops.awk script for an explanation of the |
2467 // properties declarations. | |
2468 | |
7363 | 2469 BEGIN_PROPERTIES(axes) |
7427 | 2470 array_property position , default_axes_position () |
7363 | 2471 mutable handle_property title GSO , graphics_handle () |
2472 bool_property box , "on" | |
2473 bool_property key , "off" | |
2474 bool_property keybox , "off" | |
2475 double_property keypos , 1 | |
2476 array_property colororder , default_colororder () | |
2477 array_property dataaspectratio m , Matrix (1, 3, 1.0) | |
2478 radio_property dataaspectratiomode , "{auto}|manual" | |
7379 | 2479 radio_property layer , "{bottom}|top" |
7523
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
2480 row_vector_property xlim mu , default_lim () |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
2481 row_vector_property ylim mu , default_lim () |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
2482 row_vector_property zlim mu , default_lim () |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
2483 row_vector_property clim m , default_lim () |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
2484 row_vector_property alim m , default_lim () |
7363 | 2485 radio_property xlimmode al , "{auto}|manual" |
2486 radio_property ylimmode al , "{auto}|manual" | |
2487 radio_property zlimmode al , "{auto}|manual" | |
2488 radio_property climmode al , "{auto}|manual" | |
7403 | 2489 radio_property alimmode , "{auto}|manual" |
7363 | 2490 mutable handle_property xlabel GSO , graphics_handle () |
2491 mutable handle_property ylabel GSO , graphics_handle () | |
2492 mutable handle_property zlabel GSO , graphics_handle () | |
2493 bool_property xgrid , "off" | |
2494 bool_property ygrid , "off" | |
2495 bool_property zgrid , "off" | |
2496 bool_property xminorgrid , "off" | |
2497 bool_property yminorgrid , "off" | |
2498 bool_property zminorgrid , "off" | |
7523
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
2499 row_vector_property xtick m , Matrix () |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
2500 row_vector_property ytick m , Matrix () |
f2000f1971ab
new row_vector_property class
John W. Eaton <jwe@octave.org>
parents:
7471
diff
changeset
|
2501 row_vector_property ztick m , Matrix () |
7363 | 2502 radio_property xtickmode , "{auto}|manual" |
2503 radio_property ytickmode , "{auto}|manual" | |
2504 radio_property ztickmode , "{auto}|manual" | |
7403 | 2505 bool_property xminortick , "off" |
2506 bool_property yminortick , "off" | |
2507 bool_property zminortick , "off" | |
2508 // FIXME: should be kind of string array | |
7363 | 2509 any_property xticklabel m , "" |
2510 any_property yticklabel m , "" | |
2511 any_property zticklabel m , "" | |
2512 radio_property xticklabelmode , "{auto}|manual" | |
2513 radio_property yticklabelmode , "{auto}|manual" | |
2514 radio_property zticklabelmode , "{auto}|manual" | |
7379 | 2515 color_property color , color_property (color_values (1, 1, 1), radio_values ("none")) |
7363 | 2516 color_property xcolor , color_values (0, 0, 0) |
2517 color_property ycolor , color_values (0, 0, 0) | |
2518 color_property zcolor , color_values (0, 0, 0) | |
7427 | 2519 radio_property xscale alu , "{linear}|log" |
2520 radio_property yscale alu , "{linear}|log" | |
2521 radio_property zscale alu , "{linear}|log" | |
2522 radio_property xdir u , "{normal}|reverse" | |
2523 radio_property ydir u , "{normal}|reverse" | |
2524 radio_property zdir u , "{normal}|reverse" | |
7365 | 2525 radio_property yaxislocation , "{left}|right|zero" |
2526 radio_property xaxislocation , "{bottom}|top|zero" | |
7427 | 2527 array_property view u , Matrix () |
7363 | 2528 radio_property nextplot , "add|replace_children|{replace}" |
7427 | 2529 array_property outerposition , default_axes_outerposition () |
7379 | 2530 radio_property activepositionproperty , "{outerposition}|position" |
2531 radio_property __colorbar__ h , "{none}|north|south|east|west|northoutside|southoutside|eastoutside|westoutside" | |
7403 | 2532 color_property ambientlightcolor , color_values (1, 1, 1) |
2533 array_property cameraposition m , Matrix (1, 3, 0.0) | |
2534 array_property cameratarget m , Matrix (1, 3, 0.0) | |
2535 array_property cameraupvector m , Matrix () | |
2536 double_property cameraviewangle m , 10.0 | |
2537 radio_property camerapositionmode , "{auto}|manual" | |
2538 radio_property cameratargetmode , "{auto}|manual" | |
2539 radio_property cameraupvectormode , "{auto}|manual" | |
2540 radio_property cameraviewanglemode , "{auto}|manual" | |
2541 array_property currentpoint , Matrix (2, 3, 0.0) | |
2542 radio_property drawmode , "{normal}|fast" | |
2543 radio_property fontangle , "{normal}|italic|oblique" | |
2544 string_property fontname , "Helvetica" | |
2545 double_property fontsize , 12 | |
2546 radio_property fontunits , "{points}|normalized|inches|centimeters|pixels" | |
2547 radio_property fontweight , "{normal}|light|demi|bold" | |
7445 | 2548 radio_property gridlinestyle , "-|--|{:}|-.|none" |
7403 | 2549 // FIXME: should be kind of string array |
2550 string_property linestyleorder , "-" | |
2551 double_property linewidth , 0.5 | |
7445 | 2552 radio_property minorgridlinestyle , "-|--|{:}|-.|none" |
7403 | 2553 array_property plotboxaspectratio m , Matrix (1, 3, 1.0) |
2554 radio_property plotboxaspectratiomode , "{auto}|manual" | |
2555 radio_property projection , "{orthographic}|perpective" | |
2556 radio_property tickdir m , "{in}|out" | |
2557 radio_property tickdirmode , "{auto}|manual" | |
2558 array_property ticklength , Matrix (1, 2, 0.1) | |
2559 array_property tightinset r , Matrix (1, 4, 0.0) | |
2560 // FIXME: uicontextmenu should be moved here | |
2561 radio_property units , "{normalized}|inches|centimeters|points|pixels|characters" | |
2562 // hidden properties for transformation computation | |
2563 array_property x_viewtransform h , Matrix (4, 4, 0.0) | |
2564 array_property x_projectiontransform h , Matrix (4, 4, 0.0) | |
2565 array_property x_viewporttransform h , Matrix (4, 4, 0.0) | |
2566 array_property x_normrendertransform h , Matrix (4, 4, 0.0) | |
2567 array_property x_rendertransform h , Matrix (4, 4, 0.0) | |
7189 | 2568 END_PROPERTIES |
6874 | 2569 |
7363 | 2570 protected: |
2571 void init (void) | |
2572 { | |
2573 position.add_constraint (dim_vector (1, 4)); | |
7403 | 2574 position.add_constraint (dim_vector (0, 0)); |
7363 | 2575 outerposition.add_constraint (dim_vector (1, 4)); |
2576 colororder.add_constraint (dim_vector (-1, 3)); | |
2577 dataaspectratio.add_constraint (dim_vector (1, 3)); | |
7403 | 2578 plotboxaspectratio.add_constraint (dim_vector (1, 3)); |
7527
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
2579 xlim.add_constraint (2); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
2580 ylim.add_constraint (2); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
2581 zlim.add_constraint (2); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
2582 clim.add_constraint (2); |
d219e712c20e
make row_vector_property work?
John W. Eaton <jwe@octave.org>
parents:
7526
diff
changeset
|
2583 alim.add_constraint (2); |
7363 | 2584 xtick.add_constraint (dim_vector (1, -1)); |
2585 ytick.add_constraint (dim_vector (1, -1)); | |
2586 ztick.add_constraint (dim_vector (1, -1)); | |
2587 Matrix vw (1, 2, 0); | |
2588 vw(1) = 90; | |
2589 view = vw; | |
2590 view.add_constraint (dim_vector (1, 2)); | |
7403 | 2591 cameraposition.add_constraint (dim_vector (1, 3)); |
2592 Matrix upv (1, 3, 0.0); | |
2593 upv(2) = 1.0; | |
2594 cameraupvector = upv; | |
2595 cameraupvector.add_constraint (dim_vector (1, 3)); | |
2596 currentpoint.add_constraint (dim_vector (2, 3)); | |
2597 ticklength.add_constraint (dim_vector (1, 2)); | |
2598 tightinset.add_constraint (dim_vector (1, 4)); | |
7427 | 2599 |
2600 x_zlim.resize (1, 2); | |
2601 sx = "linear"; | |
2602 sy = "linear"; | |
2603 sz = "linear"; | |
7363 | 2604 } |
7427 | 2605 |
2606 private: | |
2607 void update_xscale (void) { sx = get_xscale (); } | |
2608 void update_yscale (void) { sy = get_yscale (); } | |
2609 void update_zscale (void) { sz = get_zscale (); } | |
2610 | |
2611 void update_view (void) { update_camera (); } | |
2612 | |
2613 void update_xdir (void) { update_camera (); } | |
2614 void update_ydir (void) { update_camera (); } | |
2615 void update_zdir (void) { update_camera (); } | |
7446 | 2616 |
7827
3584f37eac69
better tick and limit handling, still missing logscale support
Shai Ayal <shaiay@sourceforge.net>
parents:
7826
diff
changeset
|
2617 double calc_tick_sep (double minval, double maxval); |
3584f37eac69
better tick and limit handling, still missing logscale support
Shai Ayal <shaiay@sourceforge.net>
parents:
7826
diff
changeset
|
2618 void calc_ticks_and_lims (array_property& lims, array_property& ticks, bool limmode_is_auto); |
7446 | 2619 |
2620 public: | |
7827
3584f37eac69
better tick and limit handling, still missing logscale support
Shai Ayal <shaiay@sourceforge.net>
parents:
7826
diff
changeset
|
2621 Matrix get_axis_limits (double xmin, double xmax, double min_pos, bool logscale); |
7446 | 2622 void update_xlim (void) |
2623 { | |
2624 if (xtickmode.is ("auto")) | |
7827
3584f37eac69
better tick and limit handling, still missing logscale support
Shai Ayal <shaiay@sourceforge.net>
parents:
7826
diff
changeset
|
2625 calc_ticks_and_lims (xlim, xtick, xlimmode.is ("auto")); |
7446 | 2626 } |
2627 | |
2628 void update_ylim (void) | |
2629 { | |
2630 if (ytickmode.is ("auto")) | |
7827
3584f37eac69
better tick and limit handling, still missing logscale support
Shai Ayal <shaiay@sourceforge.net>
parents:
7826
diff
changeset
|
2631 calc_ticks_and_lims (ylim, ytick, ylimmode.is ("auto")); |
7446 | 2632 } |
2633 | |
2634 void update_zlim (void) | |
2635 { | |
2636 if (ztickmode.is ("auto")) | |
7827
3584f37eac69
better tick and limit handling, still missing logscale support
Shai Ayal <shaiay@sourceforge.net>
parents:
7826
diff
changeset
|
2637 calc_ticks_and_lims (zlim, ztick, zlimmode.is ("auto")); |
7446 | 2638 } |
2639 | |
6874 | 2640 }; |
2641 | |
2642 private: | |
2643 properties xproperties; | |
2644 | |
2645 public: | |
2646 axes (const graphics_handle& mh, const graphics_handle& p) | |
2647 : base_graphics_object (), xproperties (mh, p), default_properties () | |
2648 { | |
2649 xproperties.override_defaults (*this); | |
7830
61aee739a4da
Make sure to initialize axes xform data.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7829
diff
changeset
|
2650 xproperties.update_transform (); |
6874 | 2651 } |
2652 | |
2653 ~axes (void) { xproperties.delete_children (); } | |
2654 | |
2655 void override_defaults (base_graphics_object& obj) | |
2656 { | |
2657 // Allow parent (figure) to override first (properties knows how | |
2658 // to find the parent object). | |
2659 xproperties.override_defaults (obj); | |
2660 | |
2661 // Now override with our defaults. If the default_properties | |
2662 // list includes the properties for all defaults (line, | |
2663 // surface, etc.) then we don't have to know the type of OBJ | |
2664 // here, we just call its set function and let it decide which | |
2665 // properties from the list to use. | |
2666 obj.set_from_list (default_properties); | |
2667 } | |
2668 | |
7189 | 2669 void set (const caseless_str& name, const octave_value& value) |
6874 | 2670 { |
2671 if (name.compare ("default", 7)) | |
2672 // strip "default", pass rest to function that will | |
2673 // parse the remainder and add the element to the | |
2674 // default_properties map. | |
2675 default_properties.set (name.substr (7), value); | |
2676 else | |
2677 xproperties.set (name, value); | |
2678 } | |
2679 | |
2680 void set_defaults (const std::string& mode) | |
2681 { | |
2682 xproperties.set_defaults (*this, mode); | |
2683 } | |
2684 | |
7189 | 2685 octave_value get (const caseless_str& name) const |
6874 | 2686 { |
2687 octave_value retval; | |
2688 | |
2689 // FIXME -- finish this. | |
2690 if (name.compare ("default", 7)) | |
2691 retval = get_default (name.substr (7)); | |
2692 else | |
2693 retval = xproperties.get (name); | |
2694 | |
2695 return retval; | |
2696 } | |
2697 | |
7189 | 2698 octave_value get_default (const caseless_str& name) const; |
6874 | 2699 |
2700 octave_value get_defaults (void) const | |
2701 { | |
2702 return default_properties.as_struct ("default"); | |
2703 } | |
2704 | |
2705 base_properties& get_properties (void) { return xproperties; } | |
2706 | |
7222 | 2707 const base_properties& get_properties (void) const { return xproperties; } |
2708 | |
7214 | 2709 void update_axis_limits (const std::string& axis_type); |
2710 | |
6874 | 2711 bool valid_object (void) const { return true; } |
2712 | |
2713 private: | |
2714 property_list default_properties; | |
2715 }; | |
2716 | |
2717 // --------------------------------------------------------------------- | |
2718 | |
7365 | 2719 class OCTINTERP_API line : public base_graphics_object |
6874 | 2720 { |
2721 public: | |
7821
f79dcba526a8
Export nested properties classes of all graphics object.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7527
diff
changeset
|
2722 class OCTINTERP_API properties : public base_properties |
6874 | 2723 { |
2724 public: | |
2725 // See the genprops.awk script for an explanation of the | |
2726 // properties declarations. | |
2727 | |
7366 | 2728 // properties which are not in matlab: |
7384 | 2729 // ldata, udata, xldata, xudata, keylabel, interpreter |
7366 | 2730 |
7363 | 2731 BEGIN_PROPERTIES(line) |
2732 data_property xdata l , default_data () | |
2733 data_property ydata l , default_data () | |
2734 data_property zdata l , Matrix () | |
2735 data_property ldata l , Matrix () | |
2736 data_property udata l , Matrix () | |
2737 data_property xldata l , Matrix () | |
2738 data_property xudata l , Matrix () | |
2739 color_property color , color_values (0, 0, 0) | |
2740 radio_property linestyle , "{-}|--|:|-.|none" | |
2741 double_property linewidth , 0.5 | |
2742 radio_property marker , "{none}|s|o|x|+|.|*|<|>|v|^|d|p|h" | |
2743 color_property markeredgecolor , "{auto}|none" | |
2744 color_property markerfacecolor , "auto|{none}" | |
2745 double_property markersize , 6 | |
2746 string_property keylabel , "" | |
7384 | 2747 radio_property interpreter , "{tex}|none|latex" |
7377 | 2748 string_property displayname , "" |
7380 | 2749 radio_property erasemode , "{normal}|none|xor|background" |
6874 | 2750 END_PROPERTIES |
2751 }; | |
2752 | |
2753 private: | |
2754 properties xproperties; | |
2755 | |
2756 public: | |
2757 line (const graphics_handle& mh, const graphics_handle& p) | |
2758 : base_graphics_object (), xproperties (mh, p) | |
2759 { | |
2760 xproperties.override_defaults (*this); | |
2761 } | |
2762 | |
2763 ~line (void) { xproperties.delete_children (); } | |
2764 | |
2765 base_properties& get_properties (void) { return xproperties; } | |
2766 | |
7222 | 2767 const base_properties& get_properties (void) const { return xproperties; } |
2768 | |
6874 | 2769 bool valid_object (void) const { return true; } |
2770 }; | |
2771 | |
2772 // --------------------------------------------------------------------- | |
2773 | |
7365 | 2774 class OCTINTERP_API text : public base_graphics_object |
6874 | 2775 { |
2776 public: | |
7821
f79dcba526a8
Export nested properties classes of all graphics object.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7527
diff
changeset
|
2777 class OCTINTERP_API properties : public base_properties |
6874 | 2778 { |
2779 public: | |
2780 // See the genprops.awk script for an explanation of the | |
2781 // properties declarations. | |
2782 | |
7363 | 2783 BEGIN_PROPERTIES(text) |
2784 string_property string , "" | |
2785 radio_property units , "{data}|pixels|normalized|inches|centimeters|points" | |
2786 array_property position , Matrix (1, 3, 0.0) | |
2787 double_property rotation , 0 | |
2788 radio_property horizontalalignment , "{left}|center|right" | |
2789 color_property color , color_values (0, 0, 0) | |
2790 string_property fontname , "Helvetica" | |
2791 double_property fontsize , 10 | |
7379 | 2792 radio_property fontangle , "{normal}|italic|oblique" |
2793 radio_property fontweight , "light|{normal}|demi|bold" | |
2794 radio_property interpreter , "{tex}|none|latex" | |
7377 | 2795 color_property backgroundcolor , "{none}" |
2796 string_property displayname , "" | |
2797 color_property edgecolor , "{none}" | |
7380 | 2798 radio_property erasemode , "{normal}|none|xor|background" |
7377 | 2799 bool_property editing , "off" |
2800 radio_property fontunits , "inches|centimeters|normalized|{points}|pixel" | |
2801 radio_property linestyle , "{-}|--|:|-.|none" | |
2802 double_property linewidth , 0.5 | |
2803 double_property margin , 1 | |
2804 radio_property verticalalignment , "top|cap|{middle}|baseline|bottom" | |
6874 | 2805 END_PROPERTIES |
2806 | |
7363 | 2807 protected: |
2808 void init (void) | |
2809 { | |
2810 position.add_constraint (dim_vector (1, 3)); | |
2811 } | |
6874 | 2812 }; |
2813 | |
2814 private: | |
2815 properties xproperties; | |
2816 | |
2817 public: | |
2818 text (const graphics_handle& mh, const graphics_handle& p) | |
2819 : base_graphics_object (), xproperties (mh, p) | |
2820 { | |
2821 xproperties.override_defaults (*this); | |
2822 } | |
2823 | |
2824 ~text (void) { xproperties.delete_children (); } | |
2825 | |
2826 base_properties& get_properties (void) { return xproperties; } | |
2827 | |
7222 | 2828 const base_properties& get_properties (void) const { return xproperties; } |
2829 | |
6874 | 2830 bool valid_object (void) const { return true; } |
2831 }; | |
2832 | |
2833 // --------------------------------------------------------------------- | |
2834 | |
7365 | 2835 class OCTINTERP_API image : public base_graphics_object |
6874 | 2836 { |
2837 public: | |
7821
f79dcba526a8
Export nested properties classes of all graphics object.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7527
diff
changeset
|
2838 class OCTINTERP_API properties : public base_properties |
6874 | 2839 { |
2840 public: | |
2841 // See the genprops.awk script for an explanation of the | |
2842 // properties declarations. | |
2843 | |
7363 | 2844 BEGIN_PROPERTIES(image) |
2845 data_property xdata l , Matrix () | |
2846 data_property ydata l , Matrix () | |
2847 data_property cdata l , Matrix () | |
7471
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7447
diff
changeset
|
2848 radio_property cdatamapping a , "{scaled}|direct" |
6874 | 2849 END_PROPERTIES |
2850 | |
7363 | 2851 protected: |
2852 void init (void) | |
2853 { | |
2854 } | |
6874 | 2855 }; |
2856 | |
2857 private: | |
2858 properties xproperties; | |
2859 | |
2860 public: | |
2861 image (const graphics_handle& mh, const graphics_handle& p) | |
2862 : base_graphics_object (), xproperties (mh, p) | |
2863 { | |
2864 xproperties.override_defaults (*this); | |
2865 } | |
2866 | |
2867 ~image (void) { xproperties.delete_children (); } | |
2868 | |
2869 base_properties& get_properties (void) { return xproperties; } | |
2870 | |
7222 | 2871 const base_properties& get_properties (void) const { return xproperties; } |
2872 | |
6874 | 2873 bool valid_object (void) const { return true; } |
2874 }; | |
2875 | |
2876 // --------------------------------------------------------------------- | |
2877 | |
7365 | 2878 class OCTINTERP_API patch : public base_graphics_object |
6874 | 2879 { |
2880 public: | |
7821
f79dcba526a8
Export nested properties classes of all graphics object.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7527
diff
changeset
|
2881 class OCTINTERP_API properties : public base_properties |
6874 | 2882 { |
2883 public: | |
7833
8ff92634982d
Add initial support for patch rendering through GLU tessellation (no transparency, no border, no markers yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7832
diff
changeset
|
2884 octave_value get_color_data (void) const; |
8ff92634982d
Add initial support for patch rendering through GLU tessellation (no transparency, no border, no markers yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7832
diff
changeset
|
2885 |
6874 | 2886 // See the genprops.awk script for an explanation of the |
2887 // properties declarations. | |
2888 | |
7363 | 2889 BEGIN_PROPERTIES(patch) |
7403 | 2890 data_property xdata l , Matrix () |
7363 | 2891 data_property ydata l , Matrix () |
2892 data_property zdata l , Matrix () | |
2893 data_property cdata l , Matrix () | |
7379 | 2894 radio_property cdatamapping , "{scaled}|direct" |
7363 | 2895 array_property faces , Matrix () |
7368 | 2896 data_property facevertexalphadata , Matrix () |
2897 data_property facevertexcdata , Matrix () | |
7363 | 2898 array_property vertices , Matrix () |
7368 | 2899 array_property vertexnormals , Matrix () |
7379 | 2900 radio_property normalmode , "{auto}|manual" |
2901 color_property facecolor , "{flat}|none|interp" | |
7363 | 2902 double_property facealpha , 1.0 |
7832
e06fdf7ea647
Fix default value of patch::facelighting. Add scaler/graphics_xform utilities
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7830
diff
changeset
|
2903 radio_property facelighting , "flat|{none}|gouraud|phong" |
7379 | 2904 color_property edgecolor , color_property (color_values (0, 0, 0), radio_values ("flat|none|interp")) |
7368 | 2905 double_property edgealpha , 1.0 |
7379 | 2906 radio_property edgelighting , "{none}|flat|gouraud|phong" |
2907 radio_property backfacelighting , "{reverselit}|unlit|lit" | |
7368 | 2908 double_property ambientstrength , 0.3 |
2909 double_property diffusestrength , 0.6 | |
2910 double_property specularstrength , 0.6 | |
2911 double_property specularexponent , 10.0 | |
2912 double_property specularcolorreflectance , 1.0 | |
7379 | 2913 radio_property erasemode , "{normal}|background|xor|none" |
7363 | 2914 radio_property linestyle , "{-}|--|:|-.|none" |
2915 double_property linewidth , 0.5 | |
2916 radio_property marker , "{none}|s|o|x|+|.|*|<|>|v|^|d|p|h" | |
2917 color_property markeredgecolor , "{auto}|none" | |
2918 color_property markerfacecolor , "auto|{none}" | |
2919 double_property markersize , 6 | |
2920 string_property keylabel , "" | |
7384 | 2921 radio_property interpreter , "{tex}|none|latex" |
6874 | 2922 END_PROPERTIES |
2923 | |
7363 | 2924 protected: |
2925 void init (void) | |
2926 { | |
2927 vertices.add_constraint (dim_vector (-1, 2)); | |
2928 vertices.add_constraint (dim_vector (-1, 3)); | |
2929 } | |
6874 | 2930 }; |
2931 | |
2932 private: | |
2933 properties xproperties; | |
2934 | |
2935 public: | |
2936 patch (const graphics_handle& mh, const graphics_handle& p) | |
2937 : base_graphics_object (), xproperties (mh, p) | |
2938 { | |
2939 xproperties.override_defaults (*this); | |
2940 } | |
2941 | |
2942 ~patch (void) { xproperties.delete_children (); } | |
2943 | |
2944 base_properties& get_properties (void) { return xproperties; } | |
2945 | |
7222 | 2946 const base_properties& get_properties (void) const { return xproperties; } |
2947 | |
6874 | 2948 bool valid_object (void) const { return true; } |
2949 }; | |
2950 | |
2951 // --------------------------------------------------------------------- | |
2952 | |
7365 | 2953 class OCTINTERP_API surface : public base_graphics_object |
6874 | 2954 { |
2955 public: | |
7821
f79dcba526a8
Export nested properties classes of all graphics object.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7527
diff
changeset
|
2956 class OCTINTERP_API properties : public base_properties |
6874 | 2957 { |
2958 public: | |
7829
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2959 octave_value get_color_data (void) const; |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2960 |
6874 | 2961 // See the genprops.awk script for an explanation of the |
2962 // properties declarations. | |
2963 | |
7363 | 2964 BEGIN_PROPERTIES(surface) |
7829
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2965 data_property xdata lu , Matrix () |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2966 data_property ydata lu , Matrix () |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2967 data_property zdata lu , Matrix () |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2968 // FIXME: cdata can be of type "double" or "uint8" |
7363 | 2969 data_property cdata l , Matrix () |
7471
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7447
diff
changeset
|
2970 radio_property cdatamapping a , "{scaled}|direct" |
7829
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2971 color_property facecolor , "{flat}|none|interp|texturemap" |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2972 // FIXME: should be a double-radio property |
7363 | 2973 double_property facealpha , 1.0 |
7379 | 2974 color_property edgecolor , color_property (color_values (0, 0, 0), radio_values ("flat|none|interp")) |
7363 | 2975 radio_property linestyle , "{-}|--|:|-.|none" |
2976 double_property linewidth , 0.5 | |
2977 radio_property marker , "{none}|s|o|x|+|.|*|<|>|v|^|d|p|h" | |
2978 color_property markeredgecolor , "{auto}|none" | |
2979 color_property markerfacecolor , "auto|{none}" | |
2980 double_property markersize , 6 | |
2981 string_property keylabel , "" | |
7384 | 2982 radio_property interpreter , "{tex}|none|latex" |
7829
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2983 array_property alphadata , Matrix () |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2984 radio_property alphadatamapping , "none|direct|{scaled}" |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2985 double_property ambientstrength , 0.3 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2986 radio_property backfacelighting , "unlit|lit|{reverselit}" |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2987 double_property diffusestrength , 0.6 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2988 // FIXME: should be a double-radio property |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2989 double_property edgealpha , 1.0 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2990 radio_property edgelighting , "{none}|flat|gouraud|phong" |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2991 radio_property erasemode , "{normal}|none|xor|background" |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2992 radio_property facelighting , "{none}|flat|gouraud|phong" |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2993 radio_property meshstyle , "{both}|row|column" |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2994 radio_property normalmode u , "{auto}|manual" |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2995 double_property specularcolorreflectance , 1 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2996 double_property specularexponent , 10 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2997 double_property specularstrength , 0.9 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
2998 array_property vertexnormals u , Matrix () |
6874 | 2999 END_PROPERTIES |
3000 | |
7363 | 3001 protected: |
3002 void init (void) | |
3003 { | |
7829
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3004 alphadata.add_constraint ("double"); |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3005 alphadata.add_constraint ("uint8"); |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3006 alphadata.add_constraint (dim_vector (-1, -1)); |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3007 vertexnormals.add_constraint (dim_vector (-1, -1, 3)); |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3008 // FIXME: uncomment this when cdata has the right type |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3009 //cdata.add_constraint ("double"); |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3010 //cdata.add_constraint ("double"); |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3011 //cdata.add_constraint (dim_vector (-1, -1)); |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3012 //cdata.add_constraint (dim_vector (-1, -1, 3)); |
7363 | 3013 } |
7829
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3014 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3015 private: |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3016 void update_normals (void); |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3017 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3018 void update_xdata (void) { update_normals (); } |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3019 void update_ydata (void) { update_normals (); } |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3020 void update_zdata (void) { update_normals (); } |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3021 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3022 void update_normalmode (void) |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3023 { update_normals (); } |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3024 |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3025 void update_vertexnormals (void) |
8ca8e97e8c0a
Add rendering interface for surface object (no implementation yet).
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7828
diff
changeset
|
3026 { set_normalmode ("manual"); } |
6874 | 3027 }; |
3028 | |
3029 private: | |
3030 properties xproperties; | |
3031 | |
3032 public: | |
3033 surface (const graphics_handle& mh, const graphics_handle& p) | |
3034 : base_graphics_object (), xproperties (mh, p) | |
3035 { | |
3036 xproperties.override_defaults (*this); | |
3037 } | |
3038 | |
3039 ~surface (void) { xproperties.delete_children (); } | |
3040 | |
3041 base_properties& get_properties (void) { return xproperties; } | |
3042 | |
7222 | 3043 const base_properties& get_properties (void) const { return xproperties; } |
3044 | |
6874 | 3045 bool valid_object (void) const { return true; } |
3046 }; | |
3047 | |
3048 octave_value | |
3049 get_property_from_handle (double handle, const std::string &property, | |
3050 const std::string &func); | |
3051 bool | |
3052 set_property_in_handle (double handle, const std::string &property, | |
3053 const octave_value &arg, const std::string &func); | |
3054 | |
3055 // --------------------------------------------------------------------- | |
3056 | |
7365 | 3057 class OCTINTERP_API gh_manager |
6874 | 3058 { |
3059 protected: | |
3060 | |
3061 gh_manager (void); | |
3062 | |
3063 public: | |
3064 | |
3065 static bool instance_ok (void) | |
3066 { | |
3067 bool retval = true; | |
3068 | |
3069 if (! instance) | |
3070 instance = new gh_manager (); | |
3071 | |
3072 if (! instance) | |
3073 { | |
3074 ::error ("unable to create gh_manager!"); | |
3075 | |
3076 retval = false; | |
3077 } | |
3078 | |
3079 return retval; | |
3080 } | |
3081 | |
3082 static void free (const graphics_handle& h) | |
3083 { | |
3084 if (instance_ok ()) | |
3085 instance->do_free (h); | |
3086 } | |
3087 | |
3088 static graphics_handle lookup (double val) | |
3089 { | |
3090 return instance_ok () ? instance->do_lookup (val) : graphics_handle (); | |
3091 } | |
3092 | |
3093 static graphics_object get_object (const graphics_handle& h) | |
3094 { | |
3095 return instance_ok () ? instance->do_get_object (h) : graphics_object (); | |
3096 } | |
3097 | |
3098 static graphics_handle | |
3099 make_graphics_handle (const std::string& go_name, | |
7370 | 3100 const graphics_handle& parent, bool do_createfcn = true) |
6874 | 3101 { |
3102 return instance_ok () | |
7370 | 3103 ? instance->do_make_graphics_handle (go_name, parent, do_createfcn) |
6874 | 3104 : graphics_handle (); |
3105 } | |
3106 | |
3107 static graphics_handle make_figure_handle (double val) | |
3108 { | |
3109 return instance_ok () | |
3110 ? instance->do_make_figure_handle (val) : graphics_handle (); | |
3111 } | |
3112 | |
3113 static void push_figure (const graphics_handle& h) | |
3114 { | |
3115 if (instance_ok ()) | |
3116 instance->do_push_figure (h); | |
3117 } | |
3118 | |
3119 static void pop_figure (const graphics_handle& h) | |
3120 { | |
3121 if (instance_ok ()) | |
3122 instance->do_pop_figure (h); | |
3123 } | |
3124 | |
3125 static graphics_handle current_figure (void) | |
3126 { | |
3127 return instance_ok () | |
3128 ? instance->do_current_figure () : graphics_handle (); | |
3129 } | |
3130 | |
3131 static Matrix handle_list (void) | |
3132 { | |
3133 return instance_ok () ? instance->do_handle_list () : Matrix (); | |
3134 } | |
3135 | |
3136 static Matrix figure_handle_list (void) | |
3137 { | |
3138 return instance_ok () ? instance->do_figure_handle_list () : Matrix (); | |
3139 } | |
3140 | |
3141 private: | |
3142 | |
3143 static gh_manager *instance; | |
3144 | |
3145 typedef std::map<graphics_handle, graphics_object>::iterator iterator; | |
3146 typedef std::map<graphics_handle, graphics_object>::const_iterator const_iterator; | |
3147 | |
3148 typedef std::set<graphics_handle>::iterator free_list_iterator; | |
3149 typedef std::set<graphics_handle>::const_iterator const_free_list_iterator; | |
3150 | |
3151 typedef std::list<graphics_handle>::iterator figure_list_iterator; | |
3152 typedef std::list<graphics_handle>::const_iterator const_figure_list_iterator; | |
3153 | |
3154 // A map of handles to graphics objects. | |
3155 std::map<graphics_handle, graphics_object> handle_map; | |
3156 | |
3157 // The available graphics handles. | |
3158 std::set<graphics_handle> handle_free_list; | |
3159 | |
3160 // The next handle available if handle_free_list is empty. | |
7286 | 3161 double next_handle; |
6874 | 3162 |
3163 // The allocated figure handles. Top of the stack is most recently | |
3164 // created. | |
3165 std::list<graphics_handle> figure_list; | |
3166 | |
3167 graphics_handle get_handle (const std::string& go_name); | |
3168 | |
3169 void do_free (const graphics_handle& h); | |
3170 | |
3171 graphics_handle do_lookup (double val) | |
3172 { | |
7363 | 3173 iterator p = (xisnan (val) ? handle_map.end () : handle_map.find (val)); |
6874 | 3174 |
3175 return (p != handle_map.end ()) ? p->first : graphics_handle (); | |
3176 } | |
3177 | |
3178 graphics_object do_get_object (const graphics_handle& h) | |
3179 { | |
7379 | 3180 iterator p = (h.ok () ? handle_map.find (h) : handle_map.end ()); |
6874 | 3181 |
3182 return (p != handle_map.end ()) ? p->second : graphics_object (); | |
3183 } | |
3184 | |
3185 graphics_handle do_make_graphics_handle (const std::string& go_name, | |
7370 | 3186 const graphics_handle& p, bool do_createfcn); |
6874 | 3187 |
3188 graphics_handle do_make_figure_handle (double val); | |
3189 | |
3190 Matrix do_handle_list (void) | |
3191 { | |
3192 Matrix retval (1, handle_map.size ()); | |
3193 octave_idx_type i = 0; | |
3194 for (const_iterator p = handle_map.begin (); p != handle_map.end (); p++) | |
7056 | 3195 { |
3196 graphics_handle h = p->first; | |
3197 retval(i++) = h.value (); | |
3198 } | |
6874 | 3199 return retval; |
3200 } | |
3201 | |
3202 Matrix do_figure_handle_list (void) | |
3203 { | |
3204 Matrix retval (1, figure_list.size ()); | |
3205 octave_idx_type i = 0; | |
3206 for (const_figure_list_iterator p = figure_list.begin (); | |
3207 p != figure_list.end (); | |
3208 p++) | |
7056 | 3209 { |
3210 graphics_handle h = *p; | |
3211 retval(i++) = h.value (); | |
3212 } | |
6874 | 3213 return retval; |
3214 } | |
3215 | |
3216 void do_push_figure (const graphics_handle& h); | |
3217 | |
3218 void do_pop_figure (const graphics_handle& h); | |
3219 | |
3220 graphics_handle do_current_figure (void) const | |
3221 { | |
3222 return figure_list.empty () ? graphics_handle () : figure_list.front (); | |
3223 } | |
3224 }; | |
3225 | |
3226 | |
3227 // This function is NOT equivalent to the scripting language function gcf. | |
7365 | 3228 OCTINTERP_API graphics_handle gcf (void); |
6874 | 3229 |
3230 // This function is NOT equivalent to the scripting language function gca. | |
7365 | 3231 OCTINTERP_API graphics_handle gca (void); |
6874 | 3232 |
3233 #endif | |
3234 | |
3235 /* | |
3236 ;;; Local Variables: *** | |
3237 ;;; mode: C++ *** | |
3238 ;;; End: *** | |
3239 */ |