File: widget_8hh-source.html

package info (click to toggle)
gfcui 2.3.1-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 43,420 kB
  • ctags: 18,023
  • sloc: cpp: 53,967; sh: 31,555; makefile: 1,322; perl: 108
file content (999 lines) | stat: -rw-r--r-- 128,006 bytes parent folder | download | duplicates (3)
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="content-type">
  <title>GTK+ Foundation Classes</title>
  <link href="gfc.css" rel="stylesheet" type="text/css">
  <meta content="The GFC Development Team" name="author">
  <meta content="Core Library Reference Manual" name="description">
</head>
<body style="color: rgb(0, 0, 0); background-color: rgb(243, 244, 248);"
 alink="#000099" link="#000099" vlink="#990099">
<table style="text-align: left; width: 1227px; height: 117px;"
 border="0" cellpadding="0" cellspacing="0">
  <tbody>
    <tr>
      <td
 style="text-align: center; background-color: rgb(255, 255, 255); width: 220px; vertical-align: top;"><img
 alt="GFC Logo" src="../images/gfc.png"
 style="width: 207px; height: 92px;"></td>
      <td
 style="text-align: center; background-color: rgb(87, 107, 152); vertical-align: middle;"><img
 alt="GFC Title Logo" src="../images/gfc-title.png"
 style="width: 418px; height: 76px;"><br>
      </td>
    </tr>
    <tr>
      <td
 style="text-align: center; background-color: rgb(65, 77, 104); vertical-align: middle;"><big><span
 style="color: rgb(255, 255, 153); font-weight: bold;">Reference Manual</span></big><br>
      </td>
      <td
 style="text-align: center; background-color: rgb(148, 164, 200); vertical-align: middle;"><small
 style="font-family: helvetica,arial,sans-serif;"><a
 href="../html/index.html">Main Page</a>&nbsp; |&nbsp; <a
 href="../html/namespaces.html">Namespace List</a>&nbsp; |&nbsp; <a
 href="classes.html">Alphabetical List</a>&nbsp; |&nbsp; <a
 href="../html/annotated.html">Class List</a>&nbsp; |&nbsp; <a
 href="../html/files.html">File List</a></small><br>
      </td>
    </tr>
  </tbody>
</table>
<small> </small>
</body>
</html>
<!-- Generated by Doxygen 1.3.8 -->
<h1>widget.hh</h1><a href="widget_8hh.html">Go to the documentation of this file.</a><pre class="fragment"><div>00001 <span class="comment">/*  GFC-UI: GTK+ Foundation Classes (User Interface Library)</span>
00002 <span class="comment"> *  Copyright (C) 2002-2004 The GFC Development Team.</span>
00003 <span class="comment"> *</span>
00004 <span class="comment"> *  This program is free software; you can redistribute it and/or modify</span>
00005 <span class="comment"> *  it under the terms of the GNU General Public License as published by</span>
00006 <span class="comment"> *  the Free Software Foundation; either version 2 of the License, or</span>
00007 <span class="comment"> *  (at your option) any later version.</span>
00008 <span class="comment"> *</span>
00009 <span class="comment"> *  This program is distributed in the hope that it will be useful,</span>
00010 <span class="comment"> *  but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
00011 <span class="comment"> *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</span>
00012 <span class="comment"> *  GNU Library General Public License for more details.</span>
00013 <span class="comment"> *</span>
00014 <span class="comment"> *  You should have received a copy of the GNU Library General Public License</span>
00015 <span class="comment"> *  along with this program; if not, write to the Free Software</span>
00016 <span class="comment"> *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.</span>
00017 <span class="comment"> */</span>
00018 
00024 
00025 <span class="preprocessor">#ifndef GFC_GTK_WIDGET_HH</span>
00026 <span class="preprocessor"></span><span class="preprocessor">#define GFC_GTK_WIDGET_HH</span>
00027 <span class="preprocessor"></span>
00028 <span class="preprocessor">#ifndef GFC_ATK_IMPLEMENTOR_HH</span>
00029 <span class="preprocessor"></span><span class="preprocessor">#include &lt;<a class="code" href="implementor_8hh.html">gfc/atk/implementor.hh</a>&gt;</span>
00030 <span class="preprocessor">#endif</span>
00031 <span class="preprocessor"></span>
00032 <span class="preprocessor">#ifndef GFC_GTK_ADJUSTMENT_HH</span>
00033 <span class="preprocessor"></span><span class="preprocessor">#include &lt;<a class="code" href="adjustment_8hh.html">gfc/gtk/adjustment.hh</a>&gt;</span>
00034 <span class="preprocessor">#endif</span>
00035 <span class="preprocessor"></span>
00036 <span class="preprocessor">#ifndef GFC_GTK_ENUMS_HH</span>
00037 <span class="preprocessor"></span><span class="preprocessor">#include &lt;<a class="code" href="enums_8hh.html">gfc/gtk/enums.hh</a>&gt;</span>
00038 <span class="preprocessor">#endif</span>
00039 <span class="preprocessor"></span>
00040 <span class="preprocessor">#ifndef GFC_GDK_EVENTS_HH</span>
00041 <span class="preprocessor"></span><span class="preprocessor">#include &lt;<a class="code" href="events_8hh.html">gfc/gdk/events.hh</a>&gt;</span>
00042 <span class="preprocessor">#endif</span>
00043 <span class="preprocessor"></span>
00044 <span class="preprocessor">#ifndef GFC_GTK_SELECTION_HH</span>
00045 <span class="preprocessor"></span><span class="preprocessor">#include &lt;<a class="code" href="gtk_2selection_8hh.html">gfc/gtk/selection.hh</a>&gt;</span>
00046 <span class="preprocessor">#endif</span>
00047 <span class="preprocessor"></span>
00048 <span class="keyword">namespace </span>GFC {
00049 
00050 <span class="keyword">namespace </span>Atk {
00051 <span class="keyword">class </span>Object;
00052 }
00053 
00054 <span class="keyword">namespace </span>Gdk {
00055 <span class="keyword">class </span>Bitmap;
00056 <span class="keyword">class </span>Color;
00057 <span class="keyword">class </span>Colormap;
00058 <span class="keyword">class </span>Cursor;
00059 <span class="keyword">class </span>Display;
00060 <span class="keyword">class </span>Event;
00061 <span class="keyword">class </span>Pixbuf;
00062 <span class="keyword">class </span>Region;
00063 <span class="keyword">class </span>Screen;
00064 <span class="keyword">class </span>Visual;
00065 <span class="keyword">class </span>Window;
00066 }
00067 
00068 <span class="keyword">namespace </span>G {
00069 <span class="keyword">class </span>Value;
00070 }
00071 
00072 <span class="keyword">namespace </span>Pango {
00073 <span class="keyword">class </span>Context;
00074 <span class="keyword">class </span>FontDescription;
00075 <span class="keyword">class </span>Layout;
00076 }
00077 
00078 <span class="keyword">namespace </span>Gtk {
00079 
00080 <span class="keyword">class </span>AccelGroup;
00081 <span class="keyword">class </span>AccelKey;
00082 <span class="keyword">class </span>Clipboard;
00083 <span class="keyword">class </span>Container;
00084 <span class="keyword">class </span>RcStyle;
00085 <span class="keyword">class </span>Selection;
00086 <span class="keyword">class </span>Settings;
00087 <span class="keyword">class </span>StockId;
00088 <span class="keyword">class </span><a class="code" href="namespaceGFC_1_1Pango.html#a136">Style</a>;
00089 
00092 
<a name="l00093"></a><a class="code" href="namespaceGFC_1_1Gtk.html#a366">00093</a> <span class="keyword">enum</span> <a class="code" href="namespaceGFC_1_1Gtk.html#a366">WidgetFlags</a>
00094 {
00095         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a271">TOP_LEVEL</a> = GTK_TOPLEVEL,
00099         
00100         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a272">NO_WINDOW</a> = GTK_NO_WINDOW,
00104         
00105         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a273">REALIZED</a> = GTK_REALIZED,
00107         
00108         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a274">MAPPED</a> = GTK_MAPPED,
00111         
00112         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a275">VISIBLE</a> = GTK_VISIBLE,
00115         
00116         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a276">SENSITIVE</a> = GTK_SENSITIVE,
00120         
00121         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a277">PARENT_SENSITIVE</a> = GTK_PARENT_SENSITIVE,
00126 
00127         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a278">CAN_FOCUS</a> = GTK_CAN_FOCUS,
00129 
00130         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a279">HAS_FOCUS</a> = GTK_HAS_FOCUS,
00133         
00134         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a280">CAN_DEFAULT</a> = GTK_CAN_DEFAULT,
00136         
00137         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a281">HAS_DEFAULT</a> = GTK_HAS_DEFAULT,
00139         
00140         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a282">HAS_GRAB</a> = GTK_HAS_GRAB,
00144         
00145         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a283">RC_STYLE</a> = GTK_RC_STYLE,
00148         
00149         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a284">COMPOSITE_CHILD</a> = GTK_COMPOSITE_CHILD,
00152         
00153         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a285">NO_REPARENT</a> = GTK_NO_REPARENT,
00155         
00156         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a286">APP_PAINTABLE</a> = GTK_APP_PAINTABLE,
00159         
00160         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a287">RECEIVES_DEFAULT</a> = GTK_RECEIVES_DEFAULT,
00163         
00164         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a288">DOUBLE_BUFFERED</a> = GTK_DOUBLE_BUFFERED,
00167 
00168         <a class="code" href="namespaceGFC_1_1Gtk.html#a366a289">NO_SHOW_ALL</a> = GTK_NO_SHOW_ALL
00171 };
00172 
00174 
<a name="l00175"></a><a class="code" href="namespaceGFC_1_1Gtk.html#a270">00175</a> <span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="namespaceGFC_1_1Gtk.html#a270">WidgetFlagsField</a>;
00176 
00179 
<a name="l00180"></a><a class="code" href="namespaceGFC_1_1Gtk.html#a367">00180</a> <span class="keyword">enum</span> <a class="code" href="namespaceGFC_1_1Gtk.html#a367">WidgetHelpType</a>
00181 {
00182         <a class="code" href="namespaceGFC_1_1Gtk.html#a367a290">WIDGET_HELP_TOOLTIP</a> = GTK_WIDGET_HELP_TOOLTIP, 
00183         <a class="code" href="namespaceGFC_1_1Gtk.html#a367a291">WIDGET_HELP_WHATS_THIS</a> = GTK_WIDGET_HELP_WHATS_THIS 
00184 };
00185 
00193 
<a name="l00194"></a><a class="code" href="classGFC_1_1Gtk_1_1Allocation.html">00194</a> <span class="keyword">class </span><a class="code" href="classGFC_1_1Gtk_1_1Allocation.html">Allocation</a> : <span class="keyword">public</span> Gdk::Rectangle
00195 {
00196 <span class="keyword">public</span>:
00199 
00200         <a class="code" href="classGFC_1_1Gtk_1_1Allocation.html#z1039_0">Allocation</a>();
00202 
00203         <a class="code" href="classGFC_1_1Gtk_1_1Allocation.html#z1039_0">Allocation</a>(<span class="keywordtype">int</span> x, <span class="keywordtype">int</span> y, <span class="keywordtype">int</span> width, <span class="keywordtype">int</span> height);
00209         
00213 
00214         GtkAllocation* <a class="code" href="classGFC_1_1Gtk_1_1Allocation.html#z1040_0">gtk_allocation</a>() <span class="keyword">const</span>;
00217         
00219 };
00220 
00227 
<a name="l00228"></a><a class="code" href="classGFC_1_1Gtk_1_1Requisition.html">00228</a> <span class="keyword">class </span><a class="code" href="classGFC_1_1Gtk_1_1Requisition.html">Requisition</a>
00229 {
00230         GtkRequisition requisition_;
00231 
00232 <span class="keyword">public</span>:
00235 
00236         <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html#z1041_0">Requisition</a>();
00238 
00239         <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html#z1041_0">Requisition</a>(<span class="keywordtype">int</span> <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html#z1042_2">width</a>, <span class="keywordtype">int</span> <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html#z1042_3">height</a>);
00243 
00244         <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html#z1041_0">Requisition</a>(<span class="keyword">const</span> GtkRequisition&amp; requisition);
00247 
00251 
00252         GtkRequisition* <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html#z1042_0">gtk_requisition</a>() <span class="keyword">const</span>;
00254 
00255         <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html#z1042_1">operator GtkRequisition* </a>() <span class="keyword">const</span>;
00257 
00258         <span class="keywordtype">int</span> <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html#z1042_2">width</a>() <span class="keyword">const</span>;
00260 
00261         <span class="keywordtype">int</span> <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html#z1042_3">height</a>() <span class="keyword">const</span>;
00263 
00264         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html#z1042_4">operator==</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html">Requisition</a>&amp; other) <span class="keyword">const</span>;
00267 
00268         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html#z1042_5">operator!=</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html">Requisition</a>&amp; other) <span class="keyword">const</span>;
00271 
00275 
00276         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html#z1043_0">set</a>(<span class="keywordtype">int</span> width, <span class="keywordtype">int</span> height);
00280         
00282 };
00283 
00316 
<a name="l00317"></a><a class="code" href="classGFC_1_1Gtk_1_1Widget.html">00317</a> <span class="keyword">class </span><a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a> : <span class="keyword">public</span> <a class="code" href="classGFC_1_1Gtk_1_1Object.html">Object</a>, <span class="keyword">public</span> Atk::Implementor
00318 {
00319         <span class="keyword">friend</span> <span class="keyword">class </span><a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Object.html">G::Object</a>;
00320 
00321         <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1044_0">Widget</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a>&amp;);
00322         <a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a>&amp; operator=(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a>&amp;);
00323 
00324 <span class="keyword">protected</span>:
00327 
00328         <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1044_0">Widget</a>();
00330 
00331         <span class="keyword">explicit</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1044_0">Widget</a>(GtkWidget *widget, <span class="keywordtype">bool</span> owns_reference = <span class="keyword">false</span>);
00338 
00342 
00343         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1045_0">set_allocation</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1Allocation.html">Allocation</a>&amp; allocation);
00349 
00350         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1045_1">set_window</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Window.html">Gdk::Window</a>&amp; window);
00359 
00363 
00364         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ShowSignalType</a>;
00365         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, ShowSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ShowSignalProxy</a>;
00366         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ShowSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_42">show_signal</a>;
00371 
00372         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">HideSignalType</a>;
00373         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, HideSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">HideSignalProxy</a>;
00374         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">HideSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_43">hide_signal</a>;
00379 
00380         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">MapSignalType</a>;
00381         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, MapSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">MapSignalProxy</a>;
00382         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">MapSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_44">map_signal</a>;
00387 
00388         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">UnmapSignalType</a>;
00389         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, UnmapSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">UnmapSignalProxy</a>;
00390         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">UnmapSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_45">unmap_signal</a>;
00395 
00396         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">RealizeSignalType</a>;
00397         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, RealizeSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">RealizeSignalProxy</a>;
00398         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">RealizeSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_46">realize_signal</a>;
00403 
00404         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">UnrealizeSignalType</a>;
00405         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, UnrealizeSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">UnrealizeSignalProxy</a>;
00406         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">UnrealizeSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_47">unrealize_signal</a>;
00411 
00412         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, Requisition*&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SizeRequestSignalType</a>;
00413         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, SizeRequestSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SizeRequestSignalProxy</a>;
00414         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SizeRequestSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_48">size_request_signal</a>;
00420 
00421         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, const Allocation&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SizeAllocateSignalType</a>;
00422         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, SizeAllocateSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SizeAllocateSignalProxy</a>;
00423         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SizeAllocateSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_49">size_allocate_signal</a>;
00429 
00430         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, StateType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">StateChangedSignalType</a>;
00431         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, StateChangedSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">StateChangedSignalProxy</a>;
00432         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">StateChangedSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_50">state_changed_signal</a>;
00438 
00439         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, Widget*&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ParentSetSignalType</a>;
00440         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, ParentSetSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ParentSetSignalProxy</a>;
00441         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ParentSetSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_51">parent_set_signal</a>;
00447 
00448         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, Widget*&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">HierarchyChangedSignalType</a>;
00449         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, HierarchyChangedSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">HierarchyChangedSignalProxy</a>;
00450         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">HierarchyChangedSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_52">hierarchy_changed_signal</a>;
00456 
00457         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, Style*&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">StyleSetSignalType</a>;
00458         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, StyleSetSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">StyleSetSignalProxy</a>;
00459         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">StyleSetSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_53">style_set_signal</a>;
00465 
00466         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, TextDirection&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DirectionChangedSignalType</a>;
00467         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, DirectionChangedSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DirectionChangedSignalProxy</a>;
00468         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DirectionChangedSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_54">direction_changed_signal</a>;
00474 
00475         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, bool&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">GrabNotifySignalType</a>;
00476         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, GrabNotifySignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">GrabNotifySignalProxy</a>;
00477         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">GrabNotifySignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_55">grab_notify_signal</a>;
00484 
00485         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, GParamSpec*&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ChildNotifySignalType</a>;
00486         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, ChildNotifySignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ChildNotifySignalProxy</a>;
00487         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ChildNotifySignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_56">child_notify_signal</a>;
00493 
00494         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, bool&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">MnemonicActivateSignalType</a>;
00495         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, MnemonicActivateSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">MnemonicActivateSignalProxy</a>;
00496         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">MnemonicActivateSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_57">mnemonic_activate_signal</a>;
00502 
00503         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">GrabFocusSignalType</a>;
00504         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, GrabFocusSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">GrabFocusSignalProxy</a>;
00505         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">GrabFocusSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_58">grab_focus_signal</a>;
00510 
00511         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, DirectionType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">FocusSignalType</a>;
00512         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, FocusSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">FocusSignalProxy</a>;
00513         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">FocusSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_59">focus_signal</a>;
00520 
00521         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">AccelClosuresChangedSignalType</a>;
00522         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, AccelClosuresChangedSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">AccelClosuresChangedSignalProxy</a>;
00523         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">AccelClosuresChangedSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_60">accel_closures_changed_signal</a>;
00528 
00529         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, Gdk::Screen*&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ScreenChangedSignalType</a>;
00530         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, ScreenChangedSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ScreenChangedSignalProxy</a>;
00531         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ScreenChangedSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_61">screen_changed_signal</a>;
00537 
00538         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, unsigned int&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">CanActivateAccelSignalType</a>;
00539         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, CanActivateAccelSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">CanActivateAccelSignalProxy</a>;
00540         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">CanActivateAccelSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1046_62">can_activate_accel_signal</a>;
00547 
00551 
00552         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, SelectionData&amp;, unsigned int, unsigned int&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SelectionGetSignalType</a>;
00553         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, SelectionGetSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SelectionGetSignalProxy</a>;
00554         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SelectionGetSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1047_4">selection_get_signal</a>;
00562 
00563         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, const SelectionData&amp;, unsigned int&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SelectionReceivedSignalType</a>;
00564         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, SelectionReceivedSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SelectionReceivedSignalProxy</a>;
00565         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SelectionReceivedSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1047_5">selection_received_signal</a>;
00572         
00576 
00577         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, DragContext&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragBeginSignalType</a>;
00578         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, DragBeginSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragBeginSignalProxy</a>;
00579         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragBeginSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1048_8">drag_begin_signal</a>;
00585 
00586         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, DragContext&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragEndSignalType</a>;
00587         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, DragEndSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragEndSignalProxy</a>;
00588         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragEndSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1048_9">drag_end_signal</a>;
00594 
00595         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, DragContext&amp;, SelectionData&amp;, unsigned int, unsigned int&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragDataGetSignalType</a>;
00596         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, DragDataGetSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragDataGetSignalProxy</a>;
00597         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragDataGetSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1048_10">drag_data_get_signal</a>;
00606 
00607         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, DragContext&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragDataDeleteSignalType</a>;
00608         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, DragDataDeleteSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragDataDeleteSignalProxy</a>;
00609         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragDataDeleteSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1048_11">drag_data_delete_signal</a>;
00615         
00619 
00620         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, DragContext&amp;, unsigned int&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragLeaveSignalType</a>;
00621         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, DragLeaveSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragLeaveSignalProxy</a>;
00622         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragLeaveSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1049_8">drag_leave_signal</a>;
00629 
00630         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, DragContext&amp;, int, int, unsigned int&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragMotionSignalType</a>;
00631         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, DragMotionSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragMotionSignalProxy</a>;
00632         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragMotionSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1049_9">drag_motion_signal</a>;
00642 
00643         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, DragContext&amp;, int, int, unsigned int&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragDropSignalType</a>;
00644         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, DragDropSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragDropSignalProxy</a>;
00645         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragDropSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1049_10">drag_drop_signal</a>;
00655 
00656         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, DragContext&amp;, int, int, const SelectionData&amp;, unsigned int, unsigned int&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragDataReceivedSignalType</a>;
00657         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, DragDataReceivedSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragDataReceivedSignalProxy</a>;
00658         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DragDataReceivedSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1049_11">drag_data_received_signal</a>;
00669         
00673 
00674         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::Event&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">EventSignalType</a>;
00675         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, EventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">EventSignalProxy</a>;
00676         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">EventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_56">event_signal</a>;
00683 
00684         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;void, const Gdk::Event&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">EventAfterSignalType</a>;
00685         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, EventAfterSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">EventAfterSignalProxy</a>;
00686         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">EventAfterSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_57">event_after_signal</a>;
00692 
00693         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventButton&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ButtonPressEventSignalType</a>;
00694         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, ButtonPressEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ButtonPressEventSignalProxy</a>;
00695         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ButtonPressEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_58">button_press_event_signal</a>;
00702 
00703         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventButton&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ButtonReleaseEventSignalType</a>;
00704         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, ButtonReleaseEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ButtonReleaseEventSignalProxy</a>;
00705         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ButtonReleaseEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_59">button_release_event_signal</a>;
00712 
00713         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventScroll&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ScrollEventSignalType</a>;
00714         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, ScrollEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ScrollEventSignalProxy</a>;
00715         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ScrollEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_60">scroll_event_signal</a>;
00722 
00723         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventMotion&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">MotionNotifyEventSignalType</a>;
00724         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, MotionNotifyEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">MotionNotifyEventSignalProxy</a>;
00725         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">MotionNotifyEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_61">motion_notify_event_signal</a>;
00732 
00733         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventAny&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DeleteEventSignalType</a>;
00734         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, DeleteEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DeleteEventSignalProxy</a>;
00735         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DeleteEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_62">delete_event_signal</a>;
00742         
00743         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventAny&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DestroyEventSignalType</a>;
00744         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, DestroyEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DestroyEventSignalProxy</a>;
00745         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">DestroyEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_63">destroy_event_signal</a>;
00752 
00753         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventExpose&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ExposeEventSignalType</a>;
00754         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, ExposeEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ExposeEventSignalProxy</a>;
00755         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ExposeEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_64">expose_event_signal</a>;
00762 
00763         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventKey&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">KeyPressEventSignalType</a>;
00764         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, KeyPressEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">KeyPressEventSignalProxy</a>;
00765         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">KeyPressEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_65">key_press_event_signal</a>;
00772 
00773         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventKey&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">KeyReleaseEventSignalType</a>;
00774         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, KeyReleaseEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">KeyReleaseEventSignalProxy</a>;
00775         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">KeyReleaseEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_66">key_release_event_signal</a>;
00782 
00783         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventCrossing&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">EnterNotifyEventSignalType</a>;
00784         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, EnterNotifyEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">EnterNotifyEventSignalProxy</a>;
00785         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">EnterNotifyEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_67">enter_notify_event_signal</a>;
00790 
00791         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventCrossing&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">LeaveNotifyEventSignalType</a>;
00792         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, LeaveNotifyEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">LeaveNotifyEventSignalProxy</a>;
00793         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">LeaveNotifyEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_68">leave_notify_event_signal</a>;
00800 
00801         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventConfigure&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ConfigureEventSignalType</a>;
00802         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, ConfigureEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ConfigureEventSignalProxy</a>;
00803         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ConfigureEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_69">configure_event_signal</a>;
00810 
00811         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventFocus&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">FocusInEventSignalType</a>;
00812         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, FocusInEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">FocusInEventSignalProxy</a>;
00813         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">FocusInEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_70">focus_in_event_signal</a>;
00820 
00821         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventFocus&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">FocusOutEventSignalType</a>;
00822         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, FocusOutEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">FocusOutEventSignalProxy</a>;
00823         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">FocusOutEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_71">focus_out_event_signal</a>;
00830 
00831         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventAny&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">MapEventSignalType</a>;
00832         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, MapEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">MapEventSignalProxy</a>;
00833         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">MapEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_72">map_event_signal</a>;
00840 
00841         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventAny&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">UnmapEventSignalType</a>;
00842         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, UnmapEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">UnmapEventSignalProxy</a>;
00843         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">UnmapEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_73">unmap_event_signal</a>;
00850 
00851         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventProperty&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">PropertyNotifyEventSignalType</a>;
00852         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, PropertyNotifyEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">PropertyNotifyEventSignalProxy</a>;
00853         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">PropertyNotifyEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_74">property_notify_event_signal</a>;
00860 
00861         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventSelection&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SelectionClearEventSignalType</a>;
00862         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, SelectionClearEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SelectionClearEventSignalProxy</a>;
00863         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SelectionClearEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_75">selection_clear_event_signal</a>;
00870 
00871         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventSelection&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SelectionRequestEventSignalType</a>;
00872         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, SelectionRequestEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SelectionRequestEventSignalProxy</a>;
00873         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SelectionRequestEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_76">selection_request_event_signal</a>;
00880 
00881         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventSelection&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SelectionNotifyEventSignalType</a>;
00882         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, SelectionNotifyEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SelectionNotifyEventSignalProxy</a>;
00883         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">SelectionNotifyEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_77">selection_notify_event_signal</a>;
00890 
00891         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventProximity&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ProximityInEventSignalType</a>;
00892         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, ProximityInEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ProximityInEventSignalProxy</a>;
00893         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ProximityInEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_78">proximity_in_event_signal</a>;
00900 
00901         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventProximity&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ProximityOutEventSignalType</a>;
00902         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, ProximityOutEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ProximityOutEventSignalProxy</a>;
00903         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ProximityOutEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_79">proximity_out_event_signal</a>;
00910 
00911         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventVisibility&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">VisibilityNotifyEventSignalType</a>;
00912         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, VisibilityNotifyEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">VisibilityNotifyEventSignalProxy</a>;
00913         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">VisibilityNotifyEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_80">visibility_notify_event_signal</a>;
00920 
00921         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventClient&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ClientEventSignalType</a>;
00922         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, ClientEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ClientEventSignalProxy</a>;
00923         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">ClientEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_81">client_event_signal</a>;
00930 
00931         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventAny&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">NoExposeEventSignalType</a>;
00932         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, NoExposeEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">NoExposeEventSignalProxy</a>;
00933         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">NoExposeEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_82">no_expose_event_signal</a>;
00940 
00941         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">G::Signal&lt;bool, const Gdk::EventWindowState&amp;&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">WindowStateEventSignalType</a>;
00942         <span class="keyword">typedef</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">G::SignalProxy&lt;TypeInstance, WindowStateEventSignalType&gt;</a> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">WindowStateEventSignalProxy</a>;
00943         <span class="keyword">static</span> <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Signal.html">WindowStateEventSignalType</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1050_83">window_state_event_signal</a>;
00950         
00952 
00953 <span class="keyword">public</span>:
00956 
00957         <span class="keyword">virtual</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1051_0">~Widget</a>();
00959 
00963 
00964         GtkWidget* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_0">gtk_widget</a>() <span class="keyword">const</span>;
00966 
00967         <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_1">operator GtkWidget* </a>() <span class="keyword">const</span>;
00969 
00970         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_2">is_toplevel</a>() <span class="keyword">const</span>;
00972 
00973         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_3">has_no_window</a>() <span class="keyword">const</span>;
00975 
00976         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_4">is_realized</a>() <span class="keyword">const</span>;
00978 
00979         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_5">is_mapped</a>() <span class="keyword">const</span>;
00981 
00982         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_6">is_visible</a>() <span class="keyword">const</span>;
00984 
00985         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_7">is_drawable</a>() <span class="keyword">const</span>;
00987 
00988         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_8">sensitive</a>() <span class="keyword">const</span>;
00990 
00991         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_9">parent_sensitive</a>() <span class="keyword">const</span>;
00993 
00994         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_10">is_sensitive</a>() <span class="keyword">const</span>;
00996 
00997         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_11">can_focus</a>() <span class="keyword">const</span>;
00999 
01000         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_12">has_focus</a>() <span class="keyword">const</span>;
01002 
01003         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_13">can_default</a>() <span class="keyword">const</span>;
01005 
01006         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_14">has_default</a>() <span class="keyword">const</span>;
01008         
01009         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_15">has_grab</a>() <span class="keyword">const</span>;
01012 
01013         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_16">has_rc_style</a>() <span class="keyword">const</span>;
01015 
01016         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_17">is_composite_child</a>() <span class="keyword">const</span>;
01018 
01019         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_18">is_app_paintable</a>() <span class="keyword">const</span>;
01021 
01022         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_19">receives_default</a>() <span class="keyword">const</span>;
01025 
01026         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_20">is_double_buffered</a>() <span class="keyword">const</span>;
01028 
01029         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_21">get_no_show_all</a>() <span class="keyword">const</span>;
01033 
01034         StateType <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_22">get_state</a>() <span class="keyword">const</span>;
01036 
01037         <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1Allocation.html">Allocation</a>&amp; <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_23">get_allocation</a>() <span class="keyword">const</span>;
01039 
01040         <a class="code" href="classGFC_1_1Gtk_1_1Requisition.html">Requisition</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_24">get_child_requisition</a>() <span class="keyword">const</span>;
01043         
01044         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_24">get_child_requisition</a>(<a class="code" href="classGFC_1_1Gtk_1_1Requisition.html">Requisition</a>&amp; requisition) <span class="keyword">const</span>;
01057         
01058         <a class="code" href="classGFC_1_1Gdk_1_1Window.html">Gdk::Window</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_26">get_window</a>() <span class="keyword">const</span>;
01061 
01062         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_27">is_focus</a>() <span class="keyword">const</span>;
01068 
01069         <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_28">get_name</a>() <span class="keyword">const</span>;
01072         
01073         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_29">get_child_visible</a>() <span class="keyword">const</span>;
01079 
01080         <a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_30">get_parent</a>() <span class="keyword">const</span>;
01082         
01083         <a class="code" href="classGFC_1_1Gdk_1_1Window.html">Gdk::Window</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_31">get_parent_window</a>() <span class="keyword">const</span>;
01085         
01086         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_32">get_size_request</a>(<span class="keywordtype">int</span> *width, <span class="keywordtype">int</span> *height) <span class="keyword">const</span>;
01095 
01096         Gdk::ExtensionMode <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_33">get_extension_events</a>() <span class="keyword">const</span>;
01098         
01099         <a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_34">get_toplevel</a>() <span class="keyword">const</span>;
01118 
01119         <a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_35">get_ancestor</a>(GType widget_type) <span class="keyword">const</span>;
01127 
01128         <a class="code" href="classGFC_1_1Gdk_1_1Colormap.html">Gdk::Colormap</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_36">get_colormap</a>() <span class="keyword">const</span>;
01131         
01132         <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Visual.html">Gdk::Visual</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_37">get_visual</a>() <span class="keyword">const</span>;
01134 
01135         <a class="code" href="classGFC_1_1Gdk_1_1Screen.html">Gdk::Screen</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_38">get_screen</a>() <span class="keyword">const</span>;
01143 
01144         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_39">has_screen</a>() <span class="keyword">const</span>;
01150 
01151         <a class="code" href="classGFC_1_1Gdk_1_1Display.html">Gdk::Display</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_40">get_display</a>() <span class="keyword">const</span>;
01159 
01160         <a class="code" href="classGFC_1_1Gdk_1_1Window.html">Gdk::Window</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_41">get_root_window</a>() <span class="keyword">const</span>;
01168 
01169         <a class="code" href="classGFC_1_1Gtk_1_1Settings.html">Settings</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_42">get_settings</a>() <span class="keyword">const</span>;
01176 
01177         <a class="code" href="classGFC_1_1Gtk_1_1Clipboard.html">Clipboard</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_43">get_clipboard</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> selection = GDK_SELECTION_CLIPBOARD) <span class="keyword">const</span>;
01188 
01189         <a class="code" href="classGFC_1_1Atk_1_1Object.html">Atk::Object</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_44">get_accessible</a>() <span class="keyword">const</span>;
01191 
01192         <a class="code" href="namespaceGFC_1_1Gdk.html#a0">Gdk::EventMaskField</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_45">get_events</a>() <span class="keyword">const</span>;
01197         
01198         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_47">get_pointer</a>(<span class="keywordtype">int</span> *x, <span class="keywordtype">int</span> *y) <span class="keyword">const</span>;
01207 
01208         <a class="code" href="classGFC_1_1Gdk_1_1Point.html">Gdk::Point</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_47">get_pointer</a>() <span class="keyword">const</span>;
01216 
01217         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_48">is_ancestor</a>(<a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a> *ancestor) <span class="keyword">const</span>;
01222 
01223         <a class="code" href="classGFC_1_1Gtk_1_1Style.html">Style</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_49">get_style</a>() <span class="keyword">const</span>;
01225 
01226         <a class="code" href="classGFC_1_1Gtk_1_1Style.html">Style</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_50">rc_get_style</a>() <span class="keyword">const</span>;
01233 
01234         <a class="code" href="classGFC_1_1Gtk_1_1RcStyle.html">RcStyle</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_51">get_modifier_style</a>() <span class="keyword">const</span>;
01245 
01246         <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_52">get_composite_name</a>() <span class="keyword">const</span>;
01249 
01250         <a class="code" href="classGFC_1_1Pango_1_1Context.html">Pango::Context</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_53">get_pango_context</a>() <span class="keyword">const</span>;
01259 
01260         <a class="code" href="namespaceGFC_1_1Gtk.html#a341">TextDirection</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_54">get_direction</a>() <span class="keyword">const</span>;
01262 
01263         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_56">style_get_property</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *property_name, <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Value.html">G::Value</a>&amp; value);
01264         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_56">style_get_property</a>(<span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; property_name, <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1Value.html">G::Value</a>&amp; value);
01268 
01269         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_57">path</a>(<a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_57">path</a>, <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; path_reversed) <span class="keyword">const</span>;
01282 
01283         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_58">class_path</a>(<a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; path, <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; path_reversed) <span class="keyword">const</span>;
01288 
01292 
01293         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_0">set_flags</a>(<a class="code" href="namespaceGFC_1_1Gtk.html#a270">WidgetFlagsField</a> flags);
01296 
01297         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_1">unset_flags</a>(<a class="code" href="namespaceGFC_1_1Gtk.html#a270">WidgetFlagsField</a> flags);
01300 
01301         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_2">unparent</a>();
01304 
01305         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_3">show</a>();
01314 
01315         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_3">show</a>(<span class="keywordtype">bool</span> visible);
01321         
01322         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_5">hide</a>();
01324 
01325         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_6">show_now</a>();
01330 
01331         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_7">show_all</a>();
01333 
01334         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_8">hide_all</a>();
01336 
01337         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_9">set_no_show_all</a>(<span class="keywordtype">bool</span> no_show_all);
01344 
01345         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_10">map</a>();
01348 
01349         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_11">unmap</a>();
01352 
01353         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_12">realize</a>();
01367 
01368         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_13">unrealize</a>();
01371 
01372         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_14">queue_draw</a>();
01374 
01375         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_15">queue_draw_area</a>(<span class="keywordtype">int</span> x, <span class="keywordtype">int</span> y, <span class="keywordtype">int</span> width, <span class="keywordtype">int</span> height);
01397 
01398         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_15">queue_draw_area</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Rectangle.html">Gdk::Rectangle</a>&amp; rectangle);
01402 
01403         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_17">queue_resize</a>();
01408 
01409         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_18">queue_resize_no_redraw</a>();
01411 
01412         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_19">size_request</a>(<a class="code" href="classGFC_1_1Gtk_1_1Requisition.html">Requisition</a> *requisition);
01424 
01425         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_20">size_allocate</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1Allocation.html">Allocation</a>&amp; allocation);
01429 
01430         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_22">add_accelerator</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *accel_signal, <a class="code" href="classGFC_1_1Gtk_1_1AccelGroup.html">AccelGroup</a>&amp; accel_group, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a>&amp; accel_key);
01431         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_22">add_accelerator</a>(<span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; accel_signal, <a class="code" href="classGFC_1_1Gtk_1_1AccelGroup.html">AccelGroup</a>&amp; accel_group, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a>&amp; accel_key);
01442 
01443         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_23">remove_accelerator</a>(<a class="code" href="classGFC_1_1Gtk_1_1AccelGroup.html">AccelGroup</a>&amp; accel_group, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1AccelKey.html">AccelKey</a>&amp; accel_key);
01448 
01449         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_25">set_accel_path</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *accel_path, <a class="code" href="classGFC_1_1Gtk_1_1AccelGroup.html">AccelGroup</a>&amp; accel_group);
01450         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_25">set_accel_path</a>(<span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; accel_path, <a class="code" href="classGFC_1_1Gtk_1_1AccelGroup.html">AccelGroup</a>&amp; accel_group);
01465 
01466         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_26">list_accel_closures</a>(std::vector&lt;GClosure*&gt;&amp; closures);
01475 
01476         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_27">can_activate_accel</a>(<span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> signal_id);
01486 
01487         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_27">can_activate_accel</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *signal_name);
01488         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_27">can_activate_accel</a>(<span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; signal_name);
01493 
01494         <span class="keywordtype">int</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_30">send_expose</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1EventExpose.html">Gdk::EventExpose</a>&amp; <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_32">event</a>);
01506 
01507         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_31">mnemonic_activate</a>(<span class="keywordtype">bool</span> group_cycling);
01511 
01512         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_32">event</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Event.html">Gdk::Event</a>&amp; event);
01522 
01523         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_33">activate</a>();
01530 
01531         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_34">set_scroll_adjustments</a>(<a class="code" href="classGFC_1_1Gtk_1_1Adjustment.html">Adjustment</a> *hadjustment, <a class="code" href="classGFC_1_1Gtk_1_1Adjustment.html">Adjustment</a> *vadjustment);
01541 
01542         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_35">reparent</a>(<a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a>&amp; new_parent);
01546 
01547         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_36">intersect</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Rectangle.html">Gdk::Rectangle</a>&amp; area, <a class="code" href="classGFC_1_1Gdk_1_1Rectangle.html">Gdk::Rectangle</a> *intersection);
01555 
01556         <a class="code" href="classGFC_1_1Gdk_1_1Rectangle.html">Gdk::Rectangle</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_36">intersect</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Rectangle.html">Gdk::Rectangle</a>&amp; area);
01564 
01565         <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1Pointer.html">Pointer&lt;Gdk::Region&gt;</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_36">intersect</a>(<a class="code" href="classGFC_1_1Gdk_1_1Region.html">Gdk::Region</a>&amp; region);
01577 
01578         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_39">freeze_child_notify</a>();
01581 
01582         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_41">child_notify</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *child_property);
01583         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_41">child_notify</a>(<span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; child_property);
01586 
01587         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_42">thaw_child_notify</a>();
01590         
01591         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_43">grab_focus</a>();
01595 
01596         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_44">grab_default</a>();
01601 
01602         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_46">set_name</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *name);
01603         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_46">set_name</a>(<span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; name);
01609 
01610         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_47">set_state</a>(StateType state);
01615 
01616         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_48">set_sensitive</a>(<span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_8">sensitive</a>);
01623 
01624         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_49">set_app_paintable</a>(<span class="keywordtype">bool</span> app_paintable);
01630 
01631         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_50">set_double_buffered</a>(<span class="keywordtype">bool</span> double_buffered);
01643 
01644         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_51">set_redraw_on_allocate</a>(<span class="keywordtype">bool</span> redraw_on_allocate);
01658 
01659         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_52">set_parent</a>(<a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a>&amp; parent);
01666 
01667         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_53">set_parent_window</a>(<a class="code" href="classGFC_1_1Gdk_1_1Window.html">Gdk::Window</a> *parent_window);
01670 
01671         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_54">set_child_visible</a>(<span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1052_6">is_visible</a>);
01686 
01687         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_55">child_focus</a>(<a class="code" href="namespaceGFC_1_1Gtk.html#a323">DirectionType</a> direction);
01707 
01708         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_56">set_size_request</a>(<span class="keywordtype">int</span> width, <span class="keywordtype">int</span> height);
01732 
01733         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_57">set_events</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a0">Gdk::EventMaskField</a> events);
01744 
01745         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_58">add_events</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a0">Gdk::EventMaskField</a> events);
01748 
01749         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_59">set_extension_events</a>(Gdk::ExtensionMode mode);
01753 
01754         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_60">set_colormap</a>(<a class="code" href="classGFC_1_1Gdk_1_1Colormap.html">Gdk::Colormap</a>&amp; colormap);
01760 
01761         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_61">translate_coordinates</a>(<a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a> &amp;src_widget, <span class="keywordtype">int</span> src_x, <span class="keywordtype">int</span> src_y, <span class="keywordtype">int</span> *dest_x, <span class="keywordtype">int</span> *dest_y) <span class="keyword">const</span>;
01773 
01774         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_62">set_style</a>(<a class="code" href="classGFC_1_1Gtk_1_1Style.html">Style</a>&amp; style);
01781 
01782         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_63">ensure_style</a>();
01786 
01787         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_64">modify_style</a>(<a class="code" href="classGFC_1_1Gtk_1_1RcStyle.html">RcStyle</a>&amp; style);
01803 
01804         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_65">modify_fg</a>(StateType state, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Color.html">Gdk::Color</a>* color);
01811 
01812         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_66">modify_bg</a>(StateType state, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Color.html">Gdk::Color</a> *color);
01819 
01820         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_67">modify_text</a>(StateType state, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Color.html">Gdk::Color</a> *color);
01829 
01830         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_68">modify_base</a>(StateType state, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Color.html">Gdk::Color</a> *color);
01839 
01840         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_69">modify_font</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Pango_1_1FontDescription.html">Pango::FontDescription</a> *font_desc);
01846 
01847         <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1Pointer.html">Pointer&lt;Pango::Context&gt;</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_70">create_pango_context</a>();
01851 
01852         <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1Pointer.html">Pointer&lt;Pango::Layout&gt;</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_72">create_pango_layout</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *text);
01853         <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1Pointer.html">Pointer&lt;Pango::Layout&gt;</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_72">create_pango_layout</a>(<span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; text);
01863 
01864         <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1Pointer.html">Pointer&lt;Gdk::Pixbuf&gt;</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_73">render_icon</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1StockId.html">StockId</a>&amp; stock_id, <a class="code" href="namespaceGFC_1_1Gtk.html#a325">IconSize</a> size, <span class="keyword">const</span> <span class="keywordtype">char</span> *detail = 0);
01878 
01879         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_75">set_composite_name</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *name);
01880         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_75">set_composite_name</a>(<span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; name);
01885 
01886         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_76">reset_rc_styles</a>();
01890 
01891         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_77">set_direction</a>(<a class="code" href="namespaceGFC_1_1Gtk.html#a341">TextDirection</a> dir);
01904 
01905         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_79">shape_combine_mask</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Bitmap.html">Gdk::Bitmap</a>&amp; shape_mask, <span class="keywordtype">int</span> offset_x, <span class="keywordtype">int</span> offset_y);
01913 
01914         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_79">shape_combine_mask</a>();
01916 
01917         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_80">list_mnemonic_labels</a>(std::vector&lt;Widget*&gt;&amp; widgets);
01926 
01927         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_81">add_mnemonic_label</a>(<a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a>&amp; label);
01936 
01937         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1053_82">remove_mnemonic_label</a>(<a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a>&amp; label);
01944 
01946 
01947         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1Style.html">Style</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#e0">get_default_style</a>();
01951 
01952         <span class="keyword">static</span> <a class="code" href="classGFC_1_1Gdk_1_1Colormap.html">Gdk::Colormap</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#e1">get_default_colormap</a>();
01954 
01955         <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Visual.html">Gdk::Visual</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#e2">get_default_visual</a>();
01958 
01959         <span class="keyword">static</span> <a class="code" href="namespaceGFC_1_1Gtk.html#a341">TextDirection</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#e3">get_default_direction</a>();
01961 
01962         <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#e4">push_colormap</a>(<a class="code" href="classGFC_1_1Gdk_1_1Colormap.html">Gdk::Colormap</a>&amp; cmap);
01968 
01969         <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#e5">push_composite_child</a>();
01974 
01975         <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#e6">pop_composite_child</a>();
01977 
01978         <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#e7">pop_colormap</a>();
01980 
01981         <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#e8">set_default_colormap</a>(<a class="code" href="classGFC_1_1Gdk_1_1Colormap.html">Gdk::Colormap</a> *colormap);
01987 
01988         <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#e9">set_default_direction</a>(<a class="code" href="namespaceGFC_1_1Gtk.html#a341">TextDirection</a>  dir);
01992 
01995 
01996         Gdk::GrabStatus <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1054_0">keyboard_grab</a>(<span class="keywordtype">bool</span> owner_events = <span class="keyword">false</span>, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> time = GDK_CURRENT_TIME);
02009 
02010         Gdk::GrabStatus <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1054_1">pointer_grab</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a0">Gdk::EventMaskField</a> event_mask, <a class="code" href="classGFC_1_1Gtk_1_1Widget.html">Widget</a> *confine_to = 0, <a class="code" href="classGFC_1_1Gdk_1_1Cursor.html">Gdk::Cursor</a> *cursor = 0,
02011                                      <span class="keywordtype">bool</span> owner_events = <span class="keyword">false</span>, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> time = GDK_CURRENT_TIME);
02039 
02043 
02044         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1055_0">selection_owner_get</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> selection);
02048 
02049         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1055_1">selection_owner_set</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> selection, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> time, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Display.html">Gdk::Display</a> *display = 0);
02055 
02056         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1055_2">selection_add_target</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> selection, <a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> target, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> info);
02061 
02062         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1055_2">selection_add_target</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> selection, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1TargetEntry.html">TargetEntry</a>&amp; entry);
02066 
02067         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1055_4">selection_add_targets</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> selection, <span class="keyword">const</span> std::vector&lt;TargetEntry&gt;&amp; targets);
02072 
02073         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1055_5">selection_clear_targets</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> selection);
02076 
02077         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1055_6">selection_convert</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> selection, <a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> target, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> time = GDK_CURRENT_TIME);
02086 
02087         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1055_7">selection_remove_all</a>();
02090 
02092 
02093         <span class="keyword">static</span> <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#e10">selection_owner_unset</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> selection, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> time, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Display.html">Gdk::Display</a> *display = 0);
02099 
02102 
02103         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1056_0">drag_get_data</a>(<a class="code" href="classGFC_1_1Gtk_1_1DragContext.html">DragContext</a>&amp; context, <a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> target, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> time = GDK_CURRENT_TIME);
02115 
02116         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1056_1">drag_highlight</a>();
02119 
02120         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1056_2">drag_unhighlight</a>();
02122 
02123         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1056_3">drag_dest_set</a>(<a class="code" href="namespaceGFC_1_1Gtk.html#a45">DestDefaultsField</a> flags, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1TargetEntry.html">TargetEntry</a>&amp; target, <a class="code" href="namespaceGFC_1_1Gdk.html#a135">Gdk::DragActionField</a> actions);
02132         
02133         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1056_3">drag_dest_set</a>(<a class="code" href="namespaceGFC_1_1Gtk.html#a45">DestDefaultsField</a> flags, <span class="keyword">const</span> std::vector&lt;TargetEntry&gt;&amp; targets, <a class="code" href="namespaceGFC_1_1Gdk.html#a135">Gdk::DragActionField</a> actions);
02142 
02143         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1056_5">drag_dest_set_proxy</a>(<a class="code" href="classGFC_1_1Gdk_1_1Window.html">Gdk::Window</a> *proxy_window, Gdk::DragProtocol protocol, <span class="keywordtype">bool</span> use_coordinates);
02150 
02151         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1056_6">drag_dest_unset</a>();
02154 
02155         <a class="code" href="namespaceGFC_1_1Gdk.html#a134">Gdk::Atom</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1056_7">drag_dest_find_target</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1DragContext.html">DragContext</a>&amp; context, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1TargetList.html">TargetList</a> *target_list = 0);
02166 
02167         <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1Pointer.html">Pointer&lt;TargetList&gt;</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1056_8">drag_dest_get_target_list</a>() <span class="keyword">const</span>;
02170 
02171         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1056_9">drag_dest_set_target_list</a>(<a class="code" href="classGFC_1_1Gtk_1_1TargetList.html">TargetList</a> *target_list);
02176 
02180 
02181         <a class="code" href="classGFC_1_1Gtk_1_1DragContext.html">DragContext</a>* <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1057_0">drag_source_begin</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1TargetList.html">TargetList</a>&amp; targets, <a class="code" href="namespaceGFC_1_1Gdk.html#a135">Gdk::DragActionField</a> actions, <span class="keywordtype">int</span> button, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gdk_1_1Event.html">Gdk::Event</a>&amp; event);
02191 
02192         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1057_1">drag_source_set</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a136">Gdk::ModifierTypeField</a> start_button_mask, <span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1TargetEntry.html">TargetEntry</a>&amp; target, <a class="code" href="namespaceGFC_1_1Gdk.html#a135">Gdk::DragActionField</a> actions);
02198         
02199         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1057_1">drag_source_set</a>(<a class="code" href="namespaceGFC_1_1Gdk.html#a136">Gdk::ModifierTypeField</a> start_button_mask, <span class="keyword">const</span> std::vector&lt;TargetEntry&gt;&amp; targets, <a class="code" href="namespaceGFC_1_1Gdk.html#a135">Gdk::DragActionField</a> actions);
02205 
02206         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1057_3">drag_source_unset</a>();
02208 
02209         <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1Pointer.html">Pointer&lt;TargetList&gt;</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1057_4">drag_source_get_target_list</a>() <span class="keyword">const</span>;
02212                 
02213         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1057_5">drag_source_set_target_list</a>(<a class="code" href="classGFC_1_1Gtk_1_1TargetList.html">TargetList</a> *target_list);
02218         
02219         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1057_6">drag_source_set_icon</a>(<a class="code" href="classGFC_1_1Gdk_1_1Colormap.html">Gdk::Colormap</a> *colormap, <a class="code" href="classGFC_1_1Gdk_1_1Pixmap.html">Gdk::Pixmap</a> *pixmap, <a class="code" href="classGFC_1_1Gdk_1_1Bitmap.html">Gdk::Bitmap</a> *mask);
02227 
02228         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1057_7">drag_source_set_icon_pixbuf</a>(<a class="code" href="classGFC_1_1Gdk_1_1Pixbuf.html">Gdk::Pixbuf</a>&amp; pixbuf);
02233 
02234         <span class="keywordtype">void</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1057_8">drag_source_set_icon_stock</a>(<span class="keyword">const</span> <a class="code" href="classGFC_1_1Gtk_1_1StockId.html">StockId</a>&amp; stock_id);
02237 
02238         <span class="keywordtype">bool</span> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1057_9">drag_check_threshold</a>(<span class="keywordtype">int</span> start_x, <span class="keywordtype">int</span> start_y, <span class="keywordtype">int</span> current_x, <span class="keywordtype">int</span> current_y);
02247         
02251 
02252         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ShowSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_0">sig_show</a>();
02254 
02255         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">HideSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_1">sig_hide</a>();
02257 
02258         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">MapSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_2">sig_map</a>();
02260 
02261         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">UnmapSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_3">sig_unmap</a>();
02263 
02264         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">RealizeSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_4">sig_realize</a>();
02266 
02267         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">UnrealizeSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_5">sig_unrealize</a>();
02269 
02270         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SizeRequestSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_6">sig_size_request</a>();
02272 
02273         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SizeAllocateSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_7">sig_size_allocate</a>();
02275 
02276         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">StateChangedSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_8">sig_state_changed</a>();
02278 
02279         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ParentSetSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_9">sig_parent_set</a>();
02281 
02282         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">HierarchyChangedSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_10">sig_hierarchy_changed</a>();
02286 
02287         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">StyleSetSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_11">sig_style_set</a>();
02289 
02290         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DirectionChangedSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_12">sig_direction_changed</a>();
02293 
02294         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">GrabNotifySignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_13">sig_grab_notify</a>();
02297 
02298         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ChildNotifySignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_15">sig_child_notify</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *property_name = 0);
02299         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ChildNotifySignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_15">sig_child_notify</a>(<span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1String.html">String</a>&amp; property_name);
02307 
02308         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">MnemonicActivateSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_16">sig_mnemonic_activate</a>();
02311 
02312         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">GrabFocusSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_17">sig_grab_focus</a>();
02315 
02316         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">FocusSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_18">sig_focus</a>();
02319 
02320         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">AccelClosuresChangedSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_19">sig_accel_closures_changed</a>();
02324 
02325         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ScreenChangedSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_20">sig_screen_changed</a>();
02328 
02329         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">CanActivateAccelSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1058_21">sig_can_activate_accel</a>();
02332 
02336 
02337         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SelectionGetSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1059_0">sig_selection_get</a>();
02340 
02341         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SelectionReceivedSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1059_1">sig_selection_received</a>();
02344 
02348 
02349         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragBeginSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1060_0">sig_drag_begin</a>();
02353 
02354         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragEndSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1060_1">sig_drag_end</a>();
02357 
02358         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragDataGetSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1060_2">sig_drag_data_get</a>();
02364 
02365         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragDataDeleteSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1060_3">sig_drag_data_delete</a>();
02368 
02372 
02373         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragLeaveSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1061_0">sig_drag_leave</a>();
02377 
02378         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragMotionSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1061_1">sig_drag_motion</a>();
02394 
02395         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragDropSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1061_2">sig_drag_drop</a>();
02404 
02405         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DragDataReceivedSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1061_3">sig_drag_data_received</a>();
02417 
02421         
02422         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">EventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_0">sig_event</a>();
02424 
02425         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">EventAfterSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_1">sig_event_after</a>();
02428 
02429         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ButtonPressEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_2">sig_button_press_event</a>();
02431 
02432         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ButtonReleaseEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_3">sig_button_release_event</a>();
02434 
02435         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ScrollEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_4">sig_scroll_event</a>();
02437 
02438         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">MotionNotifyEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_5">sig_motion_notify_event</a>();
02440 
02441         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DeleteEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_6">sig_delete_event</a>();
02444 
02445         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">DestroyEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_7">sig_destroy_event</a>();
02447 
02448         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ExposeEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_8">sig_expose_event</a>();
02451 
02452         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">KeyPressEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_9">sig_key_press_event</a>();
02454 
02455         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">KeyReleaseEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_10">sig_key_release_event</a>();
02457 
02458         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">EnterNotifyEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_11">sig_enter_notify_event</a>();
02460 
02461         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">LeaveNotifyEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_12">sig_leave_notify_event</a>();
02463 
02464         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ConfigureEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_13">sig_configure_event</a>();
02467 
02468         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">FocusInEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_14">sig_focus_in_event</a>();
02471 
02472         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">FocusOutEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_15">sig_focus_out_event</a>();
02474 
02475         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">MapEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_16">sig_map_event</a>();
02478 
02479         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">UnmapEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_17">sig_unmap_event</a>();
02482 
02483         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">PropertyNotifyEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_18">sig_property_notify_event</a>();
02486 
02487         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SelectionClearEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_19">sig_selection_clear_event</a>();
02490 
02491         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SelectionRequestEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_20">sig_selection_request_event</a>();
02494 
02495         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">SelectionNotifyEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_21">sig_selection_notify_event</a>();
02497 
02498         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ProximityInEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_22">sig_proximity_in_event</a>();
02501 
02502         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ProximityOutEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_23">sig_proximity_out_event</a>();
02505 
02506         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">VisibilityNotifyEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_24">sig_visibility_notify_event</a>();
02509 
02510         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">ClientEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_25">sig_client_event</a>();
02513 
02514         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">NoExposeEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_26">sig_no_expose_event</a>();
02517 
02518         <span class="keyword">const</span> <a class="codeRef" doxygen="gfccore.tag:" href="classGFC_1_1G_1_1SignalProxy.html">WindowStateEventSignalProxy</a> <a class="code" href="classGFC_1_1Gtk_1_1Widget.html#z1062_27">sig_window_state_event</a>();
02521 
02523 };
02524 
02525 } <span class="comment">// namespace Gtk</span>
02526 
02527 } <span class="comment">// namespace GFC</span>
02528 
02529 <span class="preprocessor">#include &lt;gfc/gtk/inline/widget.inl&gt;</span>
02530 
02531 <span class="preprocessor">#endif // GFC_GTK_WIDGET_HH</span>
02532 <span class="preprocessor"></span>
</div></pre><hr size="1"><address style="align: right;"><small>Generated on Tue Aug 24 00:34:33 2004 for GFC-UI by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
</body>
</html>