File: classGtk_1_1Notebook.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 (2780 lines) | stat: -rw-r--r-- 169,590 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
<!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::Notebook 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_1Notebook.html">Notebook</a>
  </div>
</div>
<div class="contents">
<h1>Gtk::Notebook 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::Notebook" --><!-- doxytag: inherits="Gtk::Container" -->
<p><a class="el" href="classGtk_1_1Container.html" title="Abstract container class.">Container</a> which shows one of its children at a time, in tabbed windows. <a href="#_details">More...</a></p>

<p>Inherits <a class="el" href="classGtk_1_1Container.html">Gtk::Container</a>.</p>
<div class="dynheader">
Collaboration diagram for Gtk::Notebook:</div>
<div class="dynsection">
<div class="center"><img src="classGtk_1_1Notebook__coll__graph.png" border="0" usemap="#Gtk_1_1Notebook_coll__map" alt="Collaboration graph"/></div>
<map name="Gtk_1_1Notebook_coll__map" id="Gtk_1_1Notebook_coll__map">
<area shape="rect" href="classGtk_1_1Container.html" title="Abstract container class." alt="" coords="61,392,165,421"/><area shape="rect" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets)." alt="" coords="68,315,159,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="5,160,96,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="51,83,171,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="123,160,227,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="57,5,164,35"/><area shape="rect" href="classAtk_1_1Implementor.html" title="Atk::Implementor" alt="" coords="117,237,237,267"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>

<p><a href="classGtk_1_1Notebook-members.html">List of all members.</a></p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td colspan="2"><h2>Public Types</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef <a class="el" href="classGtk_1_1Notebook__Helpers_1_1PageList.html">Notebook_Helpers::PageList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a475484a8d8ca5e1c01ece85c0505e5f2">PageList</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>&lt; <a class="el" href="classGtk_1_1Notebook.html">Notebook</a> <br class="typebreak"/>
*, <a class="el" href="classGtk_1_1Widget.html">Widget</a>*, int, int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a1b37edb1663a72d471341dccc8da9b8f">SlotWindowCreation</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">For instance, Notebook* on_window_creation(Widget* page, int x, int y);. <a href="#a1b37edb1663a72d471341dccc8da9b8f"></a><br/></td></tr>
<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_1Notebook.html#a654fd4f54b8c5adc18a7cc0f1cb9f5c5">~Notebook</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GtkNotebook*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#ac1990785090c73c43924d86d25a7035d">gobj</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#ac1990785090c73c43924d86d25a7035d"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const GtkNotebook*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a12ac78311484836a25dd5d16ca2b5214">gobj</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#a12ac78311484836a25dd5d16ca2b5214"></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_1Notebook.html#a246784cbd4db5dffabb109051364d079">Notebook</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a35e14985c7a8baa31ad3ba1fbba444f9">prepend_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; tab_label)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Prepends a page to <em>notebook</em>. <a href="#a35e14985c7a8baa31ad3ba1fbba444f9"></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_1Notebook.html#a643a072b9be70fffbcea106153128a4e">prepend_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a8ce64c87a2b0a7a3f82f847f7665e099">prepend_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, 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; tab_label, bool use_mnemonic=false)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#ad611194f11a92bcc92a43f976de21d1d">prepend_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; tab_label, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; menu_label)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Prepends a page to <em>notebook</em>, specifying the widget to use as the label in the popup menu. <a href="#ad611194f11a92bcc92a43f976de21d1d"></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_1Notebook.html#a3d0993a6d1ce5f2e540242d805d80993">prepend_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, 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; tab_label, 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; menu_label, bool use_mnemonic)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#af7bdf8ec9f703fb21aec6d372085f38a">append_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; tab_label)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Appends a page to <em>notebook</em>. <a href="#af7bdf8ec9f703fb21aec6d372085f38a"></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_1Notebook.html#ad30547e3efa79994a6faf08939dd33c5">append_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a8398c92414dd1e3e5709e33e2611914a">append_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, 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; tab_label, bool use_mnemonic=false)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a3a1f038ff9da250b46af4704e92ac16c">append_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; tab_label, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; menu_label)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Appends a page to <em>notebook</em>, specifying the widget to use as the label in the popup menu. <a href="#a3a1f038ff9da250b46af4704e92ac16c"></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_1Notebook.html#af3d22c96a66611a8c874c25521282101">append_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, 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; tab_label, 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; menu_label, bool use_mnemonic=false)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a3e12bc0a44aa1bb2adc34d95c251ebef">insert_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; tab_label, int position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Insert a page into <em>notebook</em> at the given position. <a href="#a3e12bc0a44aa1bb2adc34d95c251ebef"></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_1Notebook.html#acc6a124182c335fff1f92f25c91cb42a">insert_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, int position)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#aa691f645fb2e06163c505ae532e09bf5">insert_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, 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; tab_label, int position, bool use_mnemonic=false)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#aa7c7fb6c19a8dcd1cc0e6a4166cda824">insert_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; tab_label, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; menu_label, int position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Insert a page into <em>notebook</em> at the given position, specifying the widget to use as the label in the popup menu. <a href="#aa7c7fb6c19a8dcd1cc0e6a4166cda824"></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_1Notebook.html#ad6e61b655c32954bee24d11753d7acd7">insert_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, 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; tab_label, 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; menu_label, int position, bool use_mnemonic=false)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a657836baea599a7570241c47df89fe54">remove_page</a> (int page_num=0)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a page from the notebook given its index in the notebook. <a href="#a657836baea599a7570241c47df89fe54"></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_1Notebook.html#a14d7df8f1c31d5c6cd94f5ed30d323d2">remove_page</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a4a2b16092571bb24e0b6c8848c128088">set_group_id</a> (int group_id)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets an group identificator for <em>notebook</em>, notebooks sharing the same group identificator will be able to exchange tabs via drag and drop. <a href="#a4a2b16092571bb24e0b6c8848c128088"></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_1Notebook.html#abd5e7d5f181ffbbc9cf5a89510d3e8df">get_group_id</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the current group identificator for <em>notebook</em>. <a href="#abd5e7d5f181ffbbc9cf5a89510d3e8df"></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_1Notebook.html#a8da49c253961457931057abbe6218169">set_group</a> (void* group)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets a group identificator pointer for <em>notebook</em>, notebooks sharing the same group identificator pointer will be able to exchange tabs via drag and drop. <a href="#a8da49c253961457931057abbe6218169"></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_1Notebook.html#ac63b01e73d94bc07eafb0719d79cbd6e">get_group</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the current group identificator pointer for <em>notebook</em>. <a href="#ac63b01e73d94bc07eafb0719d79cbd6e"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const void*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#ae680bf82bc3254054c8fb8eae7168baa">get_group</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the current group identificator pointer for <em>notebook</em>. <a href="#ae680bf82bc3254054c8fb8eae7168baa"></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_1Notebook.html#af45cfad58e0d5ed998c551ede9015dff">get_current_page</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the page number of the current page. <a href="#af45cfad58e0d5ed998c551ede9015dff"></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_1Notebook.html#aee6987ef10d8e3afcc40824c53f4c1ad">get_nth_page</a> (int page_num)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the child widget contained in page number <em>page_num</em>. <a href="#aee6987ef10d8e3afcc40824c53f4c1ad"></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_1Notebook.html#ac39fdc06aee47a316a81305867a4613c">get_nth_page</a> (int page_num) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the child widget contained in page number <em>page_num</em>. <a href="#ac39fdc06aee47a316a81305867a4613c"></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_1Notebook.html#a50419a0bde1c5d4d4fe6124dd40c4462">get_n_pages</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the number of pages in a notebook. <a href="#a50419a0bde1c5d4d4fe6124dd40c4462"></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_1Notebook.html#a17edd5bef5671a5a884fc2545f7c0462">get_n_pages</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the number of pages in a notebook. <a href="#a17edd5bef5671a5a884fc2545f7c0462"></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_1Notebook.html#a7fc37088ba103763547e6c67796c011f">page_num</a> (const <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Finds the index of the page which contains the given child widget. <a href="#a7fc37088ba103763547e6c67796c011f"></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_1Notebook.html#aa2cdf2cc644073134bf18ab4edb17ecb">page_num</a> (const <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Finds the index of the page which contains the given child widget. <a href="#aa2cdf2cc644073134bf18ab4edb17ecb"></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_1Notebook.html#aabc5f384b314edfb07eed6fe878c6547">set_current_page</a> (int page_num)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Switches to the page number <em>page_num</em>. <a href="#aabc5f384b314edfb07eed6fe878c6547"></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_1Notebook.html#a541b764b5cfa4477603eee268729d448">next_page</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Switches to the next page. <a href="#a541b764b5cfa4477603eee268729d448"></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_1Notebook.html#aaa68ef247203cb6aa10f9a85bc788bfd">prev_page</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Switches to the previous page. <a href="#aaa68ef247203cb6aa10f9a85bc788bfd"></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_1Notebook.html#a808a962e182f89ab39e4c1ecceec809c">set_show_border</a> (bool show_border=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether a bevel will be drawn around the notebook pages. <a href="#a808a962e182f89ab39e4c1ecceec809c"></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_1Notebook.html#a2075d44fc57ecd7741747490772d8017">get_show_border</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns whether a bevel will be drawn around the notebook pages. <a href="#a2075d44fc57ecd7741747490772d8017"></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_1Notebook.html#a5647410e4057a608182381e90c0d6206">set_show_tabs</a> (bool show_tabs=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether to show the tabs for the notebook or not. <a href="#a5647410e4057a608182381e90c0d6206"></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_1Notebook.html#a5952ee70c14940bfba2d2f3e1f210636">get_show_tabs</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns whether the tabs of the notebook are shown. <a href="#a5952ee70c14940bfba2d2f3e1f210636"></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_1Notebook.html#abaaff5c44279de084923d72f67d47fec">set_tab_pos</a> (<a class="el" href="group__gtkmmEnums.html#ga3568edcd04af4a2cbd1eb0195513fe6b">PositionType</a> pos)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the edge at which the tabs for switching pages in the notebook are drawn. <a href="#abaaff5c44279de084923d72f67d47fec"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#ga3568edcd04af4a2cbd1eb0195513fe6b">PositionType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#acbb0eb43ee3fe93843c3b5624581602e">get_tab_pos</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the edge at which the tabs for switching pages in the notebook are drawn. <a href="#acbb0eb43ee3fe93843c3b5624581602e"></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_1Notebook.html#a630bc75ab021187d8a0f51af0088435a">set_scrollable</a> (bool scrollable=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether the tab label area will have arrows for scrolling if there are too many tabs to fit in the area. <a href="#a630bc75ab021187d8a0f51af0088435a"></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_1Notebook.html#a3cc754b00d9e48550ec5be5ca13c7c87">get_scrollable</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns whether the tab label area has arrows for scrolling. <a href="#a3cc754b00d9e48550ec5be5ca13c7c87"></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_1Notebook.html#ae3b10dd4426260c6241854429a6843cb">popup_enable</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Enables the popup menu: if the user clicks with the right mouse button on the tab labels, a menu with all the pages will be popped up. <a href="#ae3b10dd4426260c6241854429a6843cb"></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_1Notebook.html#a010a04440ca6d87344da201a4496dc9b">popup_disable</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Disables the popup menu. <a href="#a010a04440ca6d87344da201a4496dc9b"></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_1Notebook.html#ab590df63b394d2edb6b96e5d937928e7">get_tab_label</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the tab label widget for the page <em>child</em>. <a href="#ab590df63b394d2edb6b96e5d937928e7"></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_1Notebook.html#af490ae3ddf580c334242b6f2367fb36a">get_tab_label</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the tab label widget for the page <em>child</em>. <a href="#af490ae3ddf580c334242b6f2367fb36a"></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_1Notebook.html#a9cc1f87301aa22ca9dc14f86f29db6a4">set_tab_label</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; tab_label)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the tab label for <em>child</em>. <a href="#a9cc1f87301aa22ca9dc14f86f29db6a4"></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_1Notebook.html#a6bc59b5a0c766064caf86e9f8ea6958f">set_tab_label_text</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, 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; tab_text)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a new label and sets it as the tab label for the page containing <em>child</em>. <a href="#a6bc59b5a0c766064caf86e9f8ea6958f"></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_1Notebook.html#aaee174e90efa5a6f56370e2d45a255cf">get_tab_label_text</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the text of the tab label for the page containing <em>child</em>. <a href="#aaee174e90efa5a6f56370e2d45a255cf"></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_1Notebook.html#ab481a1f9a5389769a9eaee2cad5be20f">get_menu_label</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the menu label widget of the page containing <em>child</em>. <a href="#ab481a1f9a5389769a9eaee2cad5be20f"></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_1Notebook.html#a985cd44ebb5218714481d4f326184c9e">get_menu_label</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the menu label widget of the page containing <em>child</em>. <a href="#a985cd44ebb5218714481d4f326184c9e"></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_1Notebook.html#a82b0b3ee1e42962df6526d551ad2a8ff">set_menu_label</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; menu_label)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Changes the menu label for the page containing <em>child</em>. <a href="#a82b0b3ee1e42962df6526d551ad2a8ff"></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_1Notebook.html#a0e3bd8b532d0b719d0235a78bfea0aa0">set_menu_label_text</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, 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; menu_text)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a new label and sets it as the menu label of <em>child</em>. <a href="#a0e3bd8b532d0b719d0235a78bfea0aa0"></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_1Notebook.html#acfe491e1e01a5198b2966ba0ff14380d">get_menu_label_text</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the text of the menu label for the page containing <em>child</em>. <a href="#acfe491e1e01a5198b2966ba0ff14380d"></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_1Notebook.html#a8cea404ff5620d26de81ce63bec2c41f">query_tab_label_packing</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, bool&amp; expand, bool&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01161.html#gae3f9c9c748ac8e4b124a39bfd7adec40">fill</a>, <a class="el" href="group__gtkmmEnums.html#gafd31781c802e2887a7898b442780662d">PackType</a>&amp; pack_type)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a62b4d1e8335a8df5a05d3b089abf3a02">set_tab_label_packing</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, bool expand, bool <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01161.html#gae3f9c9c748ac8e4b124a39bfd7adec40">fill</a>, <a class="el" href="group__gtkmmEnums.html#gafd31781c802e2887a7898b442780662d">PackType</a> pack_type)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the packing parameters for the tab label of the page containing <em>child</em>. <a href="#a62b4d1e8335a8df5a05d3b089abf3a02"></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_1Notebook.html#ae4032dff09c516ed5e5e8aed1a54b5f1">reorder_child</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, int position)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Reorders the page containing <em>child</em>, so that it appears in position <em>position</em>. <a href="#ae4032dff09c516ed5e5e8aed1a54b5f1"></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_1Notebook.html#ae6a8a5e6efc38aa1d9824d919a814b44">get_tab_reorderable</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets whether the tab can be reordered via drag and drop or not. <a href="#ae6a8a5e6efc38aa1d9824d919a814b44"></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_1Notebook.html#a283f670166e6b40523a73483a69eb075">set_tab_reorderable</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, bool reorderable=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether the notebook tab can be reordered via drag and drop or not. <a href="#a283f670166e6b40523a73483a69eb075"></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_1Notebook.html#ae02ddaf28050195b7391fb6353420f60">get_tab_detachable</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child) const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns whether the tab contents can be detached from <em>notebook</em>. <a href="#ae02ddaf28050195b7391fb6353420f60"></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_1Notebook.html#a7b0555d623c2784dc45b5b3e6aa9c3e1">set_tab_detachable</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp; child, bool detachable=true)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets whether the tab can be detached from <em>notebook</em> to another notebook or widget. <a href="#a7b0555d623c2784dc45b5b3e6aa9c3e1"></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_1Notebook.html#a43e4c6450fa15d8e290c5ba78ca7b591">get_action_widget</a> (<a class="el" href="group__gtkmmEnums.html#gafd31781c802e2887a7898b442780662d">PackType</a> pack_type=PACK_START)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets one of the action widgets. <a href="#a43e4c6450fa15d8e290c5ba78ca7b591"></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_1Notebook.html#ad7bbc1f71ebddc1a8b0b5f298e7dd1c1">set_action_widget</a> (<a class="el" href="classGtk_1_1Widget.html">Widget</a>* widget, <a class="el" href="group__gtkmmEnums.html#gafd31781c802e2887a7898b442780662d">PackType</a> pack_type=PACK_START)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets <em>widget</em> as one of the action widgets. <a href="#ad7bbc1f71ebddc1a8b0b5f298e7dd1c1"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Notebook__Helpers_1_1PageIterator.html">PageList::iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#ae97d0078795417a1b6f86643590a8bbd">get_current</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1Notebook__Helpers_1_1PageList.html">PageList</a>&amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a6a14099d90a2179001b88f0a08132faa">pages</a> ()</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classGtk_1_1Notebook__Helpers_1_1PageList.html">PageList</a>&amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#aea78704b42407487c313439f1b05a944">pages</a> () const </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_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void, <br class="typebreak"/>
GtkNotebookPage*, guint &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a403ba7849e0cc2702c816c5f08534f15">signal_switch_page</a> ()</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_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void, <br class="typebreak"/>
<a class="el" href="classGtk_1_1Widget.html">Widget</a>*, guint &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a49c1bd4330a4ab1a78c932e678d48427">signal_page_reordered</a> ()</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_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void, <br class="typebreak"/>
<a class="el" href="classGtk_1_1Widget.html">Widget</a>*, guint &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a30326f0c4ed4b6b27361caaa18d33f70">signal_page_removed</a> ()</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_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void, <br class="typebreak"/>
<a class="el" href="classGtk_1_1Widget.html">Widget</a>*, guint &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a8876e8968e2d6efe73cd04313ba76891">signal_page_added</a> ()</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#ga3568edcd04af4a2cbd1eb0195513fe6b">PositionType</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a94dbe360e0e41261582c20b15e257259">property_tab_pos</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Which side of the notebook holds the tabs. <a href="#a94dbe360e0e41261582c20b15e257259"></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#ga3568edcd04af4a2cbd1eb0195513fe6b">PositionType</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a71e5f1c8cb3c99b7a945247eaf3d635e">property_tab_pos</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Which side of the notebook holds the tabs. <a href="#a71e5f1c8cb3c99b7a945247eaf3d635e"></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_1Notebook.html#a70f9d9260af3c9ed4b6644e103c6249f">property_show_tabs</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether tabs should be shown or not. <a href="#a70f9d9260af3c9ed4b6644e103c6249f"></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_1Notebook.html#a70489d2789fd3c66fda196201c4b004b">property_show_tabs</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether tabs should be shown or not. <a href="#a70489d2789fd3c66fda196201c4b004b"></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_1Notebook.html#aa882d32d4a9bd02daaf5c5ac02c8ab15">property_show_border</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether the border should be shown or not. <a href="#aa882d32d4a9bd02daaf5c5ac02c8ab15"></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_1Notebook.html#ad0027e0f54e581b40378199b2a05a276">property_show_border</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether the border should be shown or not. <a href="#ad0027e0f54e581b40378199b2a05a276"></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_1Notebook.html#adadf44949dc73ba9ecc6f31194331b5b">property_scrollable</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If TRUE. <a href="#adadf44949dc73ba9ecc6f31194331b5b"></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_1Notebook.html#ae04b5d0ea84cf47c3bf584d071f6b437">property_scrollable</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If TRUE. <a href="#ae04b5d0ea84cf47c3bf584d071f6b437"></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__WriteOnly.html">Glib::PropertyProxy_WriteOnly</a><br class="typebreak"/>
&lt; guint &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a458f77601c67576a59eaa8377d181d5c">property_tab_border</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Width of the border around the tab labels. <a href="#a458f77601c67576a59eaa8377d181d5c"></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; guint &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#afa39d28939f0108ef2f91f9b0bdee9ff">property_tab_hborder</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Width of the horizontal border of tab labels. <a href="#afa39d28939f0108ef2f91f9b0bdee9ff"></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; guint &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a0131c35c0ff46cc4b030cec4ceb29ed1">property_tab_hborder</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Width of the horizontal border of tab labels. <a href="#a0131c35c0ff46cc4b030cec4ceb29ed1"></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; guint &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a623686d2696f09d53c5f50c20dfbc2fb">property_tab_vborder</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Width of the vertical border of tab labels. <a href="#a623686d2696f09d53c5f50c20dfbc2fb"></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; guint &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a97e22c219495097c6517550933da711f">property_tab_vborder</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Width of the vertical border of tab labels. <a href="#a97e22c219495097c6517550933da711f"></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; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a4b84ce79f71a99a81a55cfdbfce4335b">property_page</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The index of the current page. <a href="#a4b84ce79f71a99a81a55cfdbfce4335b"></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>&lt; int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a7aa7943420ac3ad85e6063a27230f91b">property_page</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">The index of the current page. <a href="#a7aa7943420ac3ad85e6063a27230f91b"></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_1Notebook.html#a26ead75a3f982a3232273ce940d15765">property_enable_popup</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If TRUE. <a href="#a26ead75a3f982a3232273ce940d15765"></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_1Notebook.html#acdeb51d12959a0b7a72cf137379dd312">property_enable_popup</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">If TRUE. <a href="#acdeb51d12959a0b7a72cf137379dd312"></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_1Notebook.html#a49a9c6bb99ad175c82104a3274c98bf0">property_homogeneous</a> ()</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether tabs should have homogeneous sizes. <a href="#a49a9c6bb99ad175c82104a3274c98bf0"></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_1Notebook.html#afb4324c03b803a232312e232d6b6510f">property_homogeneous</a> () const </td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether tabs should have homogeneous sizes. <a href="#afb4324c03b803a232312e232d6b6510f"></a><br/></td></tr>
<tr><td colspan="2"><h2>Static Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#aaa7a4dabcd0ed602eb9478561c976160">set_window_creation_hook</a> (const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">SlotWindowCreation</a>&amp; slot)</td></tr>
<tr><td colspan="2"><h2>Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a7cc8e7948c3dc7eff761f4f9f0963f2c">on_switch_page</a> (GtkNotebookPage* page, guint page_num)</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_1Notebook.html">Gtk::Notebook</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1Notebook.html#a1ef95b6a13995a2ca58c44673967287d">wrap</a> (GtkNotebook* 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="#a1ef95b6a13995a2ca58c44673967287d"></a><br/></td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<p><a class="el" href="classGtk_1_1Container.html" title="Abstract container class.">Container</a> which shows one of its children at a time, in tabbed windows. </p>
<p>The <a class="el" href="classGtk_1_1Notebook.html" title="Container which shows one of its children at a time, in tabbed windows.">Gtk::Notebook</a> widget is a <a class="el" href="classGtk_1_1Container.html" title="Abstract container class.">Gtk::Container</a> whose children are pages that can be switched between using tab labels along one edge.</p>
<p>You can use the PageList returned by <a class="el" href="classGtk_1_1Notebook.html#a6a14099d90a2179001b88f0a08132faa">pages()</a> as any normal STL container to manipulate the pages.</p>
<p>A <a class="el" href="classGtk_1_1Notebook.html" title="Container which shows one of its children at a time, in tabbed windows.">Notebook</a> widget looks like this: </p>
<div align="center">
<img src="notebook1.png" alt="notebook1.png"/>
</div>
 <hr/><h2>Member Typedef Documentation</h2>
<a class="anchor" id="a475484a8d8ca5e1c01ece85c0505e5f2"></a><!-- doxytag: member="Gtk::Notebook::PageList" ref="a475484a8d8ca5e1c01ece85c0505e5f2" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">typedef <a class="el" href="classGtk_1_1Notebook__Helpers_1_1PageList.html">Notebook_Helpers::PageList</a> <a class="el" href="classGtk_1_1Notebook__Helpers_1_1PageList.html">Gtk::Notebook::PageList</a></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a1b37edb1663a72d471341dccc8da9b8f"></a><!-- doxytag: member="Gtk::Notebook::SlotWindowCreation" ref="a1b37edb1663a72d471341dccc8da9b8f" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">typedef <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>&lt;<a class="el" href="classGtk_1_1Notebook.html">Notebook</a>*, <a class="el" href="classGtk_1_1Widget.html">Widget</a>*, int, int&gt; <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">Gtk::Notebook::SlotWindowCreation</a></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>For instance, Notebook* on_window_creation(Widget* page, int x, int y);. </p>

</div>
</div>
<hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a654fd4f54b8c5adc18a7cc0f1cb9f5c5"></a><!-- doxytag: member="Gtk::Notebook::~Notebook" ref="a654fd4f54b8c5adc18a7cc0f1cb9f5c5" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual Gtk::Notebook::~Notebook </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="a246784cbd4db5dffabb109051364d079"></a><!-- doxytag: member="Gtk::Notebook::Notebook" ref="a246784cbd4db5dffabb109051364d079" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">Gtk::Notebook::Notebook </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="af3d22c96a66611a8c874c25521282101"></a><!-- doxytag: member="Gtk::Notebook::append_page" ref="af3d22c96a66611a8c874c25521282101" args="(Widget &amp;child, const Glib::ustring &amp;tab_label, const Glib::ustring &amp;menu_label, bool use_mnemonic=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::append_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>tab_label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>menu_label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>use_mnemonic</em> = <code>false</code></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a3a1f038ff9da250b46af4704e92ac16c"></a><!-- doxytag: member="Gtk::Notebook::append_page" ref="a3a1f038ff9da250b46af4704e92ac16c" args="(Widget &amp;child, Widget &amp;tab_label, Widget &amp;menu_label)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::append_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>tab_label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>menu_label</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Appends a page to <em>notebook</em>, specifying the widget to use as the label in the popup menu. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a> to use as the contents of the page. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>tab_label</em>&#160;</td><td>The <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a> to be used as the label for the page. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>menu_label</em>&#160;</td><td>The widget to use as a label for the page-switch menu. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a8398c92414dd1e3e5709e33e2611914a"></a><!-- doxytag: member="Gtk::Notebook::append_page" ref="a8398c92414dd1e3e5709e33e2611914a" args="(Widget &amp;child, const Glib::ustring &amp;tab_label, bool use_mnemonic=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::append_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>tab_label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>use_mnemonic</em> = <code>false</code></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

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

</div>
</div>
<a class="anchor" id="af7bdf8ec9f703fb21aec6d372085f38a"></a><!-- doxytag: member="Gtk::Notebook::append_page" ref="af7bdf8ec9f703fb21aec6d372085f38a" args="(Widget &amp;child, Widget &amp;tab_label)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::append_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>tab_label</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Appends a page to <em>notebook</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a> to use as the contents of the page. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>tab_label</em>&#160;</td><td>The <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a> to be used as the label for the page. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a43e4c6450fa15d8e290c5ba78ca7b591"></a><!-- doxytag: member="Gtk::Notebook::get_action_widget" ref="a43e4c6450fa15d8e290c5ba78ca7b591" args="(PackType pack_type=PACK_START)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::Notebook::get_action_widget </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#gafd31781c802e2887a7898b442780662d">PackType</a>&#160;</td>
          <td class="paramname"> <em>pack_type</em> = <code>PACK_START</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets one of the action widgets. </p>
<p>See <a class="el" href="classGtk_1_1Notebook.html#ad7bbc1f71ebddc1a8b0b5f298e7dd1c1" title="Sets widget as one of the action widgets.">set_action_widget()</a>.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000010">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>pack_type</em>&#160;</td><td>Pack type of the action widget to receive. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The action widget with the given <em>pack_type</em> or <code>0</code> when this action widget has not been set. </dd></dl>

</div>
</div>
<a class="anchor" id="ae97d0078795417a1b6f86643590a8bbd"></a><!-- doxytag: member="Gtk::Notebook::get_current" ref="ae97d0078795417a1b6f86643590a8bbd" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Notebook__Helpers_1_1PageIterator.html">PageList::iterator</a> Gtk::Notebook::get_current </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

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

<p>Returns the page number of the current page. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The index (starting from 0) of the current page in the notebook. If the notebook has no pages, then -1 will be returned. </dd></dl>

</div>
</div>
<a class="anchor" id="ae680bf82bc3254054c8fb8eae7168baa"></a><!-- doxytag: member="Gtk::Notebook::get_group" ref="ae680bf82bc3254054c8fb8eae7168baa" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const void* Gtk::Notebook::get_group </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the current group identificator pointer for <em>notebook</em>. </p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000054">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The group identificator, or <code>0</code> if none is set. </dd></dl>

</div>
</div>
<a class="anchor" id="ac63b01e73d94bc07eafb0719d79cbd6e"></a><!-- doxytag: member="Gtk::Notebook::get_group" ref="ac63b01e73d94bc07eafb0719d79cbd6e" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void* Gtk::Notebook::get_group </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the current group identificator pointer for <em>notebook</em>. </p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000053">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The group identificator, or <code>0</code> if none is set. </dd></dl>

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

<p>Gets the current group identificator for <em>notebook</em>. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000071">Since gtkmm 2.10:</a></b></dt><dd>Deprecated: 2.12: use <a class="el" href="classGtk_1_1Notebook.html#ac63b01e73d94bc07eafb0719d79cbd6e" title="Gets the current group identificator pointer for notebook.">get_group()</a> instead. </dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The group identificator, or -1 if none is set. </dd></dl>

</div>
</div>
<a class="anchor" id="a985cd44ebb5218714481d4f326184c9e"></a><!-- doxytag: member="Gtk::Notebook::get_menu_label" ref="a985cd44ebb5218714481d4f326184c9e" args="(Widget &amp;child) 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::Notebook::get_menu_label </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the menu label widget of the page containing <em>child</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>A widget contained in a page of <em>notebook</em>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The menu label, or <code>0</code> if the notebook page does not have a menu label other than the default (the tab label). </dd></dl>

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

<p>Retrieves the menu label widget of the page containing <em>child</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>A widget contained in a page of <em>notebook</em>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The menu label, or <code>0</code> if the notebook page does not have a menu label other than the default (the tab label). </dd></dl>

</div>
</div>
<a class="anchor" id="acfe491e1e01a5198b2966ba0ff14380d"></a><!-- doxytag: member="Gtk::Notebook::get_menu_label_text" ref="acfe491e1e01a5198b2966ba0ff14380d" args="(Widget &amp;child) 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::Notebook::get_menu_label_text </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the text of the menu label for the page containing <em>child</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The child widget of a page of the notebook. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Value: the text of the tab label. </dd></dl>

</div>
</div>
<a class="anchor" id="a17edd5bef5671a5a884fc2545f7c0462"></a><!-- doxytag: member="Gtk::Notebook::get_n_pages" ref="a17edd5bef5671a5a884fc2545f7c0462" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::get_n_pages </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 pages in a notebook. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000102">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The number of pages in the notebook. </dd></dl>

</div>
</div>
<a class="anchor" id="a50419a0bde1c5d4d4fe6124dd40c4462"></a><!-- doxytag: member="Gtk::Notebook::get_n_pages" ref="a50419a0bde1c5d4d4fe6124dd40c4462" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::get_n_pages </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the number of pages in a notebook. </p>
<dl class="since_2_2"><dt><b><a class="el" href="since_2_2.html#_since_2_2000101">Since gtkmm 2.2:</a></b></dt><dd></dd></dl>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000041">Deprecated:</a></b></dt><dd>Use the const method. </dd></dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The number of pages in the notebook. </dd></dl>

</div>
</div>
<a class="anchor" id="ac39fdc06aee47a316a81305867a4613c"></a><!-- doxytag: member="Gtk::Notebook::get_nth_page" ref="ac39fdc06aee47a316a81305867a4613c" args="(int page_num) 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::Notebook::get_nth_page </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>page_num</em></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the child widget contained in page number <em>page_num</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>page_num</em>&#160;</td><td>The index of a page in the notebook, or -1 to get the last page. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The child widget, or <code>0</code> if <em>page_num</em> is out of bounds. </dd></dl>

</div>
</div>
<a class="anchor" id="aee6987ef10d8e3afcc40824c53f4c1ad"></a><!-- doxytag: member="Gtk::Notebook::get_nth_page" ref="aee6987ef10d8e3afcc40824c53f4c1ad" args="(int page_num)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::Notebook::get_nth_page </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>page_num</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the child widget contained in page number <em>page_num</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>page_num</em>&#160;</td><td>The index of a page in the notebook, or -1 to get the last page. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The child widget, or <code>0</code> if <em>page_num</em> is out of bounds. </dd></dl>

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

<p>Returns whether the tab label area has arrows for scrolling. </p>
<p>See <a class="el" href="classGtk_1_1Notebook.html#a630bc75ab021187d8a0f51af0088435a" title="Sets whether the tab label area will have arrows for scrolling if there are too many...">set_scrollable()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if arrows for scrolling are present. </dd></dl>

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

<p>Returns whether a bevel will be drawn around the notebook pages. </p>
<p>See <a class="el" href="classGtk_1_1Notebook.html#a808a962e182f89ab39e4c1ecceec809c" title="Sets whether a bevel will be drawn around the notebook pages.">set_show_border()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the bevel is drawn. </dd></dl>

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

<p>Returns whether the tabs of the notebook are shown. </p>
<p>See <a class="el" href="classGtk_1_1Notebook.html#a5647410e4057a608182381e90c0d6206" title="Sets whether to show the tabs for the notebook or not.">set_show_tabs()</a>. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the tabs are shown. </dd></dl>

</div>
</div>
<a class="anchor" id="ae02ddaf28050195b7391fb6353420f60"></a><!-- doxytag: member="Gtk::Notebook::get_tab_detachable" ref="ae02ddaf28050195b7391fb6353420f60" args="(Widget &amp;child) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Notebook::get_tab_detachable </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns whether the tab contents can be detached from <em>notebook</em>. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000074">Since gtkmm 2.10:</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>child</em>&#160;</td><td>A child <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the tab is detachable. </dd></dl>

</div>
</div>
<a class="anchor" id="af490ae3ddf580c334242b6f2367fb36a"></a><!-- doxytag: member="Gtk::Notebook::get_tab_label" ref="af490ae3ddf580c334242b6f2367fb36a" args="(Widget &amp;child) 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::Notebook::get_tab_label </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Returns the tab label widget for the page <em>child</em>. </p>
<p><code>0</code> is returned if <em>child</em> is not in <em>notebook</em> or if no tab label has specifically been set for <em>child</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The page. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The tab label. </dd></dl>

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

<p>Returns the tab label widget for the page <em>child</em>. </p>
<p><code>0</code> is returned if <em>child</em> is not in <em>notebook</em> or if no tab label has specifically been set for <em>child</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The page. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The tab label. </dd></dl>

</div>
</div>
<a class="anchor" id="aaee174e90efa5a6f56370e2d45a255cf"></a><!-- doxytag: member="Gtk::Notebook::get_tab_label_text" ref="aaee174e90efa5a6f56370e2d45a255cf" args="(Widget &amp;child) 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::Notebook::get_tab_label_text </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Retrieves the text of the tab label for the page containing <em>child</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>A widget contained in a page of <em>notebook</em>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>Value: the text of the tab label. </dd></dl>

</div>
</div>
<a class="anchor" id="acbb0eb43ee3fe93843c3b5624581602e"></a><!-- doxytag: member="Gtk::Notebook::get_tab_pos" ref="acbb0eb43ee3fe93843c3b5624581602e" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="group__gtkmmEnums.html#ga3568edcd04af4a2cbd1eb0195513fe6b">PositionType</a> Gtk::Notebook::get_tab_pos </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets the edge at which the tabs for switching pages in the notebook are drawn. </p>
<dl class="return"><dt><b>Returns:</b></dt><dd>The edge at which the tabs are drawn. </dd></dl>

</div>
</div>
<a class="anchor" id="ae6a8a5e6efc38aa1d9824d919a814b44"></a><!-- doxytag: member="Gtk::Notebook::get_tab_reorderable" ref="ae6a8a5e6efc38aa1d9824d919a814b44" args="(Widget &amp;child) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gtk::Notebook::get_tab_reorderable </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Gets whether the tab can be reordered via drag and drop or not. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000072">Since gtkmm 2.10:</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>child</em>&#160;</td><td>A child <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd><code>true</code> if the tab is reorderable. </dd></dl>

</div>
</div>
<a class="anchor" id="a12ac78311484836a25dd5d16ca2b5214"></a><!-- doxytag: member="Gtk::Notebook::gobj" ref="a12ac78311484836a25dd5d16ca2b5214" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const GtkNotebook* Gtk::Notebook::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="ac1990785090c73c43924d86d25a7035d"></a><!-- doxytag: member="Gtk::Notebook::gobj" ref="ac1990785090c73c43924d86d25a7035d" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">GtkNotebook* Gtk::Notebook::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="ad6e61b655c32954bee24d11753d7acd7"></a><!-- doxytag: member="Gtk::Notebook::insert_page" ref="ad6e61b655c32954bee24d11753d7acd7" args="(Widget &amp;child, const Glib::ustring &amp;tab_label, const Glib::ustring &amp;menu_label, int position, bool use_mnemonic=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::insert_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>tab_label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>menu_label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>position</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>use_mnemonic</em> = <code>false</code></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="aa7c7fb6c19a8dcd1cc0e6a4166cda824"></a><!-- doxytag: member="Gtk::Notebook::insert_page" ref="aa7c7fb6c19a8dcd1cc0e6a4166cda824" args="(Widget &amp;child, Widget &amp;tab_label, Widget &amp;menu_label, int position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::insert_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>tab_label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>menu_label</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>Insert a page into <em>notebook</em> at the given position, specifying the widget to use as the label in the popup menu. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a> to use as the contents of the page. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>tab_label</em>&#160;</td><td>The <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a> to be used as the label for the page.. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>menu_label</em>&#160;</td><td>The widget to use as a label for the page-switch menu. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>position</em>&#160;</td><td>The index (starting at 0) at which to insert the page, or -1 to append the page after all other pages. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aa691f645fb2e06163c505ae532e09bf5"></a><!-- doxytag: member="Gtk::Notebook::insert_page" ref="aa691f645fb2e06163c505ae532e09bf5" args="(Widget &amp;child, const Glib::ustring &amp;tab_label, int position, bool use_mnemonic=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::insert_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>tab_label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>position</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>use_mnemonic</em> = <code>false</code></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="acc6a124182c335fff1f92f25c91cb42a"></a><!-- doxytag: member="Gtk::Notebook::insert_page" ref="acc6a124182c335fff1f92f25c91cb42a" args="(Widget &amp;child, int position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::insert_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</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">

</div>
</div>
<a class="anchor" id="a3e12bc0a44aa1bb2adc34d95c251ebef"></a><!-- doxytag: member="Gtk::Notebook::insert_page" ref="a3e12bc0a44aa1bb2adc34d95c251ebef" args="(Widget &amp;child, Widget &amp;tab_label, int position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::insert_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>tab_label</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>Insert a page into <em>notebook</em> at the given position. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a> to use as the contents of the page. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>tab_label</em>&#160;</td><td>The <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a> to be used as the label for the page. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>position</em>&#160;</td><td>The index (starting at 0) at which to insert the page, or -1 to append the page after all other pages. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a541b764b5cfa4477603eee268729d448"></a><!-- doxytag: member="Gtk::Notebook::next_page" ref="a541b764b5cfa4477603eee268729d448" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::next_page </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Switches to the next page. </p>
<p>Nothing happens if the current page is the last page. </p>

</div>
</div>
<a class="anchor" id="a7cc8e7948c3dc7eff761f4f9f0963f2c"></a><!-- doxytag: member="Gtk::Notebook::on_switch_page" ref="a7cc8e7948c3dc7eff761f4f9f0963f2c" args="(GtkNotebookPage *page, guint page_num)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gtk::Notebook::on_switch_page </td>
          <td>(</td>
          <td class="paramtype">GtkNotebookPage *&#160;</td>
          <td class="paramname"> <em>page</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">guint&#160;</td>
          <td class="paramname"> <em>page_num</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="aa2cdf2cc644073134bf18ab4edb17ecb"></a><!-- doxytag: member="Gtk::Notebook::page_num" ref="aa2cdf2cc644073134bf18ab4edb17ecb" args="(const Widget &amp;child) const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::page_num </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Finds the index of the page which contains the given child widget. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>A <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The index of the page containing <em>child</em>, or -1 if <em>child</em> is not in the notebook. </dd></dl>

</div>
</div>
<a class="anchor" id="a7fc37088ba103763547e6c67796c011f"></a><!-- doxytag: member="Gtk::Notebook::page_num" ref="a7fc37088ba103763547e6c67796c011f" args="(const Widget &amp;child)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::page_num </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Finds the index of the page which contains the given child widget. </p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000042">Deprecated:</a></b></dt><dd>Use the const method. </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>child</em>&#160;</td><td>A <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="return"><dt><b>Returns:</b></dt><dd>The index of the page containing <em>child</em>, or -1 if <em>child</em> is not in the notebook. </dd></dl>

</div>
</div>
<a class="anchor" id="aea78704b42407487c313439f1b05a944"></a><!-- doxytag: member="Gtk::Notebook::pages" ref="aea78704b42407487c313439f1b05a944" args="() const " -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classGtk_1_1Notebook__Helpers_1_1PageList.html">PageList</a>&amp; Gtk::Notebook::pages </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a6a14099d90a2179001b88f0a08132faa"></a><!-- doxytag: member="Gtk::Notebook::pages" ref="a6a14099d90a2179001b88f0a08132faa" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Notebook__Helpers_1_1PageList.html">PageList</a>&amp; Gtk::Notebook::pages </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a010a04440ca6d87344da201a4496dc9b"></a><!-- doxytag: member="Gtk::Notebook::popup_disable" ref="a010a04440ca6d87344da201a4496dc9b" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::popup_disable </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Disables the popup menu. </p>

</div>
</div>
<a class="anchor" id="ae3b10dd4426260c6241854429a6843cb"></a><!-- doxytag: member="Gtk::Notebook::popup_enable" ref="ae3b10dd4426260c6241854429a6843cb" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::popup_enable </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Enables the popup menu: if the user clicks with the right mouse button on the tab labels, a menu with all the pages will be popped up. </p>

</div>
</div>
<a class="anchor" id="a3d0993a6d1ce5f2e540242d805d80993"></a><!-- doxytag: member="Gtk::Notebook::prepend_page" ref="a3d0993a6d1ce5f2e540242d805d80993" args="(Widget &amp;child, const Glib::ustring &amp;tab_label, const Glib::ustring &amp;menu_label, bool use_mnemonic)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::prepend_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>tab_label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>menu_label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>use_mnemonic</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="ad611194f11a92bcc92a43f976de21d1d"></a><!-- doxytag: member="Gtk::Notebook::prepend_page" ref="ad611194f11a92bcc92a43f976de21d1d" args="(Widget &amp;child, Widget &amp;tab_label, Widget &amp;menu_label)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::prepend_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>tab_label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>menu_label</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Prepends a page to <em>notebook</em>, specifying the widget to use as the label in the popup menu. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a> to use as the contents of the page. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>tab_label</em>&#160;</td><td>The <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a> to be used as the label for the page. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>menu_label</em>&#160;</td><td>The widget to use as a label for the page-switch menu. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a8ce64c87a2b0a7a3f82f847f7665e099"></a><!-- doxytag: member="Gtk::Notebook::prepend_page" ref="a8ce64c87a2b0a7a3f82f847f7665e099" args="(Widget &amp;child, const Glib::ustring &amp;tab_label, bool use_mnemonic=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::prepend_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>tab_label</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>use_mnemonic</em> = <code>false</code></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

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

</div>
</div>
<a class="anchor" id="a35e14985c7a8baa31ad3ba1fbba444f9"></a><!-- doxytag: member="Gtk::Notebook::prepend_page" ref="a35e14985c7a8baa31ad3ba1fbba444f9" args="(Widget &amp;child, Widget &amp;tab_label)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gtk::Notebook::prepend_page </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>tab_label</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Prepends a page to <em>notebook</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a> to use as the contents of the page. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>tab_label</em>&#160;</td><td>The <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a> to be used as the label for the page. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aaa68ef247203cb6aa10f9a85bc788bfd"></a><!-- doxytag: member="Gtk::Notebook::prev_page" ref="aaa68ef247203cb6aa10f9a85bc788bfd" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::prev_page </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Switches to the previous page. </p>
<p>Nothing happens if the current page is the first page. </p>

</div>
</div>
<a class="anchor" id="acdeb51d12959a0b7a72cf137379dd312"></a><!-- doxytag: member="Gtk::Notebook::property_enable_popup" ref="acdeb51d12959a0b7a72cf137379dd312" 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::Notebook::property_enable_popup </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If TRUE. </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="a26ead75a3f982a3232273ce940d15765"></a><!-- doxytag: member="Gtk::Notebook::property_enable_popup" ref="a26ead75a3f982a3232273ce940d15765" 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::Notebook::property_enable_popup </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If TRUE. </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="afb4324c03b803a232312e232d6b6510f"></a><!-- doxytag: member="Gtk::Notebook::property_homogeneous" ref="afb4324c03b803a232312e232d6b6510f" 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::Notebook::property_homogeneous </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether tabs should have homogeneous sizes. </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="a49a9c6bb99ad175c82104a3274c98bf0"></a><!-- doxytag: member="Gtk::Notebook::property_homogeneous" ref="a49a9c6bb99ad175c82104a3274c98bf0" 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::Notebook::property_homogeneous </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether tabs should have homogeneous sizes. </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="a7aa7943420ac3ad85e6063a27230f91b"></a><!-- doxytag: member="Gtk::Notebook::property_page" ref="a7aa7943420ac3ad85e6063a27230f91b" 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;int&gt; Gtk::Notebook::property_page </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The index of the current page. </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="a4b84ce79f71a99a81a55cfdbfce4335b"></a><!-- doxytag: member="Gtk::Notebook::property_page" ref="a4b84ce79f71a99a81a55cfdbfce4335b" 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;int&gt; Gtk::Notebook::property_page </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>The index of the current page. </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="ae04b5d0ea84cf47c3bf584d071f6b437"></a><!-- doxytag: member="Gtk::Notebook::property_scrollable" ref="ae04b5d0ea84cf47c3bf584d071f6b437" 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::Notebook::property_scrollable </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If TRUE. </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="adadf44949dc73ba9ecc6f31194331b5b"></a><!-- doxytag: member="Gtk::Notebook::property_scrollable" ref="adadf44949dc73ba9ecc6f31194331b5b" 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::Notebook::property_scrollable </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>If TRUE. </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="ad0027e0f54e581b40378199b2a05a276"></a><!-- doxytag: member="Gtk::Notebook::property_show_border" ref="ad0027e0f54e581b40378199b2a05a276" 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::Notebook::property_show_border </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether the border should be shown or not. </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="aa882d32d4a9bd02daaf5c5ac02c8ab15"></a><!-- doxytag: member="Gtk::Notebook::property_show_border" ref="aa882d32d4a9bd02daaf5c5ac02c8ab15" 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::Notebook::property_show_border </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether the border should be shown or not. </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="a70489d2789fd3c66fda196201c4b004b"></a><!-- doxytag: member="Gtk::Notebook::property_show_tabs" ref="a70489d2789fd3c66fda196201c4b004b" 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::Notebook::property_show_tabs </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether tabs should be shown or not. </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="a70f9d9260af3c9ed4b6644e103c6249f"></a><!-- doxytag: member="Gtk::Notebook::property_show_tabs" ref="a70f9d9260af3c9ed4b6644e103c6249f" 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::Notebook::property_show_tabs </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Whether tabs should be shown or not. </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="a458f77601c67576a59eaa8377d181d5c"></a><!-- doxytag: member="Gtk::Notebook::property_tab_border" ref="a458f77601c67576a59eaa8377d181d5c" 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__WriteOnly.html">Glib::PropertyProxy_WriteOnly</a>&lt;guint&gt; Gtk::Notebook::property_tab_border </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Width of the border around the tab labels. </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="a0131c35c0ff46cc4b030cec4ceb29ed1"></a><!-- doxytag: member="Gtk::Notebook::property_tab_hborder" ref="a0131c35c0ff46cc4b030cec4ceb29ed1" 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;guint&gt; Gtk::Notebook::property_tab_hborder </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Width of the horizontal border of tab labels. </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="afa39d28939f0108ef2f91f9b0bdee9ff"></a><!-- doxytag: member="Gtk::Notebook::property_tab_hborder" ref="afa39d28939f0108ef2f91f9b0bdee9ff" 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;guint&gt; Gtk::Notebook::property_tab_hborder </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Width of the horizontal border of tab labels. </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="a71e5f1c8cb3c99b7a945247eaf3d635e"></a><!-- doxytag: member="Gtk::Notebook::property_tab_pos" ref="a71e5f1c8cb3c99b7a945247eaf3d635e" 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#ga3568edcd04af4a2cbd1eb0195513fe6b">PositionType</a>&gt; Gtk::Notebook::property_tab_pos </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Which side of the notebook holds the tabs. </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="a94dbe360e0e41261582c20b15e257259"></a><!-- doxytag: member="Gtk::Notebook::property_tab_pos" ref="a94dbe360e0e41261582c20b15e257259" 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#ga3568edcd04af4a2cbd1eb0195513fe6b">PositionType</a>&gt; Gtk::Notebook::property_tab_pos </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Which side of the notebook holds the tabs. </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="a97e22c219495097c6517550933da711f"></a><!-- doxytag: member="Gtk::Notebook::property_tab_vborder" ref="a97e22c219495097c6517550933da711f" 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;guint&gt; Gtk::Notebook::property_tab_vborder </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td> const</td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Width of the vertical border of tab labels. </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="a623686d2696f09d53c5f50c20dfbc2fb"></a><!-- doxytag: member="Gtk::Notebook::property_tab_vborder" ref="a623686d2696f09d53c5f50c20dfbc2fb" 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;guint&gt; Gtk::Notebook::property_tab_vborder </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Width of the vertical border of tab labels. </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="a8cea404ff5620d26de81ce63bec2c41f"></a><!-- doxytag: member="Gtk::Notebook::query_tab_label_packing" ref="a8cea404ff5620d26de81ce63bec2c41f" args="(Widget &amp;child, bool &amp;expand, bool &amp;fill, PackType &amp;pack_type)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::query_tab_label_packing </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool &amp;&#160;</td>
          <td class="paramname"> <em>expand</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool &amp;&#160;</td>
          <td class="paramname"> <em>fill</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#gafd31781c802e2887a7898b442780662d">PackType</a>&amp;&#160;</td>
          <td class="paramname"> <em>pack_type</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000043">Deprecated:</a></b></dt><dd>Modify the "tab-expand" and "tab-fill" child properties instead. </dd></dl>

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

</div>
</div>
<a class="anchor" id="a657836baea599a7570241c47df89fe54"></a><!-- doxytag: member="Gtk::Notebook::remove_page" ref="a657836baea599a7570241c47df89fe54" args="(int page_num=0)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::remove_page </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>page_num</em> = <code>0</code></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Removes a page from the notebook given its index in the notebook. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>page_num</em>&#160;</td><td>The index of a notebook page, starting from 0. If -1, the last page will be removed. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ae4032dff09c516ed5e5e8aed1a54b5f1"></a><!-- doxytag: member="Gtk::Notebook::reorder_child" ref="ae4032dff09c516ed5e5e8aed1a54b5f1" args="(Widget &amp;child, int position)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::reorder_child </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</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>Reorders the page containing <em>child</em>, so that it appears in position <em>position</em>. </p>
<p>If <em>position</em> is greater than or equal to the number of children in the list or negative, <em>child</em> will be moved to the end of the list. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The child to move. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>position</em>&#160;</td><td>The new position, or -1 to move to the end. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ad7bbc1f71ebddc1a8b0b5f298e7dd1c1"></a><!-- doxytag: member="Gtk::Notebook::set_action_widget" ref="ad7bbc1f71ebddc1a8b0b5f298e7dd1c1" args="(Widget *widget, PackType pack_type=PACK_START)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::set_action_widget </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>*&#160;</td>
          <td class="paramname"> <em>widget</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#gafd31781c802e2887a7898b442780662d">PackType</a>&#160;</td>
          <td class="paramname"> <em>pack_type</em> = <code>PACK_START</code></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets <em>widget</em> as one of the action widgets. </p>
<p>Depending on the pack type the widget will be placed before or after the tabs. You can use a <a class="el" href="classGtk_1_1Box.html" title="A base class for box containers.">Gtk::Box</a> if you need to pack more than one widget on the same side.</p>
<p>Note that action widgets are "internal" children of the notebook and thus not included in the list returned from <a class="el" href="classGtk_1_1Container.html#a0af90e61f6c7e2bc9643654bf12506ae" title="Operate on contained items This is largely an internal used mainly for things like...">Gtk::Container::foreach()</a>.</p>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000011">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>widget</em>&#160;</td><td>A <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>pack_type</em>&#160;</td><td>Pack type of the action widget. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aabc5f384b314edfb07eed6fe878c6547"></a><!-- doxytag: member="Gtk::Notebook::set_current_page" ref="aabc5f384b314edfb07eed6fe878c6547" args="(int page_num)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::set_current_page </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>page_num</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Switches to the page number <em>page_num</em>. </p>
<p>Note that due to historical reasons, GtkNotebook refuses to switch to a page unless the child widget is visible. Therefore, it is recommended to show child widgets before adding them to a notebook. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>page_num</em>&#160;</td><td>Index of the page to switch to, starting from 0. If negative, the last page will be used. If greater than the number of pages in the notebook, nothing will be done. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a8da49c253961457931057abbe6218169"></a><!-- doxytag: member="Gtk::Notebook::set_group" ref="a8da49c253961457931057abbe6218169" args="(void *group)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::set_group </td>
          <td>(</td>
          <td class="paramtype">void *&#160;</td>
          <td class="paramname"> <em>group</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets a group identificator pointer for <em>notebook</em>, notebooks sharing the same group identificator pointer will be able to exchange tabs via drag and drop. </p>
<p>A notebook with a <code>0</code> group identificator will not be able to exchange tabs with any other notebook.</p>
<dl class="since_2_12"><dt><b><a class="el" href="since_2_12.html#_since_2_12000052">Since gtkmm 2.12:</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>group</em>&#160;</td><td>A pointer to identify the notebook group, or <code>0</code> to unset it. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a4a2b16092571bb24e0b6c8848c128088"></a><!-- doxytag: member="Gtk::Notebook::set_group_id" ref="a4a2b16092571bb24e0b6c8848c128088" args="(int group_id)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::set_group_id </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"> <em>group_id</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets an group identificator for <em>notebook</em>, notebooks sharing the same group identificator will be able to exchange tabs via drag and drop. </p>
<p>A notebook with group identificator -1 will not be able to exchange tabs with any other notebook.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000070">Since gtkmm 2.10:</a></b></dt><dd>Deprecated: 2.12: use <a class="el" href="classGtk_1_1Notebook.html#a8da49c253961457931057abbe6218169" title="Sets a group identificator pointer for notebook, notebooks sharing the same group...">set_group()</a> instead. </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>group_id</em>&#160;</td><td>A group identificator, or -1 to unset it. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a82b0b3ee1e42962df6526d551ad2a8ff"></a><!-- doxytag: member="Gtk::Notebook::set_menu_label" ref="a82b0b3ee1e42962df6526d551ad2a8ff" args="(Widget &amp;child, Widget &amp;menu_label)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::set_menu_label </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>menu_label</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Changes the menu label for the page containing <em>child</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The child widget. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>menu_label</em>&#160;</td><td>The menu label, or <code>0</code> for default. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a0e3bd8b532d0b719d0235a78bfea0aa0"></a><!-- doxytag: member="Gtk::Notebook::set_menu_label_text" ref="a0e3bd8b532d0b719d0235a78bfea0aa0" args="(Widget &amp;child, const Glib::ustring &amp;menu_text)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::set_menu_label_text </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>menu_text</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Creates a new label and sets it as the menu label of <em>child</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The child widget. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>menu_text</em>&#160;</td><td>The label text. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Sets whether the tab label area will have arrows for scrolling if there are too many tabs to fit in the area. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>scrollable</em>&#160;</td><td><code>true</code> if scroll arrows should be added. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Sets whether a bevel will be drawn around the notebook pages. </p>
<p>This only has a visual effect when the tabs are not shown. See <a class="el" href="classGtk_1_1Notebook.html#a5647410e4057a608182381e90c0d6206" title="Sets whether to show the tabs for the notebook or not.">set_show_tabs()</a>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>show_border</em>&#160;</td><td><code>true</code> if a bevel should be drawn around the notebook. </td></tr>
  </table>
  </dd>
</dl>

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

<p>Sets whether to show the tabs for the notebook or not. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>show_tabs</em>&#160;</td><td><code>true</code> if the tabs should be shown. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a7b0555d623c2784dc45b5b3e6aa9c3e1"></a><!-- doxytag: member="Gtk::Notebook::set_tab_detachable" ref="a7b0555d623c2784dc45b5b3e6aa9c3e1" args="(Widget &amp;child, bool detachable=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::set_tab_detachable </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>detachable</em> = <code>true</code></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets whether the tab can be detached from <em>notebook</em> to another notebook or widget. </p>
<p>Note that 2 notebooks must share a common group identificator (see <a class="el" href="classGtk_1_1Notebook.html#a4a2b16092571bb24e0b6c8848c128088" title="Sets an group identificator for notebook, notebooks sharing the same group identificator...">set_group_id()</a>) to allow automatic tabs interchange between them.</p>
<p>If you want a widget to interact with a notebook through DnD (i.e.: accept dragged tabs from it) it must be set as a drop destination and accept the target "GTK_NOTEBOOK_TAB". The notebook will fill the selection with a GtkWidget** pointing to the child widget that corresponds to the dropped tab. |[ static void on_drop_zone_drag_data_received (GtkWidget *widget, GdkDragContext *context, <code>int</code> x, <code>int</code> y, GtkSelectionData *selection_data, <code>unsigned int</code> info, <code>unsigned int</code> time, gpointer user_data) { GtkWidget *notebook; GtkWidget **child;</p>
<p>notebook = gtk_drag_get_source_widget (context); child = (void*) selection_data-&gt;data;</p>
<p>process_widget (*child); gtk_container_remove (GTK_CONTAINER (notebook), *child); } ]|</p>
<p>If you want a notebook to accept drags from other widgets, you will have to set your own DnD code to do it.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000075">Since gtkmm 2.10:</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>child</em>&#160;</td><td>A child <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>detachable</em>&#160;</td><td>Whether the tab is detachable or not. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a9cc1f87301aa22ca9dc14f86f29db6a4"></a><!-- doxytag: member="Gtk::Notebook::set_tab_label" ref="a9cc1f87301aa22ca9dc14f86f29db6a4" args="(Widget &amp;child, Widget &amp;tab_label)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::set_tab_label </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>tab_label</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Changes the tab label for <em>child</em>. </p>
<p>If <code>0</code> is specified for <em>tab_label</em>, then the page will have the label 'page N'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The page. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>tab_label</em>&#160;</td><td>The tab label widget to use, or <code>0</code> for default tab label. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a62b4d1e8335a8df5a05d3b089abf3a02"></a><!-- doxytag: member="Gtk::Notebook::set_tab_label_packing" ref="a62b4d1e8335a8df5a05d3b089abf3a02" args="(Widget &amp;child, bool expand, bool fill, PackType pack_type)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::set_tab_label_packing </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>expand</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>fill</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#gafd31781c802e2887a7898b442780662d">PackType</a>&#160;</td>
          <td class="paramname"> <em>pack_type</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 packing parameters for the tab label of the page containing <em>child</em>. </p>
<p>See <a class="el" href="classGtk_1_1Box.html#a31aa59034a669239c4b99a9ced5742d6" title="Left side insert a widget to a box.">Gtk::Box::pack_start()</a> for the exact meaning of the parameters.</p>
<p>Deprecated: 2.20: Modify the <a class="el" href="classGtk_1_1Notebook.html" title="Container which shows one of its children at a time, in tabbed windows.">Gtk::Notebook</a>:tab-expand and <a class="el" href="classGtk_1_1Notebook.html" title="Container which shows one of its children at a time, in tabbed windows.">Gtk::Notebook</a>:tab-fill child properties instead. Modifying the packing of the tab label is a deprecated feature and shouldn't be done anymore. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The child widget. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>expand</em>&#160;</td><td>Whether to expand the tab label or not. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>fill</em>&#160;</td><td>Whether the tab label should fill the allocated area or not. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>pack_type</em>&#160;</td><td>The position of the tab label. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a6bc59b5a0c766064caf86e9f8ea6958f"></a><!-- doxytag: member="Gtk::Notebook::set_tab_label_text" ref="a6bc59b5a0c766064caf86e9f8ea6958f" args="(Widget &amp;child, const Glib::ustring &amp;tab_text)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::set_tab_label_text </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></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>tab_text</em></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Creates a new label and sets it as the tab label for the page containing <em>child</em>. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>child</em>&#160;</td><td>The page. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>tab_text</em>&#160;</td><td>The label text. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="abaaff5c44279de084923d72f67d47fec"></a><!-- doxytag: member="Gtk::Notebook::set_tab_pos" ref="abaaff5c44279de084923d72f67d47fec" args="(PositionType pos)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::set_tab_pos </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="group__gtkmmEnums.html#ga3568edcd04af4a2cbd1eb0195513fe6b">PositionType</a>&#160;</td>
          <td class="paramname"> <em>pos</em></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets the edge at which the tabs for switching pages in the notebook are drawn. </p>
<dl><dt><b>Parameters:</b></dt><dd>
  <table border="0" cellspacing="2" cellpadding="0">
    <tr><td valign="top"></td><td valign="top"><em>pos</em>&#160;</td><td>The edge to draw the tabs at. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a283f670166e6b40523a73483a69eb075"></a><!-- doxytag: member="Gtk::Notebook::set_tab_reorderable" ref="a283f670166e6b40523a73483a69eb075" args="(Widget &amp;child, bool reorderable=true)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gtk::Notebook::set_tab_reorderable </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>&amp;&#160;</td>
          <td class="paramname"> <em>child</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"> <em>reorderable</em> = <code>true</code></td><td>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>Sets whether the notebook tab can be reordered via drag and drop or not. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000073">Since gtkmm 2.10:</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>child</em>&#160;</td><td>A child <a class="el" href="classGtk_1_1Widget.html" title="Abstract Widget (Base class for all widgets).">Gtk::Widget</a>. </td></tr>
    <tr><td valign="top"></td><td valign="top"><em>reorderable</em>&#160;</td><td>Whether the tab is reorderable or not. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aaa7a4dabcd0ed602eb9478561c976160"></a><!-- doxytag: member="Gtk::Notebook::set_window_creation_hook" ref="aaa7a4dabcd0ed602eb9478561c976160" args="(const SlotWindowCreation &amp;slot)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">static void Gtk::Notebook::set_window_creation_hook </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">SlotWindowCreation</a> &amp;&#160;</td>
          <td class="paramname"> <em>slot</em></td>
          <td>&#160;)&#160;</td>
          <td><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

</div>
</div>
<a class="anchor" id="a8876e8968e2d6efe73cd04313ba76891"></a><!-- doxytag: member="Gtk::Notebook::signal_page_added" ref="a8876e8968e2d6efe73cd04313ba76891" 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_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void,<a class="el" href="classGtk_1_1Widget.html">Widget</a>*,guint &gt; Gtk::Notebook::signal_page_added </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="user"><dt><b>Prototype:</b></dt><dd><code>void on_my_page_added(Widget* page, guint page_num)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="a30326f0c4ed4b6b27361caaa18d33f70"></a><!-- doxytag: member="Gtk::Notebook::signal_page_removed" ref="a30326f0c4ed4b6b27361caaa18d33f70" 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_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void,<a class="el" href="classGtk_1_1Widget.html">Widget</a>*,guint &gt; Gtk::Notebook::signal_page_removed </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="user"><dt><b>Prototype:</b></dt><dd><code>void on_my_page_removed(Widget* page, guint page_num)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="a49c1bd4330a4ab1a78c932e678d48427"></a><!-- doxytag: member="Gtk::Notebook::signal_page_reordered" ref="a49c1bd4330a4ab1a78c932e678d48427" 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_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void,<a class="el" href="classGtk_1_1Widget.html">Widget</a>*,guint &gt; Gtk::Notebook::signal_page_reordered </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="user"><dt><b>Prototype:</b></dt><dd><code>void on_my_page_reordered(Widget* page, guint page_num)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="a403ba7849e0cc2702c816c5f08534f15"></a><!-- doxytag: member="Gtk::Notebook::signal_switch_page" ref="a403ba7849e0cc2702c816c5f08534f15" 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_1SignalProxy2.html">Glib::SignalProxy2</a>&lt; void,GtkNotebookPage*,guint &gt; Gtk::Notebook::signal_switch_page </td>
          <td>(</td>
          <td class="paramname"></td>
          <td>&#160;)&#160;</td>
          <td></td>
        </tr>
      </table>
</div>
<div class="memdoc">
<dl class="user"><dt><b>Prototype:</b></dt><dd><code>void on_my_switch_page(GtkNotebookPage* page, guint page_num)</code> </dd></dl>

</div>
</div>
<hr/><h2>Friends And Related Function Documentation</h2>
<a class="anchor" id="a1ef95b6a13995a2ca58c44673967287d"></a><!-- doxytag: member="Gtk::Notebook::wrap" ref="a1ef95b6a13995a2ca58c44673967287d" args="(GtkNotebook *object, bool take_copy=false)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGtk_1_1Notebook.html">Gtk::Notebook</a>* wrap </td>
          <td>(</td>
          <td class="paramtype">GtkNotebook *&#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/notebook.h</li>
</ul>
</div>
<hr size="1"/><address style="text-align: right;"><small>Generated on Tue May 4 13:21:56 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>