File: v-sim-dataNode.html

package info (click to toggle)
v-sim 3.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 15,860 kB
  • sloc: ansic: 75,222; sh: 10,239; makefile: 580; python: 572; cpp: 353; xml: 130
file content (867 lines) | stat: -rw-r--r-- 60,065 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>dataNode</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="V_Sim API - Reference Manual">
<link rel="up" href="ch06.html" title="Extra functionalities">
<link rel="prev" href="v-sim-dataFile.html" title="dataFile">
<link rel="next" href="v-sim-extraNode.html" title="extraNode">
<meta name="generator" content="GTK-Doc V1.14 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
<tr valign="middle">
<td><a accesskey="p" href="v-sim-dataFile.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="ch06.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">V_Sim API - Reference Manual</th>
<td><a accesskey="n" href="v-sim-extraNode.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts">
<a href="#v-sim-dataNode.synopsis" class="shortcut">Top</a>
                   | 
                  <a href="#v-sim-dataNode.description" class="shortcut">Description</a>
                   | 
                  <a href="#v-sim-dataNode.object-hierarchy" class="shortcut">Object Hierarchy</a>
                   | 
                  <a href="#v-sim-dataNode.signals" class="shortcut">Signals</a>
</td></tr>
</table>
<div class="refentry" title="dataNode">
<a name="v-sim-dataNode"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="v-sim-dataNode.top_of_page"></a>dataNode</span></h2>
<p>dataNode — Extends capabilities of node properties.</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsynopsisdiv" title="Synopsis">
<a name="v-sim-dataNode.synopsis"></a><h2>Synopsis</h2>
<a name="VisuDataNode"></a><pre class="synopsis">#define             <a class="link" href="v-sim-dataNode.html#VISU-DATA-NODE-TYPE:CAPS" title="VISU_DATA_NODE_TYPE">VISU_DATA_NODE_TYPE</a>
#define             <a class="link" href="v-sim-dataNode.html#VISU-DATA-NODE:CAPS" title="VISU_DATA_NODE()">VISU_DATA_NODE</a>                      (obj)
#define             <a class="link" href="v-sim-dataNode.html#VISU-DATA-NODE-CLASS:CAPS" title="VISU_DATA_NODE_CLASS()">VISU_DATA_NODE_CLASS</a>                (klass)
#define             <a class="link" href="v-sim-dataNode.html#IS-VISU-DATA-NODE-TYPE:CAPS" title="IS_VISU_DATA_NODE_TYPE()">IS_VISU_DATA_NODE_TYPE</a>              (obj)
#define             <a class="link" href="v-sim-dataNode.html#IS-VISU-DATA-NODE-CLASS:CAPS" title="IS_VISU_DATA_NODE_CLASS()">IS_VISU_DATA_NODE_CLASS</a>             (klass)
#define             <a class="link" href="v-sim-dataNode.html#VISU-DATA-NODE-GET-CLASS:CAPS" title="VISU_DATA_NODE_GET_CLASS()">VISU_DATA_NODE_GET_CLASS</a>            (obj)
                    <a class="link" href="v-sim-dataNode.html#VisuDataNodeClass" title="VisuDataNodeClass">VisuDataNodeClass</a>;
                    <a class="link" href="v-sim-dataNode.html#VisuDataNode-struct" title="VisuDataNode">VisuDataNode</a>;
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            (<a class="link" href="v-sim-dataNode.html#VisuDataNodeFromStringFunc" title="VisuDataNodeFromStringFunc ()">*VisuDataNodeFromStringFunc</a>)       (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> *node</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *labelIn</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **labelOut</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *modify</code></em>);
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             (<a class="link" href="v-sim-dataNode.html#VisuDataNodeToStringFunc" title="VisuDataNodeToStringFunc ()">*VisuDataNodeToStringFunc</a>)         (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> *node</code></em>);
<span class="returnvalue">void</span>                (<a class="link" href="v-sim-dataNode.html#VisuDataNodeCallbackMethod" title="VisuDataNodeCallbackMethod ()">*VisuDataNodeCallbackMethod</a>)       (<em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> *node</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
<a href="/usr/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="returnvalue">GType</span></a>               <a class="link" href="v-sim-dataNode.html#visu-data-node-get-type" title="visu_data_node_get_type ()">visu_data_node_get_type</a>             (<em class="parameter"><code><span class="type">void</span></code></em>);
<a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="returnvalue">GObject</span></a>*            <a class="link" href="v-sim-dataNode.html#visu-data-node-new" title="visu_data_node_new ()">visu_data_node_new</a>                  (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> type</code></em>);
<a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="returnvalue">GObject</span></a>*            <a class="link" href="v-sim-dataNode.html#visu-data-node-newWithCallbacks" title="visu_data_node_newWithCallbacks ()">visu_data_node_newWithCallbacks</a>     (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNodeFromStringFunc" title="VisuDataNodeFromStringFunc ()"><span class="type">VisuDataNodeFromStringFunc</span></a> setAsString</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNodeToStringFunc" title="VisuDataNodeToStringFunc ()"><span class="type">VisuDataNodeToStringFunc</span></a> getAsString</code></em>);
<a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a>*              <a class="link" href="v-sim-dataNode.html#nodeDataGet-list" title="nodeDataGet_list ()">nodeDataGet_list</a>                    (<em class="parameter"><code><span class="type">void</span></code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-dataNode.html#visu-data-node-setLabel" title="visu_data_node_setLabel ()">visu_data_node_setLabel</a>             (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *label</code></em>);
const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>*        <a class="link" href="v-sim-dataNode.html#visu-data-node-getLabel" title="visu_data_node_getLabel ()">visu_data_node_getLabel</a>             (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-dataNode.html#visu-data-node-setUsed" title="visu_data_node_setUsed ()">visu_data_node_setUsed</a>              (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> nb</code></em>);
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="v-sim-dataNode.html#visu-data-node-getUsed" title="visu_data_node_getUsed ()">visu_data_node_getUsed</a>              (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>);
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="v-sim-dataNode.html#visu-data-node-setValueAsString" title="visu_data_node_setValueAsString ()">visu_data_node_setValueAsString</a>     (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> *node</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *labelIn</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **labelOut</code></em>);
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>*              <a class="link" href="v-sim-dataNode.html#visu-data-node-getValueAsString" title="visu_data_node_getValueAsString ()">visu_data_node_getValueAsString</a>     (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> *node</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-dataNode.html#visu-data-node-setCallback" title="visu_data_node_setCallback ()">visu_data_node_setCallback</a>          (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNodeCallbackMethod" title="VisuDataNodeCallbackMethod ()"><span class="type">VisuDataNodeCallbackMethod</span></a> callback</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-dataNode.html#visu-data-node-setEditable" title="visu_data_node_setEditable ()">visu_data_node_setEditable</a>          (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> status</code></em>);
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="v-sim-dataNode.html#visu-data-node-getEditable" title="visu_data_node_getEditable ()">visu_data_node_getEditable</a>          (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-dataNode.html#visu-data-node-emitValueChanged" title="visu_data_node_emitValueChanged ()">visu_data_node_emitValueChanged</a>     (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>);
</pre>
</div>
<div class="refsect1" title="Object Hierarchy">
<a name="v-sim-dataNode.object-hierarchy"></a><h2>Object Hierarchy</h2>
<pre class="synopsis">
  <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
   +----VisuDataNode
</pre>
</div>
<div class="refsect1" title="Signals">
<a name="v-sim-dataNode.signals"></a><h2>Signals</h2>
<pre class="synopsis">
  "<a class="link" href="v-sim-dataNode.html#VisuDataNode-propertyUnused" title='The "propertyUnused" signal'>propertyUnused</a>"                                 : Run Last / No Recursion / No Hooks
  "<a class="link" href="v-sim-dataNode.html#VisuDataNode-propertyUsed" title='The "propertyUsed" signal'>propertyUsed</a>"                                   : Run Last / No Recursion / No Hooks
  "<a class="link" href="v-sim-dataNode.html#VisuDataNode-valueChanged" title='The "valueChanged" signal'>valueChanged</a>"                                   : Run Last / No Recursion / No Hooks
</pre>
</div>
<div class="refsect1" title="Description">
<a name="v-sim-dataNode.description"></a><h2>Description</h2>
<p>
</p>
<p>This module is a wrapper around node properties from
<a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a>. It adds some capabilities, such as a translatable name,
a way to go from data to strings and reverse, callbacks when the
properties is changed...</p>
<p>
</p>
<p>When creating a node property calling
<a class="link" href="v-sim-visu-nodes.html#visu-node-property-newPointer" title="visu_node_property_newPointer ()"><code class="function">visu_node_property_newPointer()</code></a> for instance, a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> can be created using
<a class="link" href="v-sim-dataNode.html#visu-data-node-new" title="visu_data_node_new ()"><code class="function">visu_data_node_new()</code></a>. A <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> may not be attached to a specific
<a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> and is a global property found on each <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> (or
potentialy found). The advantage of doing this is to keep track of
available properties for <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> objects. To get all public
properties, call <a class="link" href="v-sim-dataNode.html#nodeDataGet-list" title="nodeDataGet_list ()"><code class="function">nodeDataGet_list()</code></a>.</p>
<p>
</p>
</div>
<div class="refsect1" title="Details">
<a name="v-sim-dataNode.details"></a><h2>Details</h2>
<div class="refsect2" title="VISU_DATA_NODE_TYPE">
<a name="VISU-DATA-NODE-TYPE:CAPS"></a><h3>VISU_DATA_NODE_TYPE</h3>
<pre class="programlisting">#define VISU_DATA_NODE_TYPE	     (visu_data_node_get_type ())
</pre>
<p>
return the type of <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a>.
</p>
</div>
<hr>
<div class="refsect2" title="VISU_DATA_NODE()">
<a name="VISU-DATA-NODE:CAPS"></a><h3>VISU_DATA_NODE()</h3>
<pre class="programlisting">#define VISU_DATA_NODE(obj)	     (G_TYPE_CHECK_INSTANCE_CAST(obj, VISU_DATA_NODE_TYPE, VisuDataNode))
</pre>
<p>
Cast the given <em class="parameter"><code>obj</code></em> into <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> type.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to cast.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="VISU_DATA_NODE_CLASS()">
<a name="VISU-DATA-NODE-CLASS:CAPS"></a><h3>VISU_DATA_NODE_CLASS()</h3>
<pre class="programlisting">#define VISU_DATA_NODE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST(klass, VISU_DATA_NODE_TYPE, VisuDataNodeClass))
</pre>
<p>
Cast the given <em class="parameter"><code>klass</code></em> into <a class="link" href="v-sim-dataNode.html#VisuDataNodeClass" title="VisuDataNodeClass"><span class="type">VisuDataNodeClass</span></a>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObjectClass"><span class="type">GObjectClass</span></a> to cast.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="IS_VISU_DATA_NODE_TYPE()">
<a name="IS-VISU-DATA-NODE-TYPE:CAPS"></a><h3>IS_VISU_DATA_NODE_TYPE()</h3>
<pre class="programlisting">#define IS_VISU_DATA_NODE_TYPE(obj)    (G_TYPE_CHECK_INSTANCE_TYPE(obj, VISU_DATA_NODE_TYPE))
</pre>
<p>
Test if the given <em class="parameter"><code>ogj</code></em> is of the type of <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> object.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to test.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="IS_VISU_DATA_NODE_CLASS()">
<a name="IS-VISU-DATA-NODE-CLASS:CAPS"></a><h3>IS_VISU_DATA_NODE_CLASS()</h3>
<pre class="programlisting">#define IS_VISU_DATA_NODE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE(klass, VISU_DATA_NODE_TYPE))
</pre>
<p>
Test if the given <em class="parameter"><code>klass</code></em> is of the type of <a class="link" href="v-sim-dataNode.html#VisuDataNodeClass" title="VisuDataNodeClass"><span class="type">VisuDataNodeClass</span></a> class.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>klass</code></em> :</span></p></td>
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObjectClass"><span class="type">GObjectClass</span></a> to test.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="VISU_DATA_NODE_GET_CLASS()">
<a name="VISU-DATA-NODE-GET-CLASS:CAPS"></a><h3>VISU_DATA_NODE_GET_CLASS()</h3>
<pre class="programlisting">#define VISU_DATA_NODE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS(obj, VISU_DATA_NODE_TYPE, VisuDataNodeClass))
</pre>
<p>
It returns the class of the given <em class="parameter"><code>obj</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>obj</code></em> :</span></p></td>
<td>a <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> to get the class of.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="VisuDataNodeClass">
<a name="VisuDataNodeClass"></a><h3>VisuDataNodeClass</h3>
<pre class="programlisting">typedef struct _VisuDataNodeClass VisuDataNodeClass;</pre>
<p>
An opaque structure.
</p>
</div>
<hr>
<div class="refsect2" title="VisuDataNode">
<a name="VisuDataNode-struct"></a><h3>VisuDataNode</h3>
<pre class="programlisting">typedef struct _VisuDataNode VisuDataNode;</pre>
<p>
An opaque structure.
</p>
</div>
<hr>
<div class="refsect2" title="VisuDataNodeFromStringFunc ()">
<a name="VisuDataNodeFromStringFunc"></a><h3>VisuDataNodeFromStringFunc ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            (*VisuDataNodeFromStringFunc)       (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> *node</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *labelIn</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **labelOut</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *modify</code></em>);</pre>
<p>
If the string is correctly formatted (that means it has the same format as
the string returned by <code class="function">GetValueAsStringFunc()</code>) the stored values are modified.
The resulting string is created and put into <em class="parameter"><code>labelOut</code></em>. If the input string <em class="parameter"><code>labelIn</code></em>
is unparsable, <em class="parameter"><code>labelOut</code></em> will contain current values.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>dataObj</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> object ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>node</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>labelIn</code></em> :</span></p></td>
<td>a formatted string ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>labelOut</code></em> :</span></p></td>
<td>a pointer to store a string ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>modify</code></em> :</span></p></td>
<td>TRUE if the values have been modified.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> TRUE if the string was correctly parsed (modified or not).
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="VisuDataNodeToStringFunc ()">
<a name="VisuDataNodeToStringFunc"></a><h3>VisuDataNodeToStringFunc ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *             (*VisuDataNodeToStringFunc)         (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> *node</code></em>);</pre>
<p>
For the given node, the values stored are printed into a string.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>dataObj</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> object ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>node</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a newly created string (use <a href="/usr/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>).
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="VisuDataNodeCallbackMethod ()">
<a name="VisuDataNodeCallbackMethod"></a><h3>VisuDataNodeCallbackMethod ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                (*VisuDataNodeCallbackMethod)       (<em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> *node</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
<p>
Interface for callbacks methods that are called whenever a data is changed
on a node.
</p>
<p>
WARNING: it may be removed later.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>dataObj</code></em> :</span></p></td>
<td>the <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> object on which the callback is done ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>node</code></em> :</span></p></td>
<td>the <a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> on which the callback is done ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a user defined pointer.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_get_type ()">
<a name="visu-data-node-get-type"></a><h3>visu_data_node_get_type ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="returnvalue">GType</span></a>               visu_data_node_get_type             (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
<p>
This method returns the type of <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a>, use VISU_DATA_NODE_TYPE instead.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the type of <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a>.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_new ()">
<a name="visu-data-node-new"></a><h3>visu_data_node_new ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="returnvalue">GObject</span></a>*            visu_data_node_new                  (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> type</code></em>);</pre>
<p>
This method creates a new <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> and registers it. A <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> is
characterised by a string used as a key to store it as a node property
(see <a class="link" href="v-sim-visu-nodes.html#visu-node-property-newPointer" title="visu_node_property_newPointer ()"><code class="function">visu_node_property_newPointer()</code></a>). The stored data can be arrays or not.
Notice that <em class="parameter"><code>name</code></em> is copied.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
<td>a string used to store the data as a node property ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
<td>the type of data stored (array or not).
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a newly created <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a>.. <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>. </td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_newWithCallbacks ()">
<a name="visu-data-node-newWithCallbacks"></a><h3>visu_data_node_newWithCallbacks ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="returnvalue">GObject</span></a>*            visu_data_node_newWithCallbacks     (<em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNodeFromStringFunc" title="VisuDataNodeFromStringFunc ()"><span class="type">VisuDataNodeFromStringFunc</span></a> setAsString</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNodeToStringFunc" title="VisuDataNodeToStringFunc ()"><span class="type">VisuDataNodeToStringFunc</span></a> getAsString</code></em>);</pre>
<p>
As <a class="link" href="v-sim-dataNode.html#visu-data-node-new" title="visu_data_node_new ()"><code class="function">visu_data_node_new()</code></a>, but with custom <em class="parameter"><code>setAsString</code></em> and <em class="parameter"><code>getAsString</code></em> routines. This
is used to allow to treat every node related values, not just node properties.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
<td>a string used to store the data as a node property ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>setAsString</code></em> :</span></p></td>
<td> a custom routine to change node values from a string ;. scope call</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>getAsString</code></em> :</span></p></td>
<td> a custom routine to create a string from node values.. scope call</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a newly created <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a>.. <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>. </td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="nodeDataGet_list ()">
<a name="nodeDataGet-list"></a><h3>nodeDataGet_list ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a>*              nodeDataGet_list                    (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
<p>
All registered <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> are stored in an intern list. This method is
used to retrieve it.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a href="/usr/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> of all registereed <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> (this list is owned by V_Sim).
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_setLabel ()">
<a name="visu-data-node-setLabel"></a><h3>visu_data_node_setLabel ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                visu_data_node_setLabel             (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code>const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *label</code></em>);</pre>
<p>
A <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> can have a label, if not its name is used.
Notice that <em class="parameter"><code>label</code></em> is not copied.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
<td>an UTF8 string (may be translated).
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_getLabel ()">
<a name="visu-data-node-getLabel"></a><h3>visu_data_node_getLabel ()</h3>
<pre class="programlisting">const <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>*        visu_data_node_getLabel             (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>);</pre>
<p>
A <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> can have a label, if not its name is used.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the label of the node (in UTF8), this string is owned by V_Sim.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_setUsed ()">
<a name="visu-data-node-setUsed"></a><h3>visu_data_node_setUsed ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                visu_data_node_setUsed              (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> nb</code></em>);</pre>
<p>
A <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> stores data for each node of a given <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a>. The number of data stored for
each node is set with this method. When some part wants to set a new node property
and wants to make it public, this method can be called. It also can be called when
the node property is removed (using a null <em class="parameter"><code>nb</code></em> argument).
If <em class="parameter"><code>nb</code></em> is changed for a positive value, the "propertyUsed"
signal is emitted with <em class="parameter"><code>dataObj</code></em> as argument, instead if the value is changed
for null, the "propertyUnused" signal is triggered also with <em class="parameter"><code>dataObj</code></em> as argument.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>dataObj</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> object ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>nb</code></em> :</span></p></td>
<td>a positive or null integer.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_getUsed ()">
<a name="visu-data-node-getUsed"></a><h3>visu_data_node_getUsed ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            visu_data_node_getUsed              (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>);</pre>
<p>
Access method to know if the given <em class="parameter"><code>dataObj</code></em> has a public node property of the type
<em class="parameter"><code>data</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>dataObj</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> object.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> TRUE if <em class="parameter"><code>dataObj</code></em> has a node property of the given type.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_setValueAsString ()">
<a name="visu-data-node-setValueAsString"></a><h3>visu_data_node_setValueAsString ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            visu_data_node_setValueAsString     (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> *node</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *labelIn</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **labelOut</code></em>);</pre>
<p>
If the string is correctly formatted (that means it has the same format as
the string returned by <a class="link" href="v-sim-dataNode.html#visu-data-node-getValueAsString" title="visu_data_node_getValueAsString ()"><code class="function">visu_data_node_getValueAsString()</code></a>) the stored values are modified.
The resulting string is created and put into <em class="parameter"><code>labelOut</code></em>. If the input string <em class="parameter"><code>labelIn</code></em>
is unparsable, <em class="parameter"><code>labelOut</code></em> will contain current values. Notice that this method is
callable only if the <em class="parameter"><code>data</code></em> is editable (see <a class="link" href="v-sim-dataNode.html#visu-data-node-getEditable" title="visu_data_node_getEditable ()"><code class="function">visu_data_node_getEditable()</code></a>).
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>dataObj</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> object ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>node</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>labelIn</code></em> :</span></p></td>
<td>a formatted string ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>labelOut</code></em> :</span></p></td>
<td>a pointer to store a string.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> TRUE if the string was correctly parsed.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_getValueAsString ()">
<a name="visu-data-node-getValueAsString"></a><h3>visu_data_node_getValueAsString ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a>*              visu_data_node_getValueAsString     (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a> *node</code></em>);</pre>
<p>
For the given node, the values stored are printed into a string.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>dataObj</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> object ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>node</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-nodes.html#VisuNode" title="VisuNode"><span class="type">VisuNode</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a newly created string.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_setCallback ()">
<a name="visu-data-node-setCallback"></a><h3>visu_data_node_setCallback ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                visu_data_node_setCallback          (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNodeCallbackMethod" title="VisuDataNodeCallbackMethod ()"><span class="type">VisuDataNodeCallbackMethod</span></a> callback</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
<p>
When <a class="link" href="v-sim-dataNode.html#visu-data-node-setValueAsString" title="visu_data_node_setValueAsString ()"><code class="function">visu_data_node_setValueAsString()</code></a>, values may be modified. If true, the given
callback method is called with <em class="parameter"><code>user_data</code></em> as argument.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td>
<td> a <a class="link" href="v-sim-dataNode.html#VisuDataNodeCallbackMethod" title="VisuDataNodeCallbackMethod ()"><span class="type">VisuDataNodeCallbackMethod</span></a> method ;. scope call</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>a pointer to a location used to store some user data.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_setEditable ()">
<a name="visu-data-node-setEditable"></a><h3>visu_data_node_setEditable ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                visu_data_node_setEditable          (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> status</code></em>);</pre>
<p>
Set if the values are modifiable.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>status</code></em> :</span></p></td>
<td>a boolean value.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_getEditable ()">
<a name="visu-data-node-getEditable"></a><h3>visu_data_node_getEditable ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            visu_data_node_getEditable          (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>);</pre>
<p>
If some callback method has been given with <a class="link" href="v-sim-dataNode.html#visu-data-node-setCallback" title="visu_data_node_setCallback ()"><code class="function">visu_data_node_setCallback()</code></a>, then
the values are considered editable.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a>.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> TRUE if values are editable.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_data_node_emitValueChanged ()">
<a name="visu-data-node-emitValueChanged"></a><h3>visu_data_node_emitValueChanged ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                visu_data_node_emitValueChanged     (<em class="parameter"><code><a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *dataObj</code></em>);</pre>
<p>
Emit the 'valueChanged' signal. This method should be called after
all changes have been done to a node property set of nodes. Then routines
using this property can update itself.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>dataObj</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> object.
</td>
</tr>
</tbody>
</table></div>
</div>
</div>
<div class="refsect1" title="Signal Details">
<a name="v-sim-dataNode.signal-details"></a><h2>Signal Details</h2>
<div class="refsect2" title='The "propertyUnused" signal'>
<a name="VisuDataNode-propertyUnused"></a><h3>The <code class="literal">"propertyUnused"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data,
                                                        <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>      *dataObj,
                                                        <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>      user_data)      : Run Last / No Recursion / No Hooks</pre>
<p>
The given property <em class="parameter"><code>data</code></em> gets unused by <em class="parameter"><code>dataObj</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>the <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> emitting the signal.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>dataObj</code></em> :</span></p></td>
<td>the <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> its working on.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 3.3</p>
</div>
<hr>
<div class="refsect2" title='The "propertyUsed" signal'>
<a name="VisuDataNode-propertyUsed"></a><h3>The <code class="literal">"propertyUsed"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data,
                                                        <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>      *dataObj,
                                                        <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>      user_data)      : Run Last / No Recursion / No Hooks</pre>
<p>
The given property <em class="parameter"><code>data</code></em> gets used by <em class="parameter"><code>dataObj</code></em>.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>the <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> emitting the signal.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>dataObj</code></em> :</span></p></td>
<td>the <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> its working on.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 3.3</p>
</div>
<hr>
<div class="refsect2" title='The "valueChanged" signal'>
<a name="VisuDataNode-valueChanged"></a><h3>The <code class="literal">"valueChanged"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> *data,
                                                        <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a>      *dataObj,
                                                        <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>      user_data)      : Run Last / No Recursion / No Hooks</pre>
<p>
The given property <em class="parameter"><code>data</code></em> used by <em class="parameter"><code>dataObj</code></em> has its value changed.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>the <a class="link" href="v-sim-dataNode.html#VisuDataNode"><span class="type">VisuDataNode</span></a> emitting the signal.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>dataObj</code></em> :</span></p></td>
<td>the <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> its working on.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 3.3</p>
</div>
</div>
</div>
<div class="footer">
<hr>
          Generated by GTK-Doc V1.14</div>
</body>
</html>