File: classGtk_1_1ToolItemGroup.html

package info (click to toggle)
gtkmm2.4 1%3A2.20.3-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 73,860 kB
  • ctags: 20,553
  • sloc: xml: 79,575; sh: 10,120; cpp: 8,347; makefile: 290
file content (1016 lines) | stat: -rw-r--r-- 67,721 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>gtkmm: Gtk::ToolItemGroup Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
  <div class="tabs">
    <ul>
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="modules.html"><span>Modules</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
    </ul>
  </div>
  <div class="tabs">
    <ul>
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
  <div class="navpath"><a class="el" href="namespaceGtk.html">Gtk</a>::<a class="el" href="classGtk_1_1ToolItemGroup.html">ToolItemGroup</a>
  </div>
</div>
<div class="contents">
<h1>Gtk::ToolItemGroup Class Reference<br/>
<small>
[<a class="el" href="group__Widgets.html">Widgets</a>,&#160;<a class="el" href="group__Containers.html">Container Widgets</a>]</small>
</h1><!-- doxytag: class="Gtk::ToolItemGroup" --><!-- doxytag: inherits="Gtk::Container,Gtk::ToolShell" -->
<p>A <a class="el" href="classGtk_1_1ToolItemGroup.html" title="A ToolItemGroup is used together with ToolPalette to add ToolItems to a palette-like...">ToolItemGroup</a> is used together with <a class="el" href="classGtk_1_1ToolPalette.html" title="A ToolPalette allows you to add ToolItems to a palette-like container with various...">ToolPalette</a> to add ToolItems to a palette-like container with different categories and drag and drop support. <a href="#_details">More...</a></p>

<p>Inherits <a class="el" href="classGtk_1_1Container.html">Gtk::Container</a>, and <a class="el" href="classGtk_1_1ToolShell.html">Gtk::ToolShell</a>.</p>
<div class="dynheader">
Collaboration diagram for Gtk::ToolItemGroup:</div>
<div class="dynsection">
<div class="center"><img src="classGtk_1_1ToolItemGroup__coll__graph.png" border="0" usemap="#Gtk_1_1ToolItemGroup_coll__map" alt="Collaboration graph"/></div>
<map name="Gtk_1_1ToolItemGroup_coll__map" id="Gtk_1_1ToolItemGroup_coll__map">
<area shape="rect" href="classGtk_1_1Container.html" title="Abstract container class." alt="" coords="117,392,221,421"/><area shape="rect" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets)." alt="" coords="108,315,199,344"/><area shape="rect" href="classGtk_1_1Object.html" title="Gtk::Object is the base class for all widgets, and for a few non&#45;widget objects such..." alt="" coords="5,237,93,267"/><area shape="rect" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html" title="Glib::Object" alt="" coords="7,160,97,189"/><area shape="rect" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html" title="Glib::ObjectBase" alt="" coords="56,83,176,112"/><area shape="rect" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Interface.html" title="Glib::Interface" alt="" coords="125,160,229,189"/><area shape="rect" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="63,5,169,35"/><area shape="rect" href="classAtk_1_1Implementor.html" title="Atk::Implementor" alt="" coords="117,237,237,267"/><area shape="rect" href="classGtk_1_1ToolShell.html" title="A base class for containers containing ToolItem widgets." alt="" coords="223,315,327,344"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classGtk_1_1ToolItemGroup-members.html">List of all members.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a49dca6c6203ed3e44b7ed614add220e8">~ToolItemGroup</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GtkToolItemGroup*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#adc59f3915df433794375abd99b27c44d">gobj</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#adc59f3915df433794375abd99b27c44d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const GtkToolItemGroup*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#ae5bb466c43ca60911b219fd479723467">gobj</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#ae5bb466c43ca60911b219fd479723467"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a6563711e3ba6b52b1dd3ce85c7073608">ToolItemGroup</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; label=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a9440b0c663784932e4c2574db9b27b0d">set_label</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; label)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the label of the tool item group. <a href="#a9440b0c663784932e4c2574db9b27b0d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a0dfe4500014d93288339905889d3a45c">set_label_widget</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; label_widget)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the label of the tool item group. <a href="#a0dfe4500014d93288339905889d3a45c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#afe39d8bc5c9c517e61c5619ae4be961e">set_collapsed</a> (bool collapsed=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether the <em>group</em> should be collapsed or expanded. <a href="#afe39d8bc5c9c517e61c5619ae4be961e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a9e99aacf094de59155e3f827286b83f7">set_ellipsize</a> (<a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a> ellipsize)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the ellipsization mode which should be used by labels in <em>group</em>. <a href="#a9e99aacf094de59155e3f827286b83f7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a369cd712e086dc68ec63836e0198777d">set_header_relief</a> (<a class="el" href="group__gtkmmEnums.html#ga11df7b40133f3cd29b07bd87c969ff42">ReliefStyle</a> style)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the button relief of the group header. <a href="#a369cd712e086dc68ec63836e0198777d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#afd1024332f61723827c85ea6715fe9d3">get_label</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the label of <em>group</em>. <a href="#afd1024332f61723827c85ea6715fe9d3"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Widget.html">Widget</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a33e6d58d950bf4967630102e8a5e7c95">get_label_widget</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the label widget of <em>group</em>. <a href="#a33e6d58d950bf4967630102e8a5e7c95"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a9dc7ee98adfe11b533dbcd42e0d94267">get_label_widget</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the label widget of <em>group</em>. <a href="#a9dc7ee98adfe11b533dbcd42e0d94267"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a6c92d1a71eaf46acc5c2065d53d17c7c">get_collapsed</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets whether <em>group</em> is collapsed or expanded. <a href="#a6c92d1a71eaf46acc5c2065d53d17c7c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a0bdf236eef6a4f6b1c15a6d60a1d60fc">get_ellipsize</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the ellipsization mode of <em>group</em>. <a href="#a0bdf236eef6a4f6b1c15a6d60a1d60fc"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#ga11df7b40133f3cd29b07bd87c969ff42">ReliefStyle</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a45963a51ae4952d55fa946dc959a696e">get_header_relief</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the relief mode of the header button of <em>group</em>. <a href="#a45963a51ae4952d55fa946dc959a696e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#ae79f818f504f43c7987b57ac61fdc094">insert</a> (<a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>&amp; item, int position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Inserts <em>item</em> at <em>position</em> in the list of children of <em>group</em>. <a href="#ae79f818f504f43c7987b57ac61fdc094"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#ad4a35db8d8c3ef995ea44a51128daca6">insert</a> (<a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>&amp; item)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Inserts <em>item</em> at the end of the list of children of the group. <a href="#ad4a35db8d8c3ef995ea44a51128daca6"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a92c36a38b0b78a2ddbc8552876a14f37">set_item_position</a> (<a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>&amp; item, int position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the position of <em>item</em> in the list of children of <em>group</em>. <a href="#a92c36a38b0b78a2ddbc8552876a14f37"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a835bfe5b92e7dead5acf3bcc8084cfed">get_item_position</a> (const <a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>&amp; item) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the position of <em>item</em> in <em>group</em> as index. <a href="#a835bfe5b92e7dead5acf3bcc8084cfed"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">guint&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#ab2442e45955b7d5054741a6e2137f0a9">get_n_items</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the number of tool items in <em>group</em>. <a href="#ab2442e45955b7d5054741a6e2137f0a9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a51fc8fe4bbb788089885fe55788759be">get_nth_item</a> (guint index)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the tool item at <em>index</em> in group. <a href="#a51fc8fe4bbb788089885fe55788759be"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#ac0e158110f5fca3dec76120b0d298702">get_nth_item</a> (guint index) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the tool item at <em>index</em> in group. <a href="#ac0e158110f5fca3dec76120b0d298702"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a09d95a27c02245bc7265d05b5d9552d4">get_drop_item</a> (int x, int y)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the tool item at position (x, y). <a href="#a09d95a27c02245bc7265d05b5d9552d4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a9fef1a5b7d523061ce84a2d938379250">get_drop_item</a> (int x, int y) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the tool item at position (x, y). <a href="#a9fef1a5b7d523061ce84a2d938379250"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak"/>
&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#ab0c8bcfd8950bffc5ae02f336a5f2219">property_label</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The human-readable title of this item group. <a href="#ab0c8bcfd8950bffc5ae02f336a5f2219"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a563a1663bb06c03ed85b8873d61c1033">property_label</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The human-readable title of this item group. <a href="#a563a1663bb06c03ed85b8873d61c1033"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak"/>
&lt; <a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>* &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a3d78a0846c9ae322fe8bea4e092a5923">property_label_widget</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">A widget to display in place of the usual label. <a href="#a3d78a0846c9ae322fe8bea4e092a5923"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>* &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a110b3e5d10ba658153fef827f37b2b00">property_label_widget</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">A widget to display in place of the usual label. <a href="#a110b3e5d10ba658153fef827f37b2b00"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#ae3c257b5af958b823011ce40ff179540">property_collapsed</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Wether the group has been collapsed and items are hidden. <a href="#ae3c257b5af958b823011ce40ff179540"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a96a3e073509056fffdc7e3b83dcd8e48">property_collapsed</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Wether the group has been collapsed and items are hidden. <a href="#a96a3e073509056fffdc7e3b83dcd8e48"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak"/>
&lt; <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a4c23b1d7e637a4543ee329180ff6879b">property_ellipsize</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Ellipsize for item group headers. <a href="#a4c23b1d7e637a4543ee329180ff6879b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a4481aed5943a554b47f79b1ad77b2745">property_ellipsize</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Ellipsize for item group headers. <a href="#a4481aed5943a554b47f79b1ad77b2745"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="el" href="group__gtkmmEnums.html#ga11df7b40133f3cd29b07bd87c969ff42">ReliefStyle</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a760c59e2c194ee774bebbc5a7a12bb1e">property_header_relief</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Relief of the group header button. <a href="#a760c59e2c194ee774bebbc5a7a12bb1e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak"/>
&lt; <a class="el" href="group__gtkmmEnums.html#ga11df7b40133f3cd29b07bd87c969ff42">ReliefStyle</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a89dfa7fdaf6f51ff72a9ed7bbb6d11d9">property_header_relief</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Relief of the group header button. <a href="#a89dfa7fdaf6f51ff72a9ed7bbb6d11d9"></a><br/></td></tr>
<tr><td colspan="2"><h2>Related Functions</h2></td></tr>
<tr><td colspan="2"><p>(Note that these are not member functions.) </p>
<br/><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1ToolItemGroup.html">Gtk::ToolItemGroup</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItemGroup.html#a3a7a6943c1d5b4cc7c287e815d91d5b0">wrap</a> (GtkToolItemGroup* object, bool take_copy=false)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#a3a7a6943c1d5b4cc7c287e815d91d5b0"></a><br/></td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<p>A <a class="el" href="classGtk_1_1ToolItemGroup.html" title="A ToolItemGroup is used together with ToolPalette to add ToolItems to a palette-like...">ToolItemGroup</a> is used together with <a class="el" href="classGtk_1_1ToolPalette.html" title="A ToolPalette allows you to add ToolItems to a palette-like container with various...">ToolPalette</a> to add ToolItems to a palette-like container with different categories and drag and drop support. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000036">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a49dca6c6203ed3e44b7ed614add220e8"></a><!-- doxytag: member="Gtk::ToolItemGroup::~ToolItemGroup" ref="a49dca6c6203ed3e44b7ed614add220e8" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual Gtk::ToolItemGroup::~ToolItemGroup </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a6563711e3ba6b52b1dd3ce85c7073608"></a><!-- doxytag: member="Gtk::ToolItemGroup::ToolItemGroup" ref="a6563711e3ba6b52b1dd3ce85c7073608" args="(const Glib::ustring &amp;label=Glib::ustring())" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">Gtk::ToolItemGroup::ToolItemGroup </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"> <em>label</em> = <code><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()</code></td>
          <td>&#160;)&#160;</td>
          <td><code> [explicit]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a6c92d1a71eaf46acc5c2065d53d17c7c"></a><!-- doxytag: member="Gtk::ToolItemGroup::get_collapsed" ref="a6c92d1a71eaf46acc5c2065d53d17c7c" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::ToolItemGroup::get_collapsed </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets whether <em>group</em> is collapsed or expanded. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000045">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if <em>group</em> is collapsed, <code>false</code> if it is expanded. </dd></dl>

</div>
</div>
<a class="anchor" id="a9fef1a5b7d523061ce84a2d938379250"></a><!-- doxytag: member="Gtk::ToolItemGroup::get_drop_item" ref="a9fef1a5b7d523061ce84a2d938379250" args="(int x, int y) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>* Gtk::ToolItemGroup::get_drop_item </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>x</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>y</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the tool item at position (x, y). </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000055">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>x</em>&#160;</td><td>The x position. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>y</em>&#160;</td><td>The y position. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a> at position (x, y). </dd></dl>

</div>
</div>
<a class="anchor" id="a09d95a27c02245bc7265d05b5d9552d4"></a><!-- doxytag: member="Gtk::ToolItemGroup::get_drop_item" ref="a09d95a27c02245bc7265d05b5d9552d4" args="(int x, int y)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>* Gtk::ToolItemGroup::get_drop_item </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>x</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>y</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the tool item at position (x, y). </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000054">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>x</em>&#160;</td><td>The x position. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>y</em>&#160;</td><td>The y position. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a> at position (x, y). </dd></dl>

</div>
</div>
<a class="anchor" id="a0bdf236eef6a4f6b1c15a6d60a1d60fc"></a><!-- doxytag: member="Gtk::ToolItemGroup::get_ellipsize" ref="a0bdf236eef6a4f6b1c15a6d60a1d60fc" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a> Gtk::ToolItemGroup::get_ellipsize </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the ellipsization mode of <em>group</em>. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000046">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a> of <em>group</em>. </dd></dl>

</div>
</div>
<a class="anchor" id="a45963a51ae4952d55fa946dc959a696e"></a><!-- doxytag: member="Gtk::ToolItemGroup::get_header_relief" ref="a45963a51ae4952d55fa946dc959a696e" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__gtkmmEnums.html#ga11df7b40133f3cd29b07bd87c969ff42">ReliefStyle</a> Gtk::ToolItemGroup::get_header_relief </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the relief mode of the header button of <em>group</em>. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000047">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="el" href="group__gtkmmEnums.html#ga11df7b40133f3cd29b07bd87c969ff42">Gtk::ReliefStyle</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a835bfe5b92e7dead5acf3bcc8084cfed"></a><!-- doxytag: member="Gtk::ToolItemGroup::get_item_position" ref="a835bfe5b92e7dead5acf3bcc8084cfed" args="(const ToolItem &amp;item) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::ToolItemGroup::get_item_position </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>&amp;&#160;</td>
          <td class="paramname"> <em>item</em></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the position of <em>item</em> in <em>group</em> as index. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000050">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>item</em>&#160;</td><td>A <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The index of <em>item</em> in <em>group</em> or -1 if <em>item</em> is no child of <em>group</em>. </dd></dl>

</div>
</div>
<a class="anchor" id="afd1024332f61723827c85ea6715fe9d3"></a><!-- doxytag: member="Gtk::ToolItemGroup::get_label" ref="afd1024332f61723827c85ea6715fe9d3" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Gtk::ToolItemGroup::get_label </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the label of <em>group</em>. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000042">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The label of <em>group</em>. The label is an internal string of <em>group</em> and must not be modified. Note that <code>0</code> is returned if a custom label has been set with <a class="el" href="classGtk_1_1ToolItemGroup.html#a0dfe4500014d93288339905889d3a45c" title="Sets the label of the tool item group.">set_label_widget()</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a9dc7ee98adfe11b533dbcd42e0d94267"></a><!-- doxytag: member="Gtk::ToolItemGroup::get_label_widget" ref="a9dc7ee98adfe11b533dbcd42e0d94267" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::ToolItemGroup::get_label_widget </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the label widget of <em>group</em>. </p>
<p>See <a class="el" href="classGtk_1_1ToolItemGroup.html#a0dfe4500014d93288339905889d3a45c" title="Sets the label of the tool item group.">set_label_widget()</a>.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000044">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The label widget of <em>group</em>. </dd></dl>

</div>
</div>
<a class="anchor" id="a33e6d58d950bf4967630102e8a5e7c95"></a><!-- doxytag: member="Gtk::ToolItemGroup::get_label_widget" ref="a33e6d58d950bf4967630102e8a5e7c95" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::ToolItemGroup::get_label_widget </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the label widget of <em>group</em>. </p>
<p>See <a class="el" href="classGtk_1_1ToolItemGroup.html#a0dfe4500014d93288339905889d3a45c" title="Sets the label of the tool item group.">set_label_widget()</a>.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000043">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The label widget of <em>group</em>. </dd></dl>

</div>
</div>
<a class="anchor" id="ab2442e45955b7d5054741a6e2137f0a9"></a><!-- doxytag: member="Gtk::ToolItemGroup::get_n_items" ref="ab2442e45955b7d5054741a6e2137f0a9" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">guint Gtk::ToolItemGroup::get_n_items </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the number of tool items in <em>group</em>. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000051">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The number of tool items in <em>group</em>. </dd></dl>

</div>
</div>
<a class="anchor" id="ac0e158110f5fca3dec76120b0d298702"></a><!-- doxytag: member="Gtk::ToolItemGroup::get_nth_item" ref="ac0e158110f5fca3dec76120b0d298702" args="(guint index) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>* Gtk::ToolItemGroup::get_nth_item </td>
          <td>(</td>
          <td class="paramtype">guint&#160;</td>
          <td class="paramname"> <em>index</em></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the tool item at <em>index</em> in group. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000053">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>index</em>&#160;</td><td>The index. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a> at index. </dd></dl>

</div>
</div>
<a class="anchor" id="a51fc8fe4bbb788089885fe55788759be"></a><!-- doxytag: member="Gtk::ToolItemGroup::get_nth_item" ref="a51fc8fe4bbb788089885fe55788759be" args="(guint index)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>* Gtk::ToolItemGroup::get_nth_item </td>
          <td>(</td>
          <td class="paramtype">guint&#160;</td>
          <td class="paramname"> <em>index</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the tool item at <em>index</em> in group. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000052">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>index</em>&#160;</td><td>The index. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a> at index. </dd></dl>

</div>
</div>
<a class="anchor" id="ae5bb466c43ca60911b219fd479723467"></a><!-- doxytag: member="Gtk::ToolItemGroup::gobj" ref="ae5bb466c43ca60911b219fd479723467" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const GtkToolItemGroup* Gtk::ToolItemGroup::gobj </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const<code> [inline]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Provides access to the underlying C GtkObject. </p>

<p>Reimplemented from <a class="el" href="classGtk_1_1Container.html#ab80be58ac27710f10f329120587e7d60">Gtk::Container</a>.</p>

</div>
</div>
<a class="anchor" id="adc59f3915df433794375abd99b27c44d"></a><!-- doxytag: member="Gtk::ToolItemGroup::gobj" ref="adc59f3915df433794375abd99b27c44d" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">GtkToolItemGroup* Gtk::ToolItemGroup::gobj </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td><code> [inline]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Provides access to the underlying C GtkObject. </p>

<p>Reimplemented from <a class="el" href="classGtk_1_1Container.html#a1b45ff015f4b09b143699bad9d4e423d">Gtk::Container</a>.</p>

</div>
</div>
<a class="anchor" id="ad4a35db8d8c3ef995ea44a51128daca6"></a><!-- doxytag: member="Gtk::ToolItemGroup::insert" ref="ad4a35db8d8c3ef995ea44a51128daca6" args="(ToolItem &amp;item)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::ToolItemGroup::insert </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>&amp;&#160;</td>
          <td class="paramname"> <em>item</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Inserts <em>item</em> at the end of the list of children of the group. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>item</em>&#160;</td><td>The <a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a> to insert into the group. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ae79f818f504f43c7987b57ac61fdc094"></a><!-- doxytag: member="Gtk::ToolItemGroup::insert" ref="ae79f818f504f43c7987b57ac61fdc094" args="(ToolItem &amp;item, int position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::ToolItemGroup::insert </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>&amp;&#160;</td>
          <td class="paramname"> <em>item</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>position</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Inserts <em>item</em> at <em>position</em> in the list of children of <em>group</em>. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000048">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>item</em>&#160;</td><td>The <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a> to insert into <em>group</em>. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>position</em>&#160;</td><td>The position of <em>item</em> in <em>group</em>, starting with 0. The position -1 means end of list. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a96a3e073509056fffdc7e3b83dcd8e48"></a><!-- doxytag: member="Gtk::ToolItemGroup::property_collapsed" ref="a96a3e073509056fffdc7e3b83dcd8e48" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;bool&gt; Gtk::ToolItemGroup::property_collapsed </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Wether the group has been collapsed and items are hidden. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="ae3c257b5af958b823011ce40ff179540"></a><!-- doxytag: member="Gtk::ToolItemGroup::property_collapsed" ref="ae3c257b5af958b823011ce40ff179540" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;bool&gt; Gtk::ToolItemGroup::property_collapsed </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Wether the group has been collapsed and items are hidden. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a4481aed5943a554b47f79b1ad77b2745"></a><!-- doxytag: member="Gtk::ToolItemGroup::property_ellipsize" ref="a4481aed5943a554b47f79b1ad77b2745" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a>&gt; Gtk::ToolItemGroup::property_ellipsize </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Ellipsize for item group headers. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a4c23b1d7e637a4543ee329180ff6879b"></a><!-- doxytag: member="Gtk::ToolItemGroup::property_ellipsize" ref="a4c23b1d7e637a4543ee329180ff6879b" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a>&gt; Gtk::ToolItemGroup::property_ellipsize </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Ellipsize for item group headers. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a89dfa7fdaf6f51ff72a9ed7bbb6d11d9"></a><!-- doxytag: member="Gtk::ToolItemGroup::property_header_relief" ref="a89dfa7fdaf6f51ff72a9ed7bbb6d11d9" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a class="el" href="group__gtkmmEnums.html#ga11df7b40133f3cd29b07bd87c969ff42">ReliefStyle</a>&gt; Gtk::ToolItemGroup::property_header_relief </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Relief of the group header button. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a760c59e2c194ee774bebbc5a7a12bb1e"></a><!-- doxytag: member="Gtk::ToolItemGroup::property_header_relief" ref="a760c59e2c194ee774bebbc5a7a12bb1e" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a class="el" href="group__gtkmmEnums.html#ga11df7b40133f3cd29b07bd87c969ff42">ReliefStyle</a>&gt; Gtk::ToolItemGroup::property_header_relief </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Relief of the group header button. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a563a1663bb06c03ed85b8873d61c1033"></a><!-- doxytag: member="Gtk::ToolItemGroup::property_label" ref="a563a1663bb06c03ed85b8873d61c1033" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&gt; Gtk::ToolItemGroup::property_label </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The human-readable title of this item group. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="ab0c8bcfd8950bffc5ae02f336a5f2219"></a><!-- doxytag: member="Gtk::ToolItemGroup::property_label" ref="ab0c8bcfd8950bffc5ae02f336a5f2219" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&gt; Gtk::ToolItemGroup::property_label </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The human-readable title of this item group. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a110b3e5d10ba658153fef827f37b2b00"></a><!-- doxytag: member="Gtk::ToolItemGroup::property_label_widget" ref="a110b3e5d10ba658153fef827f37b2b00" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt;<a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>*&gt; Gtk::ToolItemGroup::property_label_widget </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>A widget to display in place of the usual label. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a3d78a0846c9ae322fe8bea4e092a5923"></a><!-- doxytag: member="Gtk::ToolItemGroup::property_label_widget" ref="a3d78a0846c9ae322fe8bea4e092a5923" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt;<a class="el" href="classGtk_1_1Widget.html">Gtk::Widget</a>*&gt; Gtk::ToolItemGroup::property_label_widget </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>A widget to display in place of the usual label. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="afe39d8bc5c9c517e61c5619ae4be961e"></a><!-- doxytag: member="Gtk::ToolItemGroup::set_collapsed" ref="afe39d8bc5c9c517e61c5619ae4be961e" args="(bool collapsed=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::ToolItemGroup::set_collapsed </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>collapsed</em> = <code>true</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets whether the <em>group</em> should be collapsed or expanded. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000039">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>collapsed</em>&#160;</td><td>Whether the <em>group</em> should be collapsed or expanded. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a9e99aacf094de59155e3f827286b83f7"></a><!-- doxytag: member="Gtk::ToolItemGroup::set_ellipsize" ref="a9e99aacf094de59155e3f827286b83f7" args="(Pango::EllipsizeMode ellipsize)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::ToolItemGroup::set_ellipsize </td>
          <td>(</td>
          <td class="paramtype"><a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a>&#160;</td>
          <td class="paramname"> <em>ellipsize</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the ellipsization mode which should be used by labels in <em>group</em>. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000040">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>ellipsize</em>&#160;</td><td>The <a class="elRef" doxygen="pangomm-1.4.tag:http://library.gnome.org/devel/pangomm/unstable/" href="http://library.gnome.org/devel/pangomm/unstable/group__pangommEnums.html#ga982cbecf0c4ee56766aab816a7f5ed0b">Pango::EllipsizeMode</a> labels in <em>group</em> should use. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a369cd712e086dc68ec63836e0198777d"></a><!-- doxytag: member="Gtk::ToolItemGroup::set_header_relief" ref="a369cd712e086dc68ec63836e0198777d" args="(ReliefStyle style)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::ToolItemGroup::set_header_relief </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga11df7b40133f3cd29b07bd87c969ff42">ReliefStyle</a>&#160;</td>
          <td class="paramname"> <em>style</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Set the button relief of the group header. </p>
<p>See <a class="el" href="classGtk_1_1Button.html#aaeee84797391945df559ebe1c0b88c1e">Gtk::Button::set_relief()</a> for details.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000041">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>style</em>&#160;</td><td>The <a class="el" href="group__gtkmmEnums.html#ga11df7b40133f3cd29b07bd87c969ff42">Gtk::ReliefStyle</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a92c36a38b0b78a2ddbc8552876a14f37"></a><!-- doxytag: member="Gtk::ToolItemGroup::set_item_position" ref="a92c36a38b0b78a2ddbc8552876a14f37" args="(ToolItem &amp;item, int position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::ToolItemGroup::set_item_position </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>&amp;&#160;</td>
          <td class="paramname"> <em>item</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>position</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the position of <em>item</em> in the list of children of <em>group</em>. </p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000049">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>item</em>&#160;</td><td>The <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a> to move to a new position, should be a child of <em>group</em>. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>position</em>&#160;</td><td>The new position of <em>item</em> in <em>group</em>, starting with 0. The position -1 means end of list. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a9440b0c663784932e4c2574db9b27b0d"></a><!-- doxytag: member="Gtk::ToolItemGroup::set_label" ref="a9440b0c663784932e4c2574db9b27b0d" args="(const Glib::ustring &amp;label)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::ToolItemGroup::set_label </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"> <em>label</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the label of the tool item group. </p>
<p>The label is displayed in the header of the group.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000037">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>label</em>&#160;</td><td>The new human-readable label of of the group. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a0dfe4500014d93288339905889d3a45c"></a><!-- doxytag: member="Gtk::ToolItemGroup::set_label_widget" ref="a0dfe4500014d93288339905889d3a45c" args="(Widget &amp;label_widget)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::ToolItemGroup::set_label_widget </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>label_widget</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the label of the tool item group. </p>
<p>The label widget is displayed in the header of the group, in place of the usual label.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000038">Since gtkmm 2.20:</a></b></dt><dd></dd></dl>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>label_widget</em>&#160;</td><td>The widget to be displayed in place of the usual label. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<hr/><h2>Friends And Related Function Documentation</h2>
<a class="anchor" id="a3a7a6943c1d5b4cc7c287e815d91d5b0"></a><!-- doxytag: member="Gtk::ToolItemGroup::wrap" ref="a3a7a6943c1d5b4cc7c287e815d91d5b0" args="(GtkToolItemGroup *object, bool take_copy=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1ToolItemGroup.html">Gtk::ToolItemGroup</a>* wrap </td>
          <td>(</td>
          <td class="paramtype">GtkToolItemGroup *&#160;</td>
          <td class="paramname"> <em>object</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>take_copy</em> = <code>false</code></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td><code> [related]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>object</em>&#160;</td><td>The C instance. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>take_copy</em>&#160;</td><td>False if the result should take ownership of the C instance. True if it should take a new copy or ref. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>A C++ instance that wraps this C instance. </dd></dl>

</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>gtkmm/toolitemgroup.h</li>
</ul>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on Tue May 4 13:22:05 2010 for gtkmm by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>