File: v-sim-gtk-renderingWindowWidget.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 (1020 lines) | stat: -rw-r--r-- 68,157 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
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>gtk_renderingWindowWidget</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="ch09.html" title="Main interface">
<link rel="prev" href="v-sim-gtk-openGLWidget.html" title="gtk_openGLWidget">
<link rel="next" href="ch10.html" title="V_Sim specific widgets">
<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-gtk-openGLWidget.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="ch09.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="ch10.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-gtk-renderingWindowWidget.synopsis" class="shortcut">Top</a>
                   | 
                  <a href="#v-sim-gtk-renderingWindowWidget.description" class="shortcut">Description</a>
                   | 
                  <a href="#v-sim-gtk-renderingWindowWidget.object-hierarchy" class="shortcut">Object Hierarchy</a>
                   | 
                  <a href="#v-sim-gtk-renderingWindowWidget.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
                   | 
                  <a href="#v-sim-gtk-renderingWindowWidget.signals" class="shortcut">Signals</a>
</td></tr>
</table>
<div class="refentry" title="gtk_renderingWindowWidget">
<a name="v-sim-gtk-renderingWindowWidget"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="v-sim-gtk-renderingWindowWidget.top_of_page"></a>gtk_renderingWindowWidget</span></h2>
<p>gtk_renderingWindowWidget — Defines a complex widget used to render files
and print information.</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsynopsisdiv" title="Synopsis">
<a name="v-sim-gtk-renderingWindowWidget.synopsis"></a><h2>Synopsis</h2>
<a name="VisuRenderingWindow"></a><pre class="synopsis">#define             <a class="link" href="v-sim-gtk-renderingWindowWidget.html#RENDERING-WINDOW-TYPE:CAPS" title="RENDERING_WINDOW_TYPE">RENDERING_WINDOW_TYPE</a>
#define             <a class="link" href="v-sim-gtk-renderingWindowWidget.html#RENDERING-WINDOW:CAPS" title="RENDERING_WINDOW()">RENDERING_WINDOW</a>                    (obj)
#define             <a class="link" href="v-sim-gtk-renderingWindowWidget.html#RENDERING-WINDOW-CLASS:CAPS" title="RENDERING_WINDOW_CLASS()">RENDERING_WINDOW_CLASS</a>              (klass)
#define             <a class="link" href="v-sim-gtk-renderingWindowWidget.html#IS-RENDERING-WINDOW:CAPS" title="IS_RENDERING_WINDOW()">IS_RENDERING_WINDOW</a>                 (obj)
#define             <a class="link" href="v-sim-gtk-renderingWindowWidget.html#IS-RENDERING-WINDOW-CLASS:CAPS" title="IS_RENDERING_WINDOW_CLASS()">IS_RENDERING_WINDOW_CLASS</a>           (klass)
#define             <a class="link" href="v-sim-gtk-renderingWindowWidget.html#RENDERING-WINDOW-GET-CLASS:CAPS" title="RENDERING_WINDOW_GET_CLASS()">RENDERING_WINDOW_GET_CLASS</a>          (obj)
                    <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow-struct" title="VisuRenderingWindow">VisuRenderingWindow</a>;
                    <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindowClass" title="VisuRenderingWindowClass">VisuRenderingWindowClass</a>;
<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-gtk-renderingWindowWidget.html#visu-rendering-window-get-type" title="visu_rendering_window_get_type ()">visu_rendering_window_get_type</a>      (<em class="parameter"><code><span class="type">void</span></code></em>);
#define             <a class="link" href="v-sim-gtk-renderingWindowWidget.html#RENDERING-WINDOW-ID:CAPS" title="RENDERING_WINDOW_ID">RENDERING_WINDOW_ID</a>
<a href="/usr/share/gtk-doc/html/gtk/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a>*          <a class="link" href="v-sim-gtk-renderingWindowWidget.html#visu-rendering-window-new" title="visu_rendering_window_new ()">visu_rendering_window_new</a>           (<em class="parameter"><code><span class="type">int</span> width</code></em>,
                                                         <em class="parameter"><code><span class="type">int</span> height</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> withFrame</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> withToolBar</code></em>);
<a href="/usr/share/gtk-doc/html/gtk/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a>*          <a class="link" href="v-sim-gtk-renderingWindowWidget.html#visu-rendering-window-newEmbedded" title="visu_rendering_window_newEmbedded ()">visu_rendering_window_newEmbedded</a>   (<em class="parameter"><code><span class="type">int</span> width</code></em>,
                                                         <em class="parameter"><code><span class="type">int</span> height</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-gtk-renderingWindowWidget.html#renderingWindowPush-message" title="renderingWindowPush_message ()">renderingWindowPush_message</a>         (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</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> *message</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-gtk-renderingWindowWidget.html#renderingWindowPop-message" title="renderingWindowPop_message ()">renderingWindowPop_message</a>          (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>);
<a href="/usr/share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a>*          <a class="link" href="v-sim-gtk-renderingWindowWidget.html#renderingWindowGet-backgroundImage" title="renderingWindowGet_backgroundImage ()">renderingWindowGet_backgroundImage</a>  (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guchar"><span class="type">guchar</span></a> **rowData</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> *hasAlphaChannel</code></em>,
                                                         <em class="parameter"><code><span class="type">int</span> *width</code></em>,
                                                         <em class="parameter"><code><span class="type">int</span> *height</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-gtk-renderingWindowWidget.html#renderingWindowFree-backgroundImage" title="renderingWindowFree_backgroundImage ()">renderingWindowFree_backgroundImage</a> (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-gtk-renderingWindowWidget.html#visu-rendering-window-setData" title="visu_rendering_window_setData ()">visu_rendering_window_setData</a>       (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *data</code></em>);
<a class="link" href="v-sim-visu-data.html#VisuData"><span class="returnvalue">VisuData</span></a>*           <a class="link" href="v-sim-gtk-renderingWindowWidget.html#visu-rendering-window-getVisuData" title="visu_rendering_window_getVisuData ()">visu_rendering_window_getVisuData</a>   (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-gtk-renderingWindowWidget.html#visu-rendering-window-loadFile" title="visu_rendering_window_loadFile ()">visu_rendering_window_loadFile</a>      (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> iSet</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-gtk-renderingWindowWidget.html#renderingWindowOpen-file" title="renderingWindowOpen_file ()">renderingWindowOpen_file</a>            (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk/GtkWindow.html"><span class="type">GtkWindow</span></a> *parent</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-gtk-renderingWindowWidget.html#visu-rendering-window-dump" title="visu_rendering_window_dump ()">visu_rendering_window_dump</a>          (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-dump.html#VisuDump" title="VisuDump"><span class="type">VisuDump</span></a> *format</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *fileName</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> width</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> height</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>,
                                                         <em class="parameter"><code><span class="type">ToolVoidDataFunc</span> functionWait</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>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-gtk-renderingWindowWidget.html#renderingWindowRedraw" title="renderingWindowRedraw ()">renderingWindowRedraw</a>               (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</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> forceRedraw</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-gtk-renderingWindowWidget.html#renderingWindowSet-current" title="renderingWindowSet_current ()">renderingWindowSet_current</a>          (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</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> force</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-gtk-renderingWindowWidget.html#renderingWindowPush-interactive" title="renderingWindowPush_interactive ()">renderingWindowPush_interactive</a>     (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-interactive.html#VisuInteractive"><span class="type">VisuInteractive</span></a> *inter</code></em>);
<span class="returnvalue">void</span>                <a class="link" href="v-sim-gtk-renderingWindowWidget.html#renderingWindowPop-interactive" title="renderingWindowPop_interactive ()">renderingWindowPop_interactive</a>      (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-interactive.html#VisuInteractive"><span class="type">VisuInteractive</span></a> *inter</code></em>);
<a class="link" href="v-sim-marks.html#VisuMarks"><span class="returnvalue">VisuMarks</span></a>*          <a class="link" href="v-sim-gtk-renderingWindowWidget.html#visu-rendering-window-getMarks" title="visu_rendering_window_getMarks ()">visu_rendering_window_getMarks</a>      (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>);
<a class="link" href="v-sim-interactive.html#VisuInteractive"><span class="returnvalue">VisuInteractive</span></a>*    <a class="link" href="v-sim-gtk-renderingWindowWidget.html#renderingWindowClassGet-interactive" title="renderingWindowClassGet_interactive ()">renderingWindowClassGet_interactive</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-gtk-renderingWindowWidget.html#visu-rendering-window-setDisplayCoordinatesInReduce" title="visu_rendering_window_setDisplayCoordinatesInReduce ()">visu_rendering_window_setDisplayCoordinatesInReduce</a>
                                                        (<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-gtk-renderingWindowWidget.html#visu-rendering-window-getDisplayCoordinatesInReduce" title="visu_rendering_window_getDisplayCoordinatesInReduce ()">visu_rendering_window_getDisplayCoordinatesInReduce</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-gtk-renderingWindowWidget.html#visu-rendering-window-setAutoAdjust" title="visu_rendering_window_setAutoAdjust ()">visu_rendering_window_setAutoAdjust</a> (<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-gtk-renderingWindowWidget.html#visu-rendering-window-getAutoAdjust" title="visu_rendering_window_getAutoAdjust ()">visu_rendering_window_getAutoAdjust</a> ();
</pre>
</div>
<div class="refsect1" title="Object Hierarchy">
<a name="v-sim-gtk-renderingWindowWidget.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>
   +----<a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
         +----<a href="/usr/share/gtk-doc/html/gtk/GtkObject.html">GtkObject</a>
               +----<a href="/usr/share/gtk-doc/html/gtk/GtkWidget.html">GtkWidget</a>
                     +----<a href="/usr/share/gtk-doc/html/gtk/GtkContainer.html">GtkContainer</a>
                           +----<a href="/usr/share/gtk-doc/html/gtk/GtkBox.html">GtkBox</a>
                                 +----<a href="/usr/share/gtk-doc/html/gtk/GtkVBox.html">GtkVBox</a>
                                       +----VisuRenderingWindow
</pre>
</div>
<div class="refsect1" title="Implemented Interfaces">
<a name="v-sim-gtk-renderingWindowWidget.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
<p>
VisuRenderingWindow implements
 AtkImplementorIface,  <a href="/usr/share/gtk-doc/html/gtk/gtk-gtkbuildable.html#GtkBuildable">GtkBuildable</a> and  <a href="/usr/share/gtk-doc/html/gtk/gtk-Orientable.html#GtkOrientable">GtkOrientable</a>.</p>
</div>
<div class="refsect1" title="Signals">
<a name="v-sim-gtk-renderingWindowWidget.signals"></a><h2>Signals</h2>
<pre class="synopsis">
  "<a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow-export" title='The "export" signal'>export</a>"                                         : Run Last / Action
  "<a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow-open" title='The "open" signal'>open</a>"                                           : Run Last / Action
  "<a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow-reload" title='The "reload" signal'>reload</a>"                                         : Run Last / Action
  "<a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow-show-action-dialog" title='The "show-action-dialog" signal'>show-action-dialog</a>"                             : Run Last / No Recursion / Action / No Hooks
  "<a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow-show-main-panel" title='The "show-main-panel" signal'>show-main-panel</a>"                                : Run Last / No Recursion / Action / No Hooks
</pre>
</div>
<div class="refsect1" title="Description">
<a name="v-sim-gtk-renderingWindowWidget.description"></a><h2>Description</h2>
<p>
</p>
<p>This is a complex widget, inheriting from <a href="/usr/share/gtk-doc/html/gtk/GtkWindow.html"><span class="type">GtkWindow</span></a>, with a
rendering area and a status bar area. A <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> is always
attached to this widget, see <a class="link" href="v-sim-gtk-renderingWindowWidget.html#visu-rendering-window-setData" title="visu_rendering_window_setData ()"><code class="function">visu_rendering_window_setData()</code></a>. If not
the V_Sim logo is displayed.</p>
<p>
</p>
<p>
</p>
<p>The rendering area can receive keyboard or mouse events, see
<a href="v-sim-gtk-renderingWindowWidget.html#renderingWindowSet-pickEventListener"><code class="function">renderingWindowSet_pickEventListener()</code></a> or
<a href="v-sim-gtk-renderingWindowWidget.html#renderingWindowSet-observeEventListener"><code class="function">renderingWindowSet_observeEventListener()</code></a>. Then, callbacks are
defined using <code class="function">renderingWindowSet_interactiveHandlers()</code>.</p>
<p>
</p>
<p>
</p>
<p>The status bar area has different buttons to load or export a
file. It also display some usefull information like the number of
rendered nodes. It has also a real status bar location displaying
tips about current available actions. One can add news using
<a class="link" href="v-sim-gtk-renderingWindowWidget.html#renderingWindowPush-message" title="renderingWindowPush_message ()"><code class="function">renderingWindowPush_message()</code></a>.</p>
<p>
</p>
</div>
<div class="refsect1" title="Details">
<a name="v-sim-gtk-renderingWindowWidget.details"></a><h2>Details</h2>
<div class="refsect2" title="RENDERING_WINDOW_TYPE">
<a name="RENDERING-WINDOW-TYPE:CAPS"></a><h3>RENDERING_WINDOW_TYPE</h3>
<pre class="programlisting">#define RENDERING_WINDOW_TYPE         (visu_rendering_window_get_type())
</pre>
<p>
Return the associated <a href="/usr/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> to the Renderingwindow objects.
</p>
</div>
<hr>
<div class="refsect2" title="RENDERING_WINDOW()">
<a name="RENDERING-WINDOW:CAPS"></a><h3>RENDERING_WINDOW()</h3>
<pre class="programlisting">#define RENDERING_WINDOW(obj)         (G_TYPE_CHECK_INSTANCE_CAST((obj), RENDERING_WINDOW_TYPE, VisuRenderingWindow))
</pre>
<p>
Cast the given object to a <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</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>the widget to cast.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="RENDERING_WINDOW_CLASS()">
<a name="RENDERING-WINDOW-CLASS:CAPS"></a><h3>RENDERING_WINDOW_CLASS()</h3>
<pre class="programlisting">#define RENDERING_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), RENDERING_WINDOW_TYPE, VisuRenderingWindowClass))
</pre>
<p>
Cast the given class to a <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindowClass" title="VisuRenderingWindowClass"><span class="type">VisuRenderingWindowClass</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>klass</code></em> :</span></p></td>
<td>the class to cast.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="IS_RENDERING_WINDOW()">
<a name="IS-RENDERING-WINDOW:CAPS"></a><h3>IS_RENDERING_WINDOW()</h3>
<pre class="programlisting">#define IS_RENDERING_WINDOW(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), RENDERING_WINDOW_TYPE))
</pre>
<p>
Return if the given object is a valid <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</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>the object to test.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="IS_RENDERING_WINDOW_CLASS()">
<a name="IS-RENDERING-WINDOW-CLASS:CAPS"></a><h3>IS_RENDERING_WINDOW_CLASS()</h3>
<pre class="programlisting">#define IS_RENDERING_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), RENDERING_WINDOW_TYPE))
</pre>
<p>
Return if the given class is a valid <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindowClass" title="VisuRenderingWindowClass"><span class="type">VisuRenderingWindowClass</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>the class to test.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="RENDERING_WINDOW_GET_CLASS()">
<a name="RENDERING-WINDOW-GET-CLASS:CAPS"></a><h3>RENDERING_WINDOW_GET_CLASS()</h3>
<pre class="programlisting">#define RENDERING_WINDOW_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS(obj, RENDERING_WINDOW_TYPE, VisuRenderingWindowClass))
</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="VisuRenderingWindow">
<a name="VisuRenderingWindow-struct"></a><h3>VisuRenderingWindow</h3>
<pre class="programlisting">typedef struct _VisuRenderingWindow VisuRenderingWindow;</pre>
<p>
Short form for a <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow-struct" title="VisuRenderingWindow"><span class="type">VisuRenderingWindow_struct</span></a> structure.
</p>
</div>
<hr>
<div class="refsect2" title="VisuRenderingWindowClass">
<a name="VisuRenderingWindowClass"></a><h3>VisuRenderingWindowClass</h3>
<pre class="programlisting">typedef struct _VisuRenderingWindowClass VisuRenderingWindowClass;</pre>
<p>
Short form for a <span class="type">VisuRenderingWindowClass_struct</span> structure.
</p>
</div>
<hr>
<div class="refsect2" title="visu_rendering_window_get_type ()">
<a name="visu-rendering-window-get-type"></a><h3>visu_rendering_window_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_rendering_window_get_type      (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
<p>
<a href="/usr/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> are unique numbers to identify objects.
</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 <a href="/usr/share/gtk-doc/html/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> associated with <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> objects.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="RENDERING_WINDOW_ID">
<a name="RENDERING-WINDOW-ID:CAPS"></a><h3>RENDERING_WINDOW_ID</h3>
<pre class="programlisting">#define RENDERING_WINDOW_ID "ContainerWindow"
</pre>
<p>
The key to get the embedding <a href="/usr/share/gtk-doc/html/gtk/GtkWindow.html"><span class="type">GtkWindow</span></a> of a given <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a>
widget, if any. See <a class="link" href="v-sim-gtk-renderingWindowWidget.html#visu-rendering-window-newEmbedded" title="visu_rendering_window_newEmbedded ()"><code class="function">visu_rendering_window_newEmbedded()</code></a>.
</p>
</div>
<hr>
<div class="refsect2" title="visu_rendering_window_new ()">
<a name="visu-rendering-window-new"></a><h3>visu_rendering_window_new ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a>*          visu_rendering_window_new           (<em class="parameter"><code><span class="type">int</span> width</code></em>,
                                                         <em class="parameter"><code><span class="type">int</span> height</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> withFrame</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> withToolBar</code></em>);</pre>
<p>
A <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> widget is a GtkWindow that have an area for
OpenGL drawing and a statusBar with many stuff like action buttons,
real status bar for notifications, ... The rendering area can be
drawn with a frame or not. With this routine, only the
<a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> widget is created. To embed it into a window
automatically, use <a class="link" href="v-sim-gtk-renderingWindowWidget.html#visu-rendering-window-newEmbedded" title="visu_rendering_window_newEmbedded ()"><code class="function">visu_rendering_window_newEmbedded()</code></a> instead.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
<td>its desired width ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
<td>its desired height ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>withFrame</code></em> :</span></p></td>
<td>a boolean ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>withToolBar</code></em> :</span></p></td>
<td>a boolean.
</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-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> widget.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_rendering_window_newEmbedded ()">
<a name="visu-rendering-window-newEmbedded"></a><h3>visu_rendering_window_newEmbedded ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a>*          visu_rendering_window_newEmbedded   (<em class="parameter"><code><span class="type">int</span> width</code></em>,
                                                         <em class="parameter"><code><span class="type">int</span> height</code></em>);</pre>
<p>
Like <a class="link" href="v-sim-gtk-renderingWindowWidget.html#visu-rendering-window-new" title="visu_rendering_window_new ()"><code class="function">visu_rendering_window_new()</code></a> but create also a <a href="/usr/share/gtk-doc/html/gtk/GtkWindow.html"><span class="type">GtkWindow</span></a> to go
around. This widget is reachable using <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#g-object-get-data"><code class="function">g_object_get_data()</code></a> with the
key <a class="link" href="v-sim-gtk-renderingWindowWidget.html#RENDERING-WINDOW-ID:CAPS" title="RENDERING_WINDOW_ID"><span class="type">RENDERING_WINDOW_ID</span></a>. In that case, no frame is drawn around
the rendering area.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
<td>its desired width ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
<td>its desired height.
</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-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> widget.. <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="renderingWindowPush_message ()">
<a name="renderingWindowPush-message"></a><h3>renderingWindowPush_message ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                renderingWindowPush_message         (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</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> *message</code></em>);</pre>
<p>
Use this method to add some informations on the status bar.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>a valid <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>message</code></em> :</span></p></td>
<td>an UTF8 string to print on the status bar.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="renderingWindowPop_message ()">
<a name="renderingWindowPop-message"></a><h3>renderingWindowPop_message ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                renderingWindowPop_message          (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>);</pre>
<p>
Remove the last message.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>a valid <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="renderingWindowGet_backgroundImage ()">
<a name="renderingWindowGet-backgroundImage"></a><h3>renderingWindowGet_backgroundImage ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gdk-pixbuf/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a>*          renderingWindowGet_backgroundImage  (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guchar"><span class="type">guchar</span></a> **rowData</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> *hasAlphaChannel</code></em>,
                                                         <em class="parameter"><code><span class="type">int</span> *width</code></em>,
                                                         <em class="parameter"><code><span class="type">int</span> *height</code></em>);</pre>
<p>
Use this method to load an image in memory (according to GdkPixbuf
specification) and retrieve the row data in memory.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>a valid <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>rowData</code></em> :</span></p></td>
<td>a pointer to be set on the data in memory ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>hasAlphaChannel</code></em> :</span></p></td>
<td>a pointer to store if the loaded iage has an alpha channel ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
<td>store the width ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
<td>store the height.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a pointer to GdkPixbuf that is own by the <em class="parameter"><code>window</code></em> object. his image
         stay in memory until a call to <code class="function">renderigWindowFree_backgroundImage()</code>
         occurs.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="renderingWindowFree_backgroundImage ()">
<a name="renderingWindowFree-backgroundImage"></a><h3>renderingWindowFree_backgroundImage ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                renderingWindowFree_backgroundImage (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>);</pre>
<p>
Free loaded background image if exists.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>a valid <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object.
</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_rendering_window_setData ()">
<a name="visu-rendering-window-setData"></a><h3>visu_rendering_window_setData ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                visu_rendering_window_setData       (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *data</code></em>);</pre>
<p>
This method is used to attach a <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> object to a given window.
When, <em class="parameter"><code>data</code></em> is not NULL, this method emit the dataReadyForRendering signal,
and all modules that needs to draw something should catch this signal and
draw in the rendering window. If <em class="parameter"><code>data</code></em> is NULL, the dataNotReadyForRendering
is emitted instead.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>a valid <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> to render in the given <em class="parameter"><code>window</code></em> (can be NULL).
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_rendering_window_getVisuData ()">
<a name="visu-rendering-window-getVisuData"></a><h3>visu_rendering_window_getVisuData ()</h3>
<pre class="programlisting"><a class="link" href="v-sim-visu-data.html#VisuData"><span class="returnvalue">VisuData</span></a>*           visu_rendering_window_getVisuData   (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>);</pre>
<p>
This method is used to get the <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> attached to a window.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>a valid <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> the <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> attached to the <em class="parameter"><code>window</code></em> or NULL if none.. <acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>. </td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_rendering_window_loadFile ()">
<a name="visu-rendering-window-loadFile"></a><h3>visu_rendering_window_loadFile ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                visu_rendering_window_loadFile      (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> *data</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> iSet</code></em>);</pre>
<p>
This method calls the general function to load data from file
and deals with errors with gtkDialogs. The filenames must have
already been set into <em class="parameter"><code>data</code></em> using <a class="link" href="v-sim-visu-data.html#visu-data-addFile" title="visu_data_addFile ()"><code class="function">visu_data_addFile()</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>window</code></em> :</span></p></td>
<td>a valid <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>the <a class="link" href="v-sim-visu-data.html#VisuData"><span class="type">VisuData</span></a> to be loaded.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>iSet</code></em> :</span></p></td>
<td>the id of <em class="parameter"><code>data</code></em> to load.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="renderingWindowOpen_file ()">
<a name="renderingWindowOpen-file"></a><h3>renderingWindowOpen_file ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                renderingWindowOpen_file            (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk/GtkWindow.html"><span class="type">GtkWindow</span></a> *parent</code></em>);</pre>
<p>
Do as if the load button has been pushed, i.e. open a filechooser
dialog on the <em class="parameter"><code>parent</code></em> window, and load the resulting file,
refreshing the view if necessary.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>the window the file will by rendered on ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
<td>the parent window for the filechooser dialog.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="visu_rendering_window_dump ()">
<a name="visu-rendering-window-dump"></a><h3>visu_rendering_window_dump ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            visu_rendering_window_dump          (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-visu-dump.html#VisuDump" title="VisuDump"><span class="type">VisuDump</span></a> *format</code></em>,
                                                         <em class="parameter"><code>const <span class="type">char</span> *fileName</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> width</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> height</code></em>,
                                                         <em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>,
                                                         <em class="parameter"><code><span class="type">ToolVoidDataFunc</span> functionWait</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>
Call this method to dump the given <em class="parameter"><code>window</code></em> to a file.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>a valid <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-visu-dump.html#VisuDump" title="VisuDump"><span class="type">VisuDump</span></a> object, corresponding to the write method ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>fileName</code></em> :</span></p></td>
<td>a string that defined the file to write to ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
<td>an integer ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
<td>an integer ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
<td> a location to store some error (not NULL) ;. <acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>. </td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>functionWait</code></em> :</span></p></td>
<td> a method to call
periodically during the dump ;. scope call</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td> some pointer on object to be passed to the wait function.. closure</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> TRUE if everything went right.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="renderingWindowRedraw ()">
<a name="renderingWindowRedraw"></a><h3>renderingWindowRedraw ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                renderingWindowRedraw               (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</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> forceRedraw</code></em>);</pre>
<p>
Update the OpenGL area of the rendering window if the opengl option
is set to immediate. If not, use <em class="parameter"><code>forceRedraw</code></em> to redraw.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>a valid <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>forceRedraw</code></em> :</span></p></td>
<td>a boolean.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" title="renderingWindowSet_current ()">
<a name="renderingWindowSet-current"></a><h3>renderingWindowSet_current ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                renderingWindowSet_current          (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</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> force</code></em>);</pre>
<p>
Set the OpenGL area as the current rendering area. If <em class="parameter"><code>force</code></em> is TRUE
then the context is switched whatever buffered value.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>a valid <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object ;
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>force</code></em> :</span></p></td>
<td>a boolean.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 3.5</p>
</div>
<hr>
<div class="refsect2" title="renderingWindowPush_interactive ()">
<a name="renderingWindowPush-interactive"></a><h3>renderingWindowPush_interactive ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                renderingWindowPush_interactive     (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-interactive.html#VisuInteractive"><span class="type">VisuInteractive</span></a> *inter</code></em>);</pre>
<p>
It adds <em class="parameter"><code>inter</code></em> to the stack of interactive sessions currently
attached to <em class="parameter"><code>window</code></em> and launch it.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>inter</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-interactive.html#VisuInteractive"><span class="type">VisuInteractive</span></a> object.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 3.6</p>
</div>
<hr>
<div class="refsect2" title="renderingWindowPop_interactive ()">
<a name="renderingWindowPop-interactive"></a><h3>renderingWindowPop_interactive ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                renderingWindowPop_interactive      (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>,
                                                         <em class="parameter"><code><a class="link" href="v-sim-interactive.html#VisuInteractive"><span class="type">VisuInteractive</span></a> *inter</code></em>);</pre>
<p>
It removes <em class="parameter"><code>inter</code></em> from the stack of interactive sessions currently
attached to <em class="parameter"><code>window</code></em>. If <em class="parameter"><code>inter</code></em> was first on the stack, the next
session is launched.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object.
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>inter</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-interactive.html#VisuInteractive"><span class="type">VisuInteractive</span></a> object.
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 3.6</p>
</div>
<hr>
<div class="refsect2" title="visu_rendering_window_getMarks ()">
<a name="visu-rendering-window-getMarks"></a><h3>visu_rendering_window_getMarks ()</h3>
<pre class="programlisting"><a class="link" href="v-sim-marks.html#VisuMarks"><span class="returnvalue">VisuMarks</span></a>*          visu_rendering_window_getMarks      (<em class="parameter"><code><a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window</code></em>);</pre>
<p>
Get the <a class="link" href="v-sim-marks.html#VisuMarks"><span class="type">VisuMarks</span></a> of the given <em class="parameter"><code>window</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>window</code></em> :</span></p></td>
<td>a <a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> object ;
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> a <a class="link" href="v-sim-marks.html#VisuMarks"><span class="type">VisuMarks</span></a> object owned by V_Sim.
. <acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>. </td>
</tr>
</tbody>
</table></div>
<p class="since">Since 3.6</p>
</div>
<hr>
<div class="refsect2" title="renderingWindowClassGet_interactive ()">
<a name="renderingWindowClassGet-interactive"></a><h3>renderingWindowClassGet_interactive ()</h3>
<pre class="programlisting"><a class="link" href="v-sim-interactive.html#VisuInteractive"><span class="returnvalue">VisuInteractive</span></a>*    renderingWindowClassGet_interactive ();</pre>
<p>
The user actions on the rendering area are handled by a
<a class="link" href="v-sim-interactive.html#VisuInteractive"><span class="type">VisuInteractive</span></a> object.
</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 <a class="link" href="v-sim-interactive.html#VisuInteractive"><span class="type">VisuInteractive</span></a> object used by the rendering window of
V_Sim. This object is owned by V_Sim.
</td>
</tr></tbody>
</table></div>
<p class="since">Since 3.6</p>
</div>
<hr>
<div class="refsect2" title="visu_rendering_window_setDisplayCoordinatesInReduce ()">
<a name="visu-rendering-window-setDisplayCoordinatesInReduce"></a><h3>visu_rendering_window_setDisplayCoordinatesInReduce ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            visu_rendering_window_setDisplayCoordinatesInReduce
                                                        (<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>
If set, the coordinates of picked nodes are displayed in reduced values.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>status</code></em> :</span></p></td>
<td>a boolean.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> TRUE if the value has been changed.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 3.6</p>
</div>
<hr>
<div class="refsect2" title="visu_rendering_window_getDisplayCoordinatesInReduce ()">
<a name="visu-rendering-window-getDisplayCoordinatesInReduce"></a><h3>visu_rendering_window_getDisplayCoordinatesInReduce ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            visu_rendering_window_getDisplayCoordinatesInReduce
                                                        ();</pre>
<p>
Picked nodes have their coordinates displayed in the status bar of the rendering
window. This methods retrieves if they are printed in reduced values or not.
</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> TRUE if the coordinates are displayed in reduced values.

</td>
</tr></tbody>
</table></div>
<p class="since">Since 3.6</p>
</div>
<hr>
<div class="refsect2" title="visu_rendering_window_setAutoAdjust ()">
<a name="visu-rendering-window-setAutoAdjust"></a><h3>visu_rendering_window_setAutoAdjust ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            visu_rendering_window_setAutoAdjust (<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>
If set, the camera auto adjust its zoom capability for the data to be
full size at zoom level 1.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>status</code></em> :</span></p></td>
<td>a boolean.
</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td> TRUE if the value has been changed.

</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 3.6</p>
</div>
<hr>
<div class="refsect2" title="visu_rendering_window_getAutoAdjust ()">
<a name="visu-rendering-window-getAutoAdjust"></a><h3>visu_rendering_window_getAutoAdjust ()</h3>
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            visu_rendering_window_getAutoAdjust ();</pre>
<p>
The camera can be set to auto adjust its zoom capability for the data to be
full size at zoom level 1.
</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> TRUE if the camera auto adjust on data loading.

</td>
</tr></tbody>
</table></div>
<p class="since">Since 3.6</p>
</div>
</div>
<div class="refsect1" title="Signal Details">
<a name="v-sim-gtk-renderingWindowWidget.signal-details"></a><h2>Signal Details</h2>
<div class="refsect2" title='The "export" signal'>
<a name="VisuRenderingWindow-export"></a><h3>The <code class="literal">"export"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window,
                                                        <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>             user_data)      : Run Last / Action</pre>
<p>
Signal emitted when the user ask for data export.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>the object emitting the signal.
</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.6</p>
</div>
<hr>
<div class="refsect2" title='The "open" signal'>
<a name="VisuRenderingWindow-open"></a><h3>The <code class="literal">"open"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window,
                                                        <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>             user_data)      : Run Last / Action</pre>
<p>
Signal emitted when the user ask to open new data.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>the object emitting the signal.
</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.6</p>
</div>
<hr>
<div class="refsect2" title='The "reload" signal'>
<a name="VisuRenderingWindow-reload"></a><h3>The <code class="literal">"reload"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window,
                                                        <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a>             user_data)      : Run Last / Action</pre>
<p>
Signal emitted when the user ask to reload current data.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>the object emitting the signal.
</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.6</p>
</div>
<hr>
<div class="refsect2" title='The "show-action-dialog" signal'>
<a name="VisuRenderingWindow-show-action-dialog"></a><h3>The <code class="literal">"show-action-dialog"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window,
                                                        <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 / Action / No Hooks</pre>
<p>
Signal emitted when the user ask to show the action dialog.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>the object emitting the signal.
</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.6</p>
</div>
<hr>
<div class="refsect2" title='The "show-main-panel" signal'>
<a name="VisuRenderingWindow-show-main-panel"></a><h3>The <code class="literal">"show-main-panel"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="v-sim-gtk-renderingWindowWidget.html#VisuRenderingWindow"><span class="type">VisuRenderingWindow</span></a> *window,
                                                        <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 / Action / No Hooks</pre>
<p>
Signal emitted when the user ask to raise the main panel.
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>window</code></em> :</span></p></td>
<td>the object emitting the signal.
</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.6</p>
</div>
</div>
</div>
<div class="footer">
<hr>
          Generated by GTK-Doc V1.14</div>
</body>
</html>