File: classGsv_1_1Buffer.html

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

<p><a class="el" href="classGsv_1_1Buffer.html" title="Buffer object for View. ">Buffer</a> object for <a class="el" href="classGsv_1_1View.html" title="The view object. ">View</a>.  
 <a href="classGsv_1_1Buffer.html#details">More...</a></p>

<p><code>#include &lt;gtksourceviewmm/buffer.h&gt;</code></p>
<div class="dynheader">
Inheritance diagram for Gsv::Buffer:</div>
<div class="dyncontent">
<div class="center"><img src="classGsv_1_1Buffer__inherit__graph.png" border="0" usemap="#Gsv_1_1Buffer_inherit__map" alt="Inheritance graph"/></div>
<map name="Gsv_1_1Buffer_inherit__map" id="Gsv_1_1Buffer_inherit__map">
<area shape="rect" id="node2" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html" title="Gtk::TextBuffer" alt="" coords="11,229,126,256"/><area shape="rect" id="node3" 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="21,155,116,181"/><area shape="rect" id="node4" 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="5,80,132,107"/><area shape="rect" id="node5" 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="11,5,126,32"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a39ecbda11d0cb6bee33806067da96417"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a39ecbda11d0cb6bee33806067da96417">Buffer</a> (<a class="el" href="classGsv_1_1Buffer.html">Buffer</a>&amp;&amp; src) noexcept</td></tr>
<tr class="separator:a39ecbda11d0cb6bee33806067da96417"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8ca84fc88ba6bcb60abe27c57f5c5b3f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGsv_1_1Buffer.html">Buffer</a>&amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a8ca84fc88ba6bcb60abe27c57f5c5b3f">operator=</a> (<a class="el" href="classGsv_1_1Buffer.html">Buffer</a>&amp;&amp; src) noexcept</td></tr>
<tr class="separator:a8ca84fc88ba6bcb60abe27c57f5c5b3f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5f5bb83853fe65275338213413f72f25"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a5f5bb83853fe65275338213413f72f25">~Buffer</a> () noexcept</td></tr>
<tr class="separator:a5f5bb83853fe65275338213413f72f25"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a24938a39680b18f08bf6c6721fe353d5"><td class="memItemLeft" align="right" valign="top">GtkSourceBuffer*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a24938a39680b18f08bf6c6721fe353d5">gobj</a> ()</td></tr>
<tr class="memdesc:a24938a39680b18f08bf6c6721fe353d5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject.  <a href="#a24938a39680b18f08bf6c6721fe353d5">More...</a><br /></td></tr>
<tr class="separator:a24938a39680b18f08bf6c6721fe353d5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a14bb577f1d9ea5f5619e4eb0a8a1b2d4"><td class="memItemLeft" align="right" valign="top">const GtkSourceBuffer*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a14bb577f1d9ea5f5619e4eb0a8a1b2d4">gobj</a> () const </td></tr>
<tr class="memdesc:a14bb577f1d9ea5f5619e4eb0a8a1b2d4"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C GObject.  <a href="#a14bb577f1d9ea5f5619e4eb0a8a1b2d4">More...</a><br /></td></tr>
<tr class="separator:a14bb577f1d9ea5f5619e4eb0a8a1b2d4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ace8320a5bd7e3e3d3426a9e55b2ab2e6"><td class="memItemLeft" align="right" valign="top">GtkSourceBuffer*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ace8320a5bd7e3e3d3426a9e55b2ab2e6">gobj_copy</a> ()</td></tr>
<tr class="memdesc:ace8320a5bd7e3e3d3426a9e55b2ab2e6"><td class="mdescLeft">&#160;</td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.  <a href="#ace8320a5bd7e3e3d3426a9e55b2ab2e6">More...</a><br /></td></tr>
<tr class="separator:ace8320a5bd7e3e3d3426a9e55b2ab2e6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4efdc60692f27af9518e3e5540be4c8a"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a4efdc60692f27af9518e3e5540be4c8a">get_highlight_matching_brackets</a> () const </td></tr>
<tr class="memdesc:a4efdc60692f27af9518e3e5540be4c8a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines whether bracket match highlighting is activated for the source buffer.  <a href="#a4efdc60692f27af9518e3e5540be4c8a">More...</a><br /></td></tr>
<tr class="separator:a4efdc60692f27af9518e3e5540be4c8a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5aca7aafeac540ed30f91b3c47a5d1a3"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a5aca7aafeac540ed30f91b3c47a5d1a3">set_highlight_matching_brackets</a> (bool highlight=true)</td></tr>
<tr class="memdesc:a5aca7aafeac540ed30f91b3c47a5d1a3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Controls the bracket match highlighting function in the buffer.  <a href="#a5aca7aafeac540ed30f91b3c47a5d1a3">More...</a><br /></td></tr>
<tr class="separator:a5aca7aafeac540ed30f91b3c47a5d1a3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a06c3e3e579ced82c55296a74621e1f9f"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a06c3e3e579ced82c55296a74621e1f9f">get_highlight_syntax</a> () const </td></tr>
<tr class="memdesc:a06c3e3e579ced82c55296a74621e1f9f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines whether syntax highlighting is activated in the source buffer.  <a href="#a06c3e3e579ced82c55296a74621e1f9f">More...</a><br /></td></tr>
<tr class="separator:a06c3e3e579ced82c55296a74621e1f9f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5dc35dabe91ef921b0d224a34be6c323"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a5dc35dabe91ef921b0d224a34be6c323">set_highlight_syntax</a> (bool highlight=true)</td></tr>
<tr class="memdesc:a5dc35dabe91ef921b0d224a34be6c323"><td class="mdescLeft">&#160;</td><td class="mdescRight">Controls whether syntax is highlighted in the buffer.  <a href="#a5dc35dabe91ef921b0d224a34be6c323">More...</a><br /></td></tr>
<tr class="separator:a5dc35dabe91ef921b0d224a34be6c323"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afaf2232bfbcc6a8959ecd04e4def2f05"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#afaf2232bfbcc6a8959ecd04e4def2f05">get_max_undo_levels</a> () const </td></tr>
<tr class="memdesc:afaf2232bfbcc6a8959ecd04e4def2f05"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines the number of undo levels the buffer will track for buffer edits.  <a href="#afaf2232bfbcc6a8959ecd04e4def2f05">More...</a><br /></td></tr>
<tr class="separator:afaf2232bfbcc6a8959ecd04e4def2f05"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a71c4bb2a0d48c725ca71034a4a7fe093"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a71c4bb2a0d48c725ca71034a4a7fe093">set_max_undo_levels</a> (int max_undo_levels)</td></tr>
<tr class="memdesc:a71c4bb2a0d48c725ca71034a4a7fe093"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the number of undo levels for user actions the buffer will track.  <a href="#a71c4bb2a0d48c725ca71034a4a7fe093">More...</a><br /></td></tr>
<tr class="separator:a71c4bb2a0d48c725ca71034a4a7fe093"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae78a6996a1e5e998a2a1ccee20c2b90c"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Language.html">Language</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ae78a6996a1e5e998a2a1ccee20c2b90c">get_language</a> ()</td></tr>
<tr class="memdesc:ae78a6996a1e5e998a2a1ccee20c2b90c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the <a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> associated with the buffer.  <a href="#ae78a6996a1e5e998a2a1ccee20c2b90c">More...</a><br /></td></tr>
<tr class="separator:ae78a6996a1e5e998a2a1ccee20c2b90c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9d34b85c9041da4b32d96a29e7203a72"><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_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGsv_1_1Language.html">Language</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a9d34b85c9041da4b32d96a29e7203a72">get_language</a> () const </td></tr>
<tr class="memdesc:a9d34b85c9041da4b32d96a29e7203a72"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the <a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> associated with the buffer.  <a href="#a9d34b85c9041da4b32d96a29e7203a72">More...</a><br /></td></tr>
<tr class="separator:a9d34b85c9041da4b32d96a29e7203a72"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a094b11544c3893c6c3aa8476b31f982c"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a094b11544c3893c6c3aa8476b31f982c">set_language</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Language.html">Language</a> &gt;&amp; language)</td></tr>
<tr class="memdesc:a094b11544c3893c6c3aa8476b31f982c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Associate a <a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> with the source buffer.  <a href="#a094b11544c3893c6c3aa8476b31f982c">More...</a><br /></td></tr>
<tr class="separator:a094b11544c3893c6c3aa8476b31f982c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a903be8b0ab8764095412bcfbd5717195"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a903be8b0ab8764095412bcfbd5717195">can_undo</a> () const </td></tr>
<tr class="memdesc:a903be8b0ab8764095412bcfbd5717195"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines whether a source buffer can undo the last action.  <a href="#a903be8b0ab8764095412bcfbd5717195">More...</a><br /></td></tr>
<tr class="separator:a903be8b0ab8764095412bcfbd5717195"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a202124d2a4c4d655f4eb664c21728263"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a202124d2a4c4d655f4eb664c21728263">can_redo</a> () const </td></tr>
<tr class="memdesc:a202124d2a4c4d655f4eb664c21728263"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines whether a source buffer can redo the last action (i.e. if the last operation was an undo).  <a href="#a202124d2a4c4d655f4eb664c21728263">More...</a><br /></td></tr>
<tr class="separator:a202124d2a4c4d655f4eb664c21728263"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab00652572f2c1555e72cbb9aedb28caf"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ab00652572f2c1555e72cbb9aedb28caf">undo</a> ()</td></tr>
<tr class="memdesc:ab00652572f2c1555e72cbb9aedb28caf"><td class="mdescLeft">&#160;</td><td class="mdescRight">Undoes the last user action which modified the buffer.  <a href="#ab00652572f2c1555e72cbb9aedb28caf">More...</a><br /></td></tr>
<tr class="separator:ab00652572f2c1555e72cbb9aedb28caf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9f89c2f17d628947b496e57333571c36"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a9f89c2f17d628947b496e57333571c36">redo</a> ()</td></tr>
<tr class="memdesc:a9f89c2f17d628947b496e57333571c36"><td class="mdescLeft">&#160;</td><td class="mdescRight">Redoes the last undo operation.  <a href="#a9f89c2f17d628947b496e57333571c36">More...</a><br /></td></tr>
<tr class="separator:a9f89c2f17d628947b496e57333571c36"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a98a8b05c13f12b75105a69523b7665ee"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a98a8b05c13f12b75105a69523b7665ee">begin_not_undoable_action</a> ()</td></tr>
<tr class="memdesc:a98a8b05c13f12b75105a69523b7665ee"><td class="mdescLeft">&#160;</td><td class="mdescRight">Marks the beginning of a not undoable action on the buffer, disabling the undo manager.  <a href="#a98a8b05c13f12b75105a69523b7665ee">More...</a><br /></td></tr>
<tr class="separator:a98a8b05c13f12b75105a69523b7665ee"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a802da4b8cb51bb6a40a4defaab567526"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a802da4b8cb51bb6a40a4defaab567526">end_not_undoable_action</a> ()</td></tr>
<tr class="memdesc:a802da4b8cb51bb6a40a4defaab567526"><td class="mdescLeft">&#160;</td><td class="mdescRight">Marks the end of a not undoable action on the buffer.  <a href="#a802da4b8cb51bb6a40a4defaab567526">More...</a><br /></td></tr>
<tr class="separator:a802da4b8cb51bb6a40a4defaab567526"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b42e54f73ea5c7b18346f851c0472dc"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a1b42e54f73ea5c7b18346f851c0472dc">backward_iter_to_source_mark</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; iter, 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; category)</td></tr>
<tr class="memdesc:a1b42e54f73ea5c7b18346f851c0472dc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves iter to the position of the previous <a class="el" href="classGsv_1_1Mark.html" title="Mark class for Buffer. ">Mark</a> of the given category.  <a href="#a1b42e54f73ea5c7b18346f851c0472dc">More...</a><br /></td></tr>
<tr class="separator:a1b42e54f73ea5c7b18346f851c0472dc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a18aedabee278ab0e1e43f6bedfc33a17"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a18aedabee278ab0e1e43f6bedfc33a17">backward_iter_to_source_mark</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; iter)</td></tr>
<tr class="memdesc:a18aedabee278ab0e1e43f6bedfc33a17"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves iter to the position of the previous <a class="el" href="classGsv_1_1Mark.html" title="Mark class for Buffer. ">Mark</a> of any category.  <a href="#a18aedabee278ab0e1e43f6bedfc33a17">More...</a><br /></td></tr>
<tr class="separator:a18aedabee278ab0e1e43f6bedfc33a17"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a667aea8104bb6bedb12f0fa4076fa38e"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a667aea8104bb6bedb12f0fa4076fa38e">forward_iter_to_source_mark</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; iter, 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; category)</td></tr>
<tr class="memdesc:a667aea8104bb6bedb12f0fa4076fa38e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves iter to the position of the next <a class="el" href="classGsv_1_1Mark.html" title="Mark class for Buffer. ">Mark</a> of the given category.  <a href="#a667aea8104bb6bedb12f0fa4076fa38e">More...</a><br /></td></tr>
<tr class="separator:a667aea8104bb6bedb12f0fa4076fa38e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac5f694fe4f4d2bc6d308183132490f3b"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ac5f694fe4f4d2bc6d308183132490f3b">forward_iter_to_source_mark</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; iter)</td></tr>
<tr class="memdesc:ac5f694fe4f4d2bc6d308183132490f3b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves iter to the position of the next <a class="el" href="classGsv_1_1Mark.html" title="Mark class for Buffer. ">Mark</a> of the given category.  <a href="#ac5f694fe4f4d2bc6d308183132490f3b">More...</a><br /></td></tr>
<tr class="separator:ac5f694fe4f4d2bc6d308183132490f3b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f231823bae5d9653acb80183dd16864"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a6f231823bae5d9653acb80183dd16864">ensure_highlight</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01656.html#ga1bd4227a2c4a6cc74342b797384fbab2">start</a>, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp;<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ac4ee0ba09f7d8d316e3db8b7402344a2">end</a>)</td></tr>
<tr class="memdesc:a6f231823bae5d9653acb80183dd16864"><td class="mdescLeft">&#160;</td><td class="mdescRight">Forces buffer to analyze and highlight the given area synchronously.  <a href="#a6f231823bae5d9653acb80183dd16864">More...</a><br /></td></tr>
<tr class="separator:a6f231823bae5d9653acb80183dd16864"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad50a0ab68b02735053e870d502f69232"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1StyleScheme.html">StyleScheme</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ad50a0ab68b02735053e870d502f69232">get_style_scheme</a> ()</td></tr>
<tr class="memdesc:ad50a0ab68b02735053e870d502f69232"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the <a class="el" href="classGsv_1_1StyleScheme.html" title="Object controlling appearance of View. ">StyleScheme</a> currently used in buffer.  <a href="#ad50a0ab68b02735053e870d502f69232">More...</a><br /></td></tr>
<tr class="separator:ad50a0ab68b02735053e870d502f69232"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a67760ca1f9bf07d18b4628f8a372ea3f"><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_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGsv_1_1StyleScheme.html">StyleScheme</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a67760ca1f9bf07d18b4628f8a372ea3f">get_style_scheme</a> () const </td></tr>
<tr class="memdesc:a67760ca1f9bf07d18b4628f8a372ea3f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the <a class="el" href="classGsv_1_1StyleScheme.html" title="Object controlling appearance of View. ">StyleScheme</a> currently used in buffer.  <a href="#a67760ca1f9bf07d18b4628f8a372ea3f">More...</a><br /></td></tr>
<tr class="separator:a67760ca1f9bf07d18b4628f8a372ea3f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aadf64edd98a05e523c62b525bee8508f"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#aadf64edd98a05e523c62b525bee8508f">set_style_scheme</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1StyleScheme.html">StyleScheme</a> &gt;&amp; scheme)</td></tr>
<tr class="memdesc:aadf64edd98a05e523c62b525bee8508f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets style scheme used by the buffer.  <a href="#aadf64edd98a05e523c62b525bee8508f">More...</a><br /></td></tr>
<tr class="separator:aadf64edd98a05e523c62b525bee8508f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad7206f5f78066d9821694937cdb71daf"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ad7206f5f78066d9821694937cdb71daf">unset_style_scheme</a> ()</td></tr>
<tr class="memdesc:ad7206f5f78066d9821694937cdb71daf"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unsets style scheme used by the buffer.  <a href="#ad7206f5f78066d9821694937cdb71daf">More...</a><br /></td></tr>
<tr class="separator:ad7206f5f78066d9821694937cdb71daf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4b53a20c20e3a1b48e2214c27c77fe01"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Mark.html">Gsv::Mark</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a4b53a20c20e3a1b48e2214c27c77fe01">create_source_mark</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, 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; category, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; where)</td></tr>
<tr class="memdesc:a4b53a20c20e3a1b48e2214c27c77fe01"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a source mark in the buffer of category category.  <a href="#a4b53a20c20e3a1b48e2214c27c77fe01">More...</a><br /></td></tr>
<tr class="separator:a4b53a20c20e3a1b48e2214c27c77fe01"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e9d18eeaa7dbf15a26ff78148d0a323"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Mark.html">Gsv::Mark</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a7e9d18eeaa7dbf15a26ff78148d0a323">create_source_mark</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; category, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; where)</td></tr>
<tr class="memdesc:a7e9d18eeaa7dbf15a26ff78148d0a323"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates an anonymous source mark in the buffer of category category.  <a href="#a7e9d18eeaa7dbf15a26ff78148d0a323">More...</a><br /></td></tr>
<tr class="separator:a7e9d18eeaa7dbf15a26ff78148d0a323"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9f15695f071d4035c6e6066acc68444d"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Mark.html">Gsv::Mark</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a9f15695f071d4035c6e6066acc68444d">get_source_marks_at_line</a> (int line, 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; category) const </td></tr>
<tr class="memdesc:a9f15695f071d4035c6e6066acc68444d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the list of marks of the given <em>category</em> at <em>line</em>.  <a href="#a9f15695f071d4035c6e6066acc68444d">More...</a><br /></td></tr>
<tr class="separator:a9f15695f071d4035c6e6066acc68444d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a03388861307ae7563ffdf3cf052c4957"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Mark.html">Gsv::Mark</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a03388861307ae7563ffdf3cf052c4957">get_source_marks_at_line</a> (int line) const </td></tr>
<tr class="memdesc:a03388861307ae7563ffdf3cf052c4957"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the list of marks of any category at <em>line</em>.  <a href="#a03388861307ae7563ffdf3cf052c4957">More...</a><br /></td></tr>
<tr class="separator:a03388861307ae7563ffdf3cf052c4957"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a54c3f01e507936f763bae73588397592"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Mark.html">Gsv::Mark</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a54c3f01e507936f763bae73588397592">get_source_marks_at_iter</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; iter, 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; category) const </td></tr>
<tr class="memdesc:a54c3f01e507936f763bae73588397592"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the list of marks of the given <em>category</em> at <em>iter</em>.  <a href="#a54c3f01e507936f763bae73588397592">More...</a><br /></td></tr>
<tr class="separator:a54c3f01e507936f763bae73588397592"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a196ff8a2f98914a204021a0567450da9"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Mark.html">Gsv::Mark</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a196ff8a2f98914a204021a0567450da9">get_source_marks_at_iter</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; iter) const </td></tr>
<tr class="memdesc:a196ff8a2f98914a204021a0567450da9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the list of marks of any category at <em>iter</em>.  <a href="#a196ff8a2f98914a204021a0567450da9">More...</a><br /></td></tr>
<tr class="separator:a196ff8a2f98914a204021a0567450da9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7c02c673dd6cc341e10c9022b8915379"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a7c02c673dd6cc341e10c9022b8915379">remove_source_marks</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01656.html#ga1bd4227a2c4a6cc74342b797384fbab2">start</a>, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp;<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ac4ee0ba09f7d8d316e3db8b7402344a2">end</a>, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; category)</td></tr>
<tr class="memdesc:a7c02c673dd6cc341e10c9022b8915379"><td class="mdescLeft">&#160;</td><td class="mdescRight">Remove all marks of <em>category</em> between start and end from the buffer.  <a href="#a7c02c673dd6cc341e10c9022b8915379">More...</a><br /></td></tr>
<tr class="separator:a7c02c673dd6cc341e10c9022b8915379"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad752a08d9ca22136ec3a6fb2ac042c9a"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ad752a08d9ca22136ec3a6fb2ac042c9a">remove_source_marks</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp;<a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01656.html#ga1bd4227a2c4a6cc74342b797384fbab2">start</a>, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp;<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ac4ee0ba09f7d8d316e3db8b7402344a2">end</a>)</td></tr>
<tr class="memdesc:ad752a08d9ca22136ec3a6fb2ac042c9a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Remove all marks of any category between start and end from the buffer.  <a href="#ad752a08d9ca22136ec3a6fb2ac042c9a">More...</a><br /></td></tr>
<tr class="separator:ad752a08d9ca22136ec3a6fb2ac042c9a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a57a3c8a4e14091f7747f241295ca416a"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a57a3c8a4e14091f7747f241295ca416a">iter_has_context_class</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; iter, 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; context_class) const </td></tr>
<tr class="memdesc:a57a3c8a4e14091f7747f241295ca416a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Check if the class <em>context_class</em> is set on <code>iter</code>.  <a href="#a57a3c8a4e14091f7747f241295ca416a">More...</a><br /></td></tr>
<tr class="separator:a57a3c8a4e14091f7747f241295ca416a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a36170c1825ba89b315e93a46d031a8f1"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a36170c1825ba89b315e93a46d031a8f1">iter_backward_to_context_class_toggle</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; iter, 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; context_class) const </td></tr>
<tr class="memdesc:a36170c1825ba89b315e93a46d031a8f1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves backward to the next toggle (on or off) of the context class.  <a href="#a36170c1825ba89b315e93a46d031a8f1">More...</a><br /></td></tr>
<tr class="separator:a36170c1825ba89b315e93a46d031a8f1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad31e337ba973b8ae84592f64fc7414ac"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ad31e337ba973b8ae84592f64fc7414ac">iter_forward_to_context_class_toggle</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; iter, 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; context_class) const </td></tr>
<tr class="memdesc:ad31e337ba973b8ae84592f64fc7414ac"><td class="mdescLeft">&#160;</td><td class="mdescRight">Moves forward to the next toggle (on or off) of the context class.  <a href="#ad31e337ba973b8ae84592f64fc7414ac">More...</a><br /></td></tr>
<tr class="separator:ad31e337ba973b8ae84592f64fc7414ac"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4dcd97d6df6388179a3e5cdd101b8eaf"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a4dcd97d6df6388179a3e5cdd101b8eaf">get_context_classes_at_iter</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; iter) const </td></tr>
<tr class="memdesc:a4dcd97d6df6388179a3e5cdd101b8eaf"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get all defined context classes at iter.  <a href="#a4dcd97d6df6388179a3e5cdd101b8eaf">More...</a><br /></td></tr>
<tr class="separator:a4dcd97d6df6388179a3e5cdd101b8eaf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a259dcab1d6af088676d6423ee5df07ec"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1UndoManager.html">UndoManager</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a259dcab1d6af088676d6423ee5df07ec">get_undo_manager</a> ()</td></tr>
<tr class="memdesc:a259dcab1d6af088676d6423ee5df07ec"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the undo manager associated with the buffer.  <a href="#a259dcab1d6af088676d6423ee5df07ec">More...</a><br /></td></tr>
<tr class="separator:a259dcab1d6af088676d6423ee5df07ec"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abd7eb2fbf0c2fb754f265b5741ed80e4"><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_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGsv_1_1UndoManager.html">UndoManager</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#abd7eb2fbf0c2fb754f265b5741ed80e4">get_undo_manager</a> () const </td></tr>
<tr class="memdesc:abd7eb2fbf0c2fb754f265b5741ed80e4"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the undo manager associated with the buffer.  <a href="#abd7eb2fbf0c2fb754f265b5741ed80e4">More...</a><br /></td></tr>
<tr class="separator:abd7eb2fbf0c2fb754f265b5741ed80e4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a269e9a8905cfda2b36cc7902fe915a5a"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a269e9a8905cfda2b36cc7902fe915a5a">set_undo_manager</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGsv_1_1UndoManager.html">UndoManager</a> &gt;&amp; undo_manager)</td></tr>
<tr class="memdesc:a269e9a8905cfda2b36cc7902fe915a5a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the buffer undo manager.  <a href="#a269e9a8905cfda2b36cc7902fe915a5a">More...</a><br /></td></tr>
<tr class="separator:a269e9a8905cfda2b36cc7902fe915a5a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4b0664e29b2bd0c3b7c3765609f01f9a"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a4b0664e29b2bd0c3b7c3765609f01f9a">set_default_undo_manager</a> ()</td></tr>
<tr class="memdesc:a4b0664e29b2bd0c3b7c3765609f01f9a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the default buffer undo manager.  <a href="#a4b0664e29b2bd0c3b7c3765609f01f9a">More...</a><br /></td></tr>
<tr class="separator:a4b0664e29b2bd0c3b7c3765609f01f9a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af80f2e414db60836e345e296bea35b35"><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="classGsv_1_1Buffer.html#af80f2e414db60836e345e296bea35b35">property_highlight_syntax</a> ()</td></tr>
<tr class="memdesc:af80f2e414db60836e345e296bea35b35"><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether to highlight syntax in the buffer.  <a href="#af80f2e414db60836e345e296bea35b35">More...</a><br /></td></tr>
<tr class="separator:af80f2e414db60836e345e296bea35b35"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeac4c1ade8b2507ad298343dc5b623ee"><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; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#aeac4c1ade8b2507ad298343dc5b623ee">property_highlight_syntax</a> () const </td></tr>
<tr class="memdesc:aeac4c1ade8b2507ad298343dc5b623ee"><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether to highlight syntax in the buffer.  <a href="#aeac4c1ade8b2507ad298343dc5b623ee">More...</a><br /></td></tr>
<tr class="separator:aeac4c1ade8b2507ad298343dc5b623ee"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3ba19dfc4c534355c17a69c97880521a"><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="classGsv_1_1Buffer.html#a3ba19dfc4c534355c17a69c97880521a">property_highlight_matching_brackets</a> ()</td></tr>
<tr class="memdesc:a3ba19dfc4c534355c17a69c97880521a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether to highlight matching brackets.  <a href="#a3ba19dfc4c534355c17a69c97880521a">More...</a><br /></td></tr>
<tr class="separator:a3ba19dfc4c534355c17a69c97880521a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a604c1ee86c62c03110643a8aca75117d"><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; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a604c1ee86c62c03110643a8aca75117d">property_highlight_matching_brackets</a> () const </td></tr>
<tr class="memdesc:a604c1ee86c62c03110643a8aca75117d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether to highlight matching brackets.  <a href="#a604c1ee86c62c03110643a8aca75117d">More...</a><br /></td></tr>
<tr class="separator:a604c1ee86c62c03110643a8aca75117d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a18058bf1aed302fe75cfd738a102d16d"><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="classGsv_1_1Buffer.html#a18058bf1aed302fe75cfd738a102d16d">property_max_undo_levels</a> ()</td></tr>
<tr class="memdesc:a18058bf1aed302fe75cfd738a102d16d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Number of undo levels for the buffer.  <a href="#a18058bf1aed302fe75cfd738a102d16d">More...</a><br /></td></tr>
<tr class="separator:a18058bf1aed302fe75cfd738a102d16d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b054dc3da1973bdac11a1ee4b8c0f3e"><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="classGsv_1_1Buffer.html#a9b054dc3da1973bdac11a1ee4b8c0f3e">property_max_undo_levels</a> () const </td></tr>
<tr class="memdesc:a9b054dc3da1973bdac11a1ee4b8c0f3e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Number of undo levels for the buffer.  <a href="#a9b054dc3da1973bdac11a1ee4b8c0f3e">More...</a><br /></td></tr>
<tr class="separator:a9b054dc3da1973bdac11a1ee4b8c0f3e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af886d031d376a1b9bd258fc99f64daac"><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="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Language.html">Language</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#af886d031d376a1b9bd258fc99f64daac">property_language</a> ()</td></tr>
<tr class="memdesc:af886d031d376a1b9bd258fc99f64daac"><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> object to get highlighting patterns from.  <a href="#af886d031d376a1b9bd258fc99f64daac">More...</a><br /></td></tr>
<tr class="separator:af886d031d376a1b9bd258fc99f64daac"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a17b6a9f35aa32a30e8fc40b729bd9149"><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; <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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Language.html">Language</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a17b6a9f35aa32a30e8fc40b729bd9149">property_language</a> () const </td></tr>
<tr class="memdesc:a17b6a9f35aa32a30e8fc40b729bd9149"><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> object to get highlighting patterns from.  <a href="#a17b6a9f35aa32a30e8fc40b729bd9149">More...</a><br /></td></tr>
<tr class="separator:a17b6a9f35aa32a30e8fc40b729bd9149"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a92508bd7c4636e3c487d7d86fe8ff0e9"><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; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a92508bd7c4636e3c487d7d86fe8ff0e9">property_can_undo</a> () const </td></tr>
<tr class="memdesc:a92508bd7c4636e3c487d7d86fe8ff0e9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether Undo operation is possible.  <a href="#a92508bd7c4636e3c487d7d86fe8ff0e9">More...</a><br /></td></tr>
<tr class="separator:a92508bd7c4636e3c487d7d86fe8ff0e9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afccb347b39e030107151a062a372a5ab"><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; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#afccb347b39e030107151a062a372a5ab">property_can_redo</a> () const </td></tr>
<tr class="memdesc:afccb347b39e030107151a062a372a5ab"><td class="mdescLeft">&#160;</td><td class="mdescRight">Whether Redo operation is possible.  <a href="#afccb347b39e030107151a062a372a5ab">More...</a><br /></td></tr>
<tr class="separator:afccb347b39e030107151a062a372a5ab"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5fe0dce45cb923381219702ad0caf202"><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="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1StyleScheme.html">StyleScheme</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a5fe0dce45cb923381219702ad0caf202">property_style_scheme</a> ()</td></tr>
<tr class="memdesc:a5fe0dce45cb923381219702ad0caf202"><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classGsv_1_1Style.html" title="Class representing a style. ">Style</a> scheme.  <a href="#a5fe0dce45cb923381219702ad0caf202">More...</a><br /></td></tr>
<tr class="separator:a5fe0dce45cb923381219702ad0caf202"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adde5b35639089a4b280e5959d40c583d"><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; <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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1StyleScheme.html">StyleScheme</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#adde5b35639089a4b280e5959d40c583d">property_style_scheme</a> () const </td></tr>
<tr class="memdesc:adde5b35639089a4b280e5959d40c583d"><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="classGsv_1_1Style.html" title="Class representing a style. ">Style</a> scheme.  <a href="#adde5b35639089a4b280e5959d40c583d">More...</a><br /></td></tr>
<tr class="separator:adde5b35639089a4b280e5959d40c583d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a91d8de733770b23e8ca00de0dc8f6272"><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="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1UndoManager.html">UndoManager</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a91d8de733770b23e8ca00de0dc8f6272">property_undo_manager</a> ()</td></tr>
<tr class="memdesc:a91d8de733770b23e8ca00de0dc8f6272"><td class="mdescLeft">&#160;</td><td class="mdescRight">The buffer undo manager.  <a href="#a91d8de733770b23e8ca00de0dc8f6272">More...</a><br /></td></tr>
<tr class="separator:a91d8de733770b23e8ca00de0dc8f6272"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac455f13be699fd7a61bfb659ea6c0ab8"><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; <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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1UndoManager.html">UndoManager</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ac455f13be699fd7a61bfb659ea6c0ab8">property_undo_manager</a> () const </td></tr>
<tr class="memdesc:ac455f13be699fd7a61bfb659ea6c0ab8"><td class="mdescLeft">&#160;</td><td class="mdescRight">The buffer undo manager.  <a href="#ac455f13be699fd7a61bfb659ea6c0ab8">More...</a><br /></td></tr>
<tr class="separator:ac455f13be699fd7a61bfb659ea6c0ab8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a62e375fe7796704d1e4ff2b1da219346"><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, <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp;, <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a62e375fe7796704d1e4ff2b1da219346">signal_highlight_updated</a> ()</td></tr>
<tr class="memdesc:a62e375fe7796704d1e4ff2b1da219346"><td class="mdescLeft">&#160;</td><td class="mdescRight">Emitted whenever the syntax highlighting information has been updated, so that views can request a redraw if the region changed is visible.  <a href="#a62e375fe7796704d1e4ff2b1da219346">More...</a><br /></td></tr>
<tr class="separator:a62e375fe7796704d1e4ff2b1da219346"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a43d9538ace6c42b2b331f3e990fcb6f4"><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_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextMark.html">Gtk::TextMark</a> &gt;&amp; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a43d9538ace6c42b2b331f3e990fcb6f4">signal_source_mark_updated</a> ()</td></tr>
<tr class="memdesc:a43d9538ace6c42b2b331f3e990fcb6f4"><td class="mdescLeft">&#160;</td><td class="mdescRight">Emitted whenever a marker of sourcebuffer has changed and needs to be redisplayed by the view.  <a href="#a43d9538ace6c42b2b331f3e990fcb6f4">More...</a><br /></td></tr>
<tr class="separator:a43d9538ace6c42b2b331f3e990fcb6f4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab2dd36fc9f22d313c7759d60454caf0a"><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_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ab2dd36fc9f22d313c7759d60454caf0a">signal_undo</a> ()</td></tr>
<tr class="memdesc:ab2dd36fc9f22d313c7759d60454caf0a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Emitted whenever undo is requested.  <a href="#ab2dd36fc9f22d313c7759d60454caf0a">More...</a><br /></td></tr>
<tr class="separator:ab2dd36fc9f22d313c7759d60454caf0a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3c25a165cb122a2753682e2aca3642e9"><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_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a3c25a165cb122a2753682e2aca3642e9">signal_redo</a> ()</td></tr>
<tr class="memdesc:a3c25a165cb122a2753682e2aca3642e9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Emitted whenever redo is requested.  <a href="#a3c25a165cb122a2753682e2aca3642e9">More...</a><br /></td></tr>
<tr class="separator:a3c25a165cb122a2753682e2aca3642e9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad56c29943b8879b499fc15d7c91fd724"><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, <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp;, <a class="el" href="group__gtksourceviewmmEnums.html#gac8ee02f9828ba9081be32aafd000b251">BracketMatchType</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ad56c29943b8879b499fc15d7c91fd724">signal_bracket_matched</a> ()</td></tr>
<tr class="memdesc:ad56c29943b8879b499fc15d7c91fd724"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets iter to a valid iterator pointing to the matching bracket if state is BracketMatchType::BRACKET_MATCH_FOUND.  <a href="#ad56c29943b8879b499fc15d7c91fd724">More...</a><br /></td></tr>
<tr class="separator:ad56c29943b8879b499fc15d7c91fd724"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classGtk_1_1TextBuffer"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGtk_1_1TextBuffer')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">Gtk::TextBuffer</a></td></tr>
<tr class="memitem:ac26c56c251695e47c1b9a4b45a8e7e86 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ac26c56c251695e47c1b9a4b45a8e7e86">TextBuffer</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">TextBuffer</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:ac26c56c251695e47c1b9a4b45a8e7e86 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a609965e018e81b2e4e17c88cf7805ad5 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">TextBuffer</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a609965e018e81b2e4e17c88cf7805ad5">operator=</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">TextBuffer</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a609965e018e81b2e4e17c88cf7805ad5 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a80d843a0d4111f911e896fb178459640 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a80d843a0d4111f911e896fb178459640">~TextBuffer</a> () noexcept</td></tr>
<tr class="separator:a80d843a0d4111f911e896fb178459640 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9250bc4defcf6599e94a37b0d3caaa1d inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">GtkTextBuffer *&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a9250bc4defcf6599e94a37b0d3caaa1d">gobj</a> ()</td></tr>
<tr class="separator:a9250bc4defcf6599e94a37b0d3caaa1d inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a002e580ebeb7884bfdb8d5bc5d4122fa inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">const GtkTextBuffer *&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a002e580ebeb7884bfdb8d5bc5d4122fa">gobj</a> () const </td></tr>
<tr class="separator:a002e580ebeb7884bfdb8d5bc5d4122fa inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3e79c9310e23f741898f081689b07672 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">GtkTextBuffer *&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a3e79c9310e23f741898f081689b07672">gobj_copy</a> ()</td></tr>
<tr class="separator:a3e79c9310e23f741898f081689b07672 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af69d5132c5439d356dedcbfcc7197fc3 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#af69d5132c5439d356dedcbfcc7197fc3">get_line_count</a> () const </td></tr>
<tr class="separator:af69d5132c5439d356dedcbfcc7197fc3 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ada488c738d7311ea9cedacede3b3b03c inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ada488c738d7311ea9cedacede3b3b03c">get_char_count</a> () const </td></tr>
<tr class="separator:ada488c738d7311ea9cedacede3b3b03c inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0c1f34a82750596b1c8c3be2f7fa3f33 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a0c1f34a82750596b1c8c3be2f7fa3f33">size</a> () const </td></tr>
<tr class="separator:a0c1f34a82750596b1c8c3be2f7fa3f33 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3103df31b1a0fc808997fd9da44e4734 inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a0d1ed6d2b21a7cb06d261e117a2c2672">TextBuffer::TagTable</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a3103df31b1a0fc808997fd9da44e4734">get_tag_table</a> ()</td></tr>
<tr class="separator:a3103df31b1a0fc808997fd9da44e4734 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa242143c1cdbeb925f47704bf08b436e inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a0d1ed6d2b21a7cb06d261e117a2c2672">TextBuffer::TagTable</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aa242143c1cdbeb925f47704bf08b436e">get_tag_table</a> () const </td></tr>
<tr class="separator:aa242143c1cdbeb925f47704bf08b436e inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9dc48965b1949bb54c7297e6bd1d1248 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a9dc48965b1949bb54c7297e6bd1d1248">set_text</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;text)</td></tr>
<tr class="separator:a9dc48965b1949bb54c7297e6bd1d1248 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a67c274bcdd8500d4eaf1b1d543987b0f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a67c274bcdd8500d4eaf1b1d543987b0f">set_text</a> (const char *text_begin, const char *text_end)</td></tr>
<tr class="separator:a67c274bcdd8500d4eaf1b1d543987b0f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac6466a773421e4d48994b65f4a1703ce inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ac6466a773421e4d48994b65f4a1703ce">insert</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, 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;text)</td></tr>
<tr class="separator:ac6466a773421e4d48994b65f4a1703ce inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a22492c63d1f0da2f04231d9ec4cbecc8 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a22492c63d1f0da2f04231d9ec4cbecc8">insert</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, const char *text_begin, const char *text_end)</td></tr>
<tr class="separator:a22492c63d1f0da2f04231d9ec4cbecc8 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a53360179e6441863cec6117c6f396af0 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a53360179e6441863cec6117c6f396af0">insert_at_cursor</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;text)</td></tr>
<tr class="separator:a53360179e6441863cec6117c6f396af0 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9302a066984dd922034bf51c668ae17c inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a9302a066984dd922034bf51c668ae17c">insert_at_cursor</a> (const char *text_begin, const char *text_end)</td></tr>
<tr class="separator:a9302a066984dd922034bf51c668ae17c inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5ae3a0c42cf66591c116dbb5ab3efd5f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00468.html">std::pair</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>, bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a5ae3a0c42cf66591c116dbb5ab3efd5f">insert_interactive</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, 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;text, bool default_editable=true)</td></tr>
<tr class="separator:a5ae3a0c42cf66591c116dbb5ab3efd5f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5dd1053539bc3c7b306b26047f5c2725 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00468.html">std::pair</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>, bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a5dd1053539bc3c7b306b26047f5c2725">insert_interactive</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, const char *text_begin, const char *text_end, bool default_editable=true)</td></tr>
<tr class="separator:a5dd1053539bc3c7b306b26047f5c2725 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a07f6c4236a1ede7e4e5ced196b13bc76 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a07f6c4236a1ede7e4e5ced196b13bc76">insert_interactive_at_cursor</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;text, bool default_editable=true)</td></tr>
<tr class="separator:a07f6c4236a1ede7e4e5ced196b13bc76 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8c775f5341888798b1425cb6e8091060 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a8c775f5341888798b1425cb6e8091060">insert_interactive_at_cursor</a> (const char *text_begin, const char *text_end, bool default_editable=true)</td></tr>
<tr class="separator:a8c775f5341888798b1425cb6e8091060 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaad9d1eb6498a68ec43cdbdab9199679 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aaad9d1eb6498a68ec43cdbdab9199679">insert</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_begin, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end)</td></tr>
<tr class="separator:aaad9d1eb6498a68ec43cdbdab9199679 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:affa78900d98dd158b1f78c7977a535dd inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00468.html">std::pair</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>, bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#affa78900d98dd158b1f78c7977a535dd">insert_interactive</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_begin, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end, bool default_editable=true)</td></tr>
<tr class="separator:affa78900d98dd158b1f78c7977a535dd inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a79771152944a1d16d5119e1314295c39 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a79771152944a1d16d5119e1314295c39">insert_with_tag</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, 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;text, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">Tag</a> &gt; &amp;tag)</td></tr>
<tr class="separator:a79771152944a1d16d5119e1314295c39 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae689b9324620f5b1daa1fac9d13c8130 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae689b9324620f5b1daa1fac9d13c8130">insert_with_tag</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, const char *text_begin, const char *text_end, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">Tag</a> &gt; &amp;tag)</td></tr>
<tr class="separator:ae689b9324620f5b1daa1fac9d13c8130 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a134f2de521d6a00ebf2da802481cef3d inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a134f2de521d6a00ebf2da802481cef3d">insert_with_tag</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, 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;text, 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;tag_name)</td></tr>
<tr class="separator:a134f2de521d6a00ebf2da802481cef3d inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b50becdec017a20a88c8279def83249 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a8b50becdec017a20a88c8279def83249">insert_with_tag</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, const char *text_begin, const char *text_end, 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;tag_name)</td></tr>
<tr class="separator:a8b50becdec017a20a88c8279def83249 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e381affba914baeb20e6be7810f78a1 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a7e381affba914baeb20e6be7810f78a1">insert_with_tags</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, 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;text, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">Tag</a> &gt; &gt; &amp;tags)</td></tr>
<tr class="separator:a7e381affba914baeb20e6be7810f78a1 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a53724c8e095585a0b5ea75a46ceabf1f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a53724c8e095585a0b5ea75a46ceabf1f">insert_with_tags</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, const char *text_begin, const char *text_end, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">Tag</a> &gt; &gt; &amp;tags)</td></tr>
<tr class="separator:a53724c8e095585a0b5ea75a46ceabf1f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6944809959a9b0a62a5620a2636ae9d7 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a6944809959a9b0a62a5620a2636ae9d7">insert_with_tags_by_name</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, 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;text, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &gt; &amp;tag_names)</td></tr>
<tr class="separator:a6944809959a9b0a62a5620a2636ae9d7 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3393a0e302916188385f44674c09152b inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a3393a0e302916188385f44674c09152b">insert_with_tags_by_name</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, const char *text_begin, const char *text_end, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &gt; &amp;tag_names)</td></tr>
<tr class="separator:a3393a0e302916188385f44674c09152b inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2d04291c6e818b59d014ae739e0e0140 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a2d04291c6e818b59d014ae739e0e0140">insert_markup</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, 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;markup)</td></tr>
<tr class="separator:a2d04291c6e818b59d014ae739e0e0140 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a14d91eff2f1b4dd371a8baa414b3e6 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a6a14d91eff2f1b4dd371a8baa414b3e6">insert_markup</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, const char *markup_begin, const char *markup_end)</td></tr>
<tr class="separator:a6a14d91eff2f1b4dd371a8baa414b3e6 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a93a0c92f1f46b3efaf86fcbcf746db77 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a93a0c92f1f46b3efaf86fcbcf746db77">erase</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_begin, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end)</td></tr>
<tr class="separator:a93a0c92f1f46b3efaf86fcbcf746db77 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab9e12682d654a53fc46ab36434047666 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00468.html">std::pair</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>, bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ab9e12682d654a53fc46ab36434047666">erase_interactive</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_begin, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end, bool default_editable=true)</td></tr>
<tr class="separator:ab9e12682d654a53fc46ab36434047666 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6ef8d2dcc85129cc399dca45a435ae24 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a6ef8d2dcc85129cc399dca45a435ae24">backspace</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;iter, bool interactive=true, bool default_editable=true)</td></tr>
<tr class="separator:a6ef8d2dcc85129cc399dca45a435ae24 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f761ec61482c4e2d280dcc76c719987 inherit pub_methods_classGtk_1_1TextBuffer"><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="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a6f761ec61482c4e2d280dcc76c719987">get_text</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_start, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end, bool include_hidden_chars=true) const </td></tr>
<tr class="separator:a6f761ec61482c4e2d280dcc76c719987 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afd3c4c2a218879e74ffe2e60786adb0b inherit pub_methods_classGtk_1_1TextBuffer"><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="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#afd3c4c2a218879e74ffe2e60786adb0b">get_text</a> (bool include_hidden_chars=true) const </td></tr>
<tr class="separator:afd3c4c2a218879e74ffe2e60786adb0b inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a24c6ea8b652e7f52a162e8dd81eb527b inherit pub_methods_classGtk_1_1TextBuffer"><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="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a24c6ea8b652e7f52a162e8dd81eb527b">get_slice</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_start, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end, bool include_hidden_chars=true) const </td></tr>
<tr class="separator:a24c6ea8b652e7f52a162e8dd81eb527b inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b2b44341f6fd7d423b6c3a9afa7aa36 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a8b2b44341f6fd7d423b6c3a9afa7aa36">insert_pixbuf</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt; &amp;pixbuf)</td></tr>
<tr class="separator:a8b2b44341f6fd7d423b6c3a9afa7aa36 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a80afdb5f6a08477a1977b88982069fdd inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a80afdb5f6a08477a1977b88982069fdd">insert_child_anchor</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#acc9fefd2e8f66b2e27feb1abca37a840">ChildAnchor</a> &gt; &amp;anchor)</td></tr>
<tr class="separator:a80afdb5f6a08477a1977b88982069fdd inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2fee15dc2d1e21f624d1aa85ad75448c inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#acc9fefd2e8f66b2e27feb1abca37a840">ChildAnchor</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a2fee15dc2d1e21f624d1aa85ad75448c">create_child_anchor</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;pos)</td></tr>
<tr class="separator:a2fee15dc2d1e21f624d1aa85ad75448c inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5b40599bc4daf29b2dd923deafc05e7e inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a5b40599bc4daf29b2dd923deafc05e7e">add_mark</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">TextBuffer::Mark</a> &gt; &amp;mark, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;where)</td></tr>
<tr class="separator:a5b40599bc4daf29b2dd923deafc05e7e inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa355a0cc0a3c1d7f7f9ded9cc157feb5 inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">TextBuffer::Mark</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aa355a0cc0a3c1d7f7f9ded9cc157feb5">create_mark</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;mark_name, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;where, bool left_gravity=true)</td></tr>
<tr class="separator:aa355a0cc0a3c1d7f7f9ded9cc157feb5 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b823989431ff4b3f904efe07e9c374a inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">Mark</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a8b823989431ff4b3f904efe07e9c374a">create_mark</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;where, bool left_gravity=true)</td></tr>
<tr class="separator:a8b823989431ff4b3f904efe07e9c374a inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a82c1011da5758549e634729dcbc70839 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a82c1011da5758549e634729dcbc70839">move_mark</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">Mark</a> &gt; &amp;mark, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;where)</td></tr>
<tr class="separator:a82c1011da5758549e634729dcbc70839 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1582cb666cbe6c857f6f742557e19295 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a1582cb666cbe6c857f6f742557e19295">delete_mark</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">Mark</a> &gt; &amp;mark)</td></tr>
<tr class="separator:a1582cb666cbe6c857f6f742557e19295 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2fcefaf023f05dd2e18ffa3de6063fd0 inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">TextBuffer::Mark</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a2fcefaf023f05dd2e18ffa3de6063fd0">get_mark</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;name)</td></tr>
<tr class="separator:a2fcefaf023f05dd2e18ffa3de6063fd0 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a42f3ec0e6acacc18bd90a646847b3a7c inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">TextBuffer::Mark</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a42f3ec0e6acacc18bd90a646847b3a7c">get_mark</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;name) const </td></tr>
<tr class="separator:a42f3ec0e6acacc18bd90a646847b3a7c inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ade83a7b96d0b4888de0f96cd3e0b7220 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ade83a7b96d0b4888de0f96cd3e0b7220">move_mark_by_name</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;name, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;where)</td></tr>
<tr class="separator:ade83a7b96d0b4888de0f96cd3e0b7220 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0ebfbbe158f0b53b14123158f6633661 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a0ebfbbe158f0b53b14123158f6633661">delete_mark_by_name</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;name)</td></tr>
<tr class="separator:a0ebfbbe158f0b53b14123158f6633661 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4b92f14603f572f99daf0c86abd1b9ad inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">TextBuffer::Mark</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a4b92f14603f572f99daf0c86abd1b9ad">get_insert</a> ()</td></tr>
<tr class="separator:a4b92f14603f572f99daf0c86abd1b9ad inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a59f49dbb4f753a1d523f68de91c4fe9d inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">TextBuffer::Mark</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a59f49dbb4f753a1d523f68de91c4fe9d">get_selection_bound</a> ()</td></tr>
<tr class="separator:a59f49dbb4f753a1d523f68de91c4fe9d inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1dff95f7dc9ea889a25596a87b2f8c35 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a1dff95f7dc9ea889a25596a87b2f8c35">place_cursor</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;where)</td></tr>
<tr class="separator:a1dff95f7dc9ea889a25596a87b2f8c35 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aebb16fb72cab1929c81e3859eaf09a2f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aebb16fb72cab1929c81e3859eaf09a2f">apply_tag</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">Tag</a> &gt; &amp;tag, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_start, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end)</td></tr>
<tr class="separator:aebb16fb72cab1929c81e3859eaf09a2f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afdaa0bbb6db6ffe8ad3f356f7c1a8dec inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#afdaa0bbb6db6ffe8ad3f356f7c1a8dec">remove_tag</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">Tag</a> &gt; &amp;tag, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_start, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end)</td></tr>
<tr class="separator:afdaa0bbb6db6ffe8ad3f356f7c1a8dec inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae968e19265f5dae7e47f8dfe56206fd2 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae968e19265f5dae7e47f8dfe56206fd2">apply_tag_by_name</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;name, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_start, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end)</td></tr>
<tr class="separator:ae968e19265f5dae7e47f8dfe56206fd2 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa4975c21e4effa68710686304c7aeafc inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aa4975c21e4effa68710686304c7aeafc">remove_tag_by_name</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;name, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_start, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end)</td></tr>
<tr class="separator:aa4975c21e4effa68710686304c7aeafc inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ff18822fb736109254b4614201946f6 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a9ff18822fb736109254b4614201946f6">remove_all_tags</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_start, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end)</td></tr>
<tr class="separator:a9ff18822fb736109254b4614201946f6 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a048bdd55d3f244e584074676ab482a2b inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">Tag</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a048bdd55d3f244e584074676ab482a2b">create_tag</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;tag_name)</td></tr>
<tr class="separator:a048bdd55d3f244e584074676ab482a2b inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad42f4e41a4cb2d5a824e2f0ffa78e973 inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">Tag</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ad42f4e41a4cb2d5a824e2f0ffa78e973">create_tag</a> ()</td></tr>
<tr class="separator:ad42f4e41a4cb2d5a824e2f0ffa78e973 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab0b39b1914fd24c7f4a4f3c05d751d93 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ab0b39b1914fd24c7f4a4f3c05d751d93">get_iter_at_line_offset</a> (int line_number, int char_offset)</td></tr>
<tr class="separator:ab0b39b1914fd24c7f4a4f3c05d751d93 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6ad8b4b329a6183834812ebbdc74c8cf inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a6ad8b4b329a6183834812ebbdc74c8cf">get_iter_at_line_index</a> (int line_number, int byte_index)</td></tr>
<tr class="separator:a6ad8b4b329a6183834812ebbdc74c8cf inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae92edc6a06a9a5fae2ee99f762bb59ff inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae92edc6a06a9a5fae2ee99f762bb59ff">get_iter_at_offset</a> (int char_offset)</td></tr>
<tr class="separator:ae92edc6a06a9a5fae2ee99f762bb59ff inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a77ebbbdc688b1f2d16fbbd7e048efc4f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a77ebbbdc688b1f2d16fbbd7e048efc4f">get_iter_at_line</a> (int line_number)</td></tr>
<tr class="separator:a77ebbbdc688b1f2d16fbbd7e048efc4f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6c6fe08e46f141bffe7c2dfeb459c074 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a6c6fe08e46f141bffe7c2dfeb459c074">begin</a> ()</td></tr>
<tr class="separator:a6c6fe08e46f141bffe7c2dfeb459c074 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac4ee0ba09f7d8d316e3db8b7402344a2 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ac4ee0ba09f7d8d316e3db8b7402344a2">end</a> ()</td></tr>
<tr class="separator:ac4ee0ba09f7d8d316e3db8b7402344a2 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa57d47ab3cf08829430d90fe446f41ee inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aa57d47ab3cf08829430d90fe446f41ee">get_bounds</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_begin, <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end)</td></tr>
<tr class="separator:aa57d47ab3cf08829430d90fe446f41ee inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a331fadf0c7c6c470b709802fbc09984a inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a331fadf0c7c6c470b709802fbc09984a">get_iter_at_mark</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">Mark</a> &gt; &amp;mark)</td></tr>
<tr class="separator:a331fadf0c7c6c470b709802fbc09984a inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aadecf4e2baa4eb964e3952896561322f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aadecf4e2baa4eb964e3952896561322f">get_iter_at_child_anchor</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#acc9fefd2e8f66b2e27feb1abca37a840">ChildAnchor</a> &gt; &amp;anchor)</td></tr>
<tr class="separator:aadecf4e2baa4eb964e3952896561322f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2170f20b9a330679596ef61863f6e101 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a2170f20b9a330679596ef61863f6e101">get_modified</a> () const </td></tr>
<tr class="separator:a2170f20b9a330679596ef61863f6e101 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aca1d54bd5b4497881b11f6c313ac3112 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aca1d54bd5b4497881b11f6c313ac3112">set_modified</a> (bool setting=true)</td></tr>
<tr class="separator:aca1d54bd5b4497881b11f6c313ac3112 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a44414f75c6ec2f1758832e8935b169cd inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a44414f75c6ec2f1758832e8935b169cd">get_has_selection</a> () const </td></tr>
<tr class="separator:a44414f75c6ec2f1758832e8935b169cd inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad9cecd4c6d2360985966f32cad5688a8 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ad9cecd4c6d2360985966f32cad5688a8">add_selection_clipboard</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1Clipboard.html">Clipboard</a> &gt; &amp;clipboard)</td></tr>
<tr class="separator:ad9cecd4c6d2360985966f32cad5688a8 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aea3cb7a24ecfcbbda5d586aa2ffbba2d inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aea3cb7a24ecfcbbda5d586aa2ffbba2d">remove_selection_clipboard</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1Clipboard.html">Clipboard</a> &gt; &amp;clipboard)</td></tr>
<tr class="separator:aea3cb7a24ecfcbbda5d586aa2ffbba2d inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5fc2972c6f1ff379e313e5e34299f827 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a5fc2972c6f1ff379e313e5e34299f827">cut_clipboard</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1Clipboard.html">Clipboard</a> &gt; &amp;clipboard, bool default_editable=true)</td></tr>
<tr class="separator:a5fc2972c6f1ff379e313e5e34299f827 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a975778a084bdeba3600ca5fb7dbec797 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a975778a084bdeba3600ca5fb7dbec797">copy_clipboard</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1Clipboard.html">Clipboard</a> &gt; &amp;clipboard)</td></tr>
<tr class="separator:a975778a084bdeba3600ca5fb7dbec797 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a315769f47795001dc1a9449df4c22231 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a315769f47795001dc1a9449df4c22231">paste_clipboard</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1Clipboard.html">Clipboard</a> &gt; &amp;clipboard, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;override_location, bool default_editable=true)</td></tr>
<tr class="separator:a315769f47795001dc1a9449df4c22231 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a45969585013f07f44f7c82543cc4aa8d inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a45969585013f07f44f7c82543cc4aa8d">paste_clipboard</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1Clipboard.html">Clipboard</a> &gt; &amp;clipboard, bool default_editable=true)</td></tr>
<tr class="separator:a45969585013f07f44f7c82543cc4aa8d inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abd74e8d32ae3be7f1267610a1053722f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abd74e8d32ae3be7f1267610a1053722f">get_selection_bounds</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_start, <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end) const </td></tr>
<tr class="separator:abd74e8d32ae3be7f1267610a1053722f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a371236bd4146f5520bda252d1c50d309 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a371236bd4146f5520bda252d1c50d309">erase_selection</a> (bool interactive=true, bool default_editable=true)</td></tr>
<tr class="separator:a371236bd4146f5520bda252d1c50d309 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a88b0a4096add7e8ea77098ffa5973a7f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a88b0a4096add7e8ea77098ffa5973a7f">select_range</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;ins, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;bound)</td></tr>
<tr class="separator:a88b0a4096add7e8ea77098ffa5973a7f inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af86f1ef86eb6a35df054287eab967902 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#af86f1ef86eb6a35df054287eab967902">begin_user_action</a> ()</td></tr>
<tr class="separator:af86f1ef86eb6a35df054287eab967902 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac8a7810f527798781c28de39e5acd952 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ac8a7810f527798781c28de39e5acd952">end_user_action</a> ()</td></tr>
<tr class="separator:ac8a7810f527798781c28de39e5acd952 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0607eee85d5fcac46c660b08c77976a9 inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TargetList.html">TargetList</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a0607eee85d5fcac46c660b08c77976a9">get_copy_target_list</a> () const </td></tr>
<tr class="separator:a0607eee85d5fcac46c660b08c77976a9 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3c6cd68beb996eab5b6f63744a0f9cb4 inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TargetList.html">TargetList</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a3c6cd68beb996eab5b6f63744a0f9cb4">get_paste_target_list</a> () const </td></tr>
<tr class="separator:a3c6cd68beb996eab5b6f63744a0f9cb4 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a07ca9c8f8d47fa5b0a4b267c6818b51a inherit pub_methods_classGtk_1_1TextBuffer"><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="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a07ca9c8f8d47fa5b0a4b267c6818b51a">register_serialize_format</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;mime_type, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a8553a3b9032f06c1b2a99b83de6304a7">SlotSerialize</a> &amp;slot)</td></tr>
<tr class="separator:a07ca9c8f8d47fa5b0a4b267c6818b51a inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa839b9811cc4c29f6ca1d72506bdd25e inherit pub_methods_classGtk_1_1TextBuffer"><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="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aa839b9811cc4c29f6ca1d72506bdd25e">register_serialize_tagset</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;tagset_name)</td></tr>
<tr class="separator:aa839b9811cc4c29f6ca1d72506bdd25e inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adf471c994253164ce8be64eac16fc83d inherit pub_methods_classGtk_1_1TextBuffer"><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="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#adf471c994253164ce8be64eac16fc83d">register_deserialize_format</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;mime_type, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae4a04aa6e20a531bccf73bcd6e76d1a6">SlotDeserialize</a> &amp;slot)</td></tr>
<tr class="separator:adf471c994253164ce8be64eac16fc83d inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a96727ba3da11bfbfbfac1bb23d34f2b4 inherit pub_methods_classGtk_1_1TextBuffer"><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="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a96727ba3da11bfbfbfac1bb23d34f2b4">register_deserialize_tagset</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;tagset_name)</td></tr>
<tr class="separator:a96727ba3da11bfbfbfac1bb23d34f2b4 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4dfa38c996b5eb11478a8b53e0ab8917 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a4dfa38c996b5eb11478a8b53e0ab8917">unregister_serialize_format</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;format)</td></tr>
<tr class="separator:a4dfa38c996b5eb11478a8b53e0ab8917 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b997d023e5072ed65efbc372ce38749 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a8b997d023e5072ed65efbc372ce38749">unregister_deserialize_format</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;format)</td></tr>
<tr class="separator:a8b997d023e5072ed65efbc372ce38749 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5b20c61b684f6924b2e97d07cddc9549 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a5b20c61b684f6924b2e97d07cddc9549">set_can_create_tags</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;format, bool can_create_tags=true)</td></tr>
<tr class="separator:a5b20c61b684f6924b2e97d07cddc9549 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a797303ae5468bda67b625d54fedec62b inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a797303ae5468bda67b625d54fedec62b">get_can_create_tags</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;format) const </td></tr>
<tr class="separator:a797303ae5468bda67b625d54fedec62b inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a697db63213c6096875b4d2027d9caca2 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a697db63213c6096875b4d2027d9caca2">get_serialize_formats</a> () const </td></tr>
<tr class="separator:a697db63213c6096875b4d2027d9caca2 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a68df893008c7a00aa9df1b1cfc854662 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a68df893008c7a00aa9df1b1cfc854662">get_deserialize_formats</a> () const </td></tr>
<tr class="separator:a68df893008c7a00aa9df1b1cfc854662 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aed68e9dc2613fc50aeb5fa1312648641 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">guint8 *&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aed68e9dc2613fc50aeb5fa1312648641">serialize</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">TextBuffer</a> &gt; &amp;content_buffer, 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;format, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_start, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;range_end, gsize &amp;length)</td></tr>
<tr class="separator:aed68e9dc2613fc50aeb5fa1312648641 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a00f69ab2b3e075d5376ff3e949e2bc4a inherit pub_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a00f69ab2b3e075d5376ff3e949e2bc4a">deserialize</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">TextBuffer</a> &gt; &amp;content_buffer, 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;format, <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;iter, const guint8 *data, gsize length)</td></tr>
<tr class="separator:a00f69ab2b3e075d5376ff3e949e2bc4a inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae98f2ac411b877d418023bd9c2b0e03a inherit pub_methods_classGtk_1_1TextBuffer"><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_1SignalProxy3.html">Glib::SignalProxy3</a>&lt; void, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;, 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;, int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae98f2ac411b877d418023bd9c2b0e03a">signal_insert</a> ()</td></tr>
<tr class="separator:ae98f2ac411b877d418023bd9c2b0e03a inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9115beeba329a84f79931a343b0e030b inherit pub_methods_classGtk_1_1TextBuffer"><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, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt; &amp; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a9115beeba329a84f79931a343b0e030b">signal_insert_pixbuf</a> ()</td></tr>
<tr class="separator:a9115beeba329a84f79931a343b0e030b inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6d34d70a01ba8d0d36462c61d5fa3f0c inherit pub_methods_classGtk_1_1TextBuffer"><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, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#acc9fefd2e8f66b2e27feb1abca37a840">ChildAnchor</a> &gt; &amp; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a6d34d70a01ba8d0d36462c61d5fa3f0c">signal_insert_child_anchor</a> ()</td></tr>
<tr class="separator:a6d34d70a01ba8d0d36462c61d5fa3f0c inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a264464f6eecd25b6e8b12a41f66dd9f6 inherit pub_methods_classGtk_1_1TextBuffer"><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, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a264464f6eecd25b6e8b12a41f66dd9f6">signal_erase</a> ()</td></tr>
<tr class="separator:a264464f6eecd25b6e8b12a41f66dd9f6 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a96d7ede78d4b2548a49e9d440957490e inherit pub_methods_classGtk_1_1TextBuffer"><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_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a96d7ede78d4b2548a49e9d440957490e">signal_changed</a> ()</td></tr>
<tr class="separator:a96d7ede78d4b2548a49e9d440957490e inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab51efdc6d4d18d180946b818c9078411 inherit pub_methods_classGtk_1_1TextBuffer"><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_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ab51efdc6d4d18d180946b818c9078411">signal_modified_changed</a> ()</td></tr>
<tr class="separator:ab51efdc6d4d18d180946b818c9078411 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8f54fe724af4c50ba390896a24e46db inherit pub_methods_classGtk_1_1TextBuffer"><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, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">TextBuffer::Mark</a> &gt; &amp; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ab8f54fe724af4c50ba390896a24e46db">signal_mark_set</a> ()</td></tr>
<tr class="separator:ab8f54fe724af4c50ba390896a24e46db inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a12f425e88f67b48350a7b66590308d29 inherit pub_methods_classGtk_1_1TextBuffer"><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_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">TextBuffer::Mark</a> &gt; &amp; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a12f425e88f67b48350a7b66590308d29">signal_mark_deleted</a> ()</td></tr>
<tr class="separator:a12f425e88f67b48350a7b66590308d29 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9521321e0afc85964363806b0d161e7e inherit pub_methods_classGtk_1_1TextBuffer"><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_1SignalProxy3.html">Glib::SignalProxy3</a>&lt; void, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">TextBuffer::Tag</a> &gt; &amp;, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a9521321e0afc85964363806b0d161e7e">signal_apply_tag</a> ()</td></tr>
<tr class="separator:a9521321e0afc85964363806b0d161e7e inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0e50591d26083eea8775c7f836ba9db4 inherit pub_methods_classGtk_1_1TextBuffer"><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_1SignalProxy3.html">Glib::SignalProxy3</a>&lt; void, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">TextBuffer::Tag</a> &gt; &amp;, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a0e50591d26083eea8775c7f836ba9db4">signal_remove_tag</a> ()</td></tr>
<tr class="separator:a0e50591d26083eea8775c7f836ba9db4 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af5d34c63ae4058694f3c7ed3d7da94a3 inherit pub_methods_classGtk_1_1TextBuffer"><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_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#af5d34c63ae4058694f3c7ed3d7da94a3">signal_begin_user_action</a> ()</td></tr>
<tr class="separator:af5d34c63ae4058694f3c7ed3d7da94a3 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6aa45ed04cdbbf9b27047b7437fb5da6 inherit pub_methods_classGtk_1_1TextBuffer"><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_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a6aa45ed04cdbbf9b27047b7437fb5da6">signal_end_user_action</a> ()</td></tr>
<tr class="separator:a6aa45ed04cdbbf9b27047b7437fb5da6 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5aa1c0b201aacefebedf64e917cc8da6 inherit pub_methods_classGtk_1_1TextBuffer"><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_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1Clipboard.html">Gtk::Clipboard</a> &gt; &amp; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a5aa1c0b201aacefebedf64e917cc8da6">signal_paste_done</a> ()</td></tr>
<tr class="separator:a5aa1c0b201aacefebedf64e917cc8da6 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6c907465b48f358654a24fffb8b43492 inherit pub_methods_classGtk_1_1TextBuffer"><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; <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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a0d1ed6d2b21a7cb06d261e117a2c2672">TextBuffer::TagTable</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a6c907465b48f358654a24fffb8b43492">property_tag_table</a> () const </td></tr>
<tr class="separator:a6c907465b48f358654a24fffb8b43492 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad84476a53d2eb737553899835e9c5e07 inherit pub_methods_classGtk_1_1TextBuffer"><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="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ad84476a53d2eb737553899835e9c5e07">property_text</a> ()</td></tr>
<tr class="separator:ad84476a53d2eb737553899835e9c5e07 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aec0ca7ae2aed4cbc84fe4af9b89c5446 inherit pub_methods_classGtk_1_1TextBuffer"><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; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aec0ca7ae2aed4cbc84fe4af9b89c5446">property_text</a> () const </td></tr>
<tr class="separator:aec0ca7ae2aed4cbc84fe4af9b89c5446 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5059356b88f85f7b813d72cf1fab3fc6 inherit pub_methods_classGtk_1_1TextBuffer"><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; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a5059356b88f85f7b813d72cf1fab3fc6">property_has_selection</a> () const </td></tr>
<tr class="separator:a5059356b88f85f7b813d72cf1fab3fc6 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a145c03fee83b87e9802bd2eb9d4b542c inherit pub_methods_classGtk_1_1TextBuffer"><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="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a145c03fee83b87e9802bd2eb9d4b542c">property_cursor_position</a> () const </td></tr>
<tr class="separator:a145c03fee83b87e9802bd2eb9d4b542c inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a587a7be85ee099ea2d5e9d2e9a8b45b5 inherit pub_methods_classGtk_1_1TextBuffer"><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; <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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TargetList.html">TargetList</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a587a7be85ee099ea2d5e9d2e9a8b45b5">property_copy_target_list</a> () const </td></tr>
<tr class="separator:a587a7be85ee099ea2d5e9d2e9a8b45b5 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab6c0510e5803826ddf52dce6e8a12365 inherit pub_methods_classGtk_1_1TextBuffer"><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; <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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TargetList.html">TargetList</a> &gt; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ab6c0510e5803826ddf52dce6e8a12365">property_paste_target_list</a> () const </td></tr>
<tr class="separator:ab6c0510e5803826ddf52dce6e8a12365 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a09788574b3f8d6503daf01070b33c853 inherit pub_methods_classGtk_1_1TextBuffer"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">Gtk::TextBuffer</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a09788574b3f8d6503daf01070b33c853">wrap</a> (GtkTextBuffer *object, bool take_copy=false)</td></tr>
<tr class="separator:a09788574b3f8d6503daf01070b33c853 inherit pub_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a0127f43140e01d6a6731d42f9419be27 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#a0127f43140e01d6a6731d42f9419be27">Object</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &amp;)=delete</td></tr>
<tr class="separator:a0127f43140e01d6a6731d42f9419be27 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7081561a5684709718fdf8c1875c56c0 inherit pub_methods_classGlib_1_1Object"><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_1Object.html">Object</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#a7081561a5684709718fdf8c1875c56c0">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Object</a> &amp;)=delete</td></tr>
<tr class="separator:a7081561a5684709718fdf8c1875c56c0 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a473ee068b40d5c949cee2c721d720c9a inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#a473ee068b40d5c949cee2c721d720c9a">Object</a> (<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_1Object.html">Object</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a473ee068b40d5c949cee2c721d720c9a inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2855131d475e54294dc34573f12ca9a0 inherit pub_methods_classGlib_1_1Object"><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_1Object.html">Object</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#a2855131d475e54294dc34573f12ca9a0">operator=</a> (<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_1Object.html">Object</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a2855131d475e54294dc34573f12ca9a0 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#a0e6581bcbcc6197cca07df24bb91c492">get_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1QueryQuark.html">QueryQuark</a> &amp;key)</td></tr>
<tr class="separator:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#afff7a375a862f3f899daaa99710122fa">set_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Quark.html">Quark</a> &amp;key, void *data)</td></tr>
<tr class="separator:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#a1febe3bae2dd71756e98e523cd33c1b4">set_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Quark.html">Quark</a> &amp;key, void *data, <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_1Object.html#ace6b5aedc84260604ba591df58f45b2e">DestroyNotify</a> notify)</td></tr>
<tr class="separator:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#aada5b50844bda7ee02bed0ae2a715c00">remove_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1QueryQuark.html">QueryQuark</a> &amp;quark)</td></tr>
<tr class="separator:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#ab454f71bd74403b0cc46d3cbbedd6b0e">steal_data</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1QueryQuark.html">QueryQuark</a> &amp;quark)</td></tr>
<tr class="separator:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit pub_methods_classGlib_1_1Object"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#ae4dea9a8dc611d6e4400a5b6a3cb4e7f">wrap</a> (GObject *object, bool take_copy=false)</td></tr>
<tr class="separator:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:aaf0e140e7192dcecddd9f57c46825434 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#aaf0e140e7192dcecddd9f57c46825434">ObjectBase</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &amp;)=delete</td></tr>
<tr class="separator:aaf0e140e7192dcecddd9f57c46825434 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a15f8834a320eac98dc1c1b8a9a2fd4c1 inherit pub_methods_classGlib_1_1ObjectBase"><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_1ObjectBase.html">ObjectBase</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a15f8834a320eac98dc1c1b8a9a2fd4c1">operator=</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">ObjectBase</a> &amp;)=delete</td></tr>
<tr class="separator:a15f8834a320eac98dc1c1b8a9a2fd4c1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#aab599d3eec4b4a9ddc95ccdc6100053d">set_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;property_name, 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_1ValueBase.html">Glib::ValueBase</a> &amp;value)</td></tr>
<tr class="separator:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a5e30750441b92f0246c9d4ece95fc8a0">get_property_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;property_name, <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_1ValueBase.html">Glib::ValueBase</a> &amp;value) const </td></tr>
<tr class="separator:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#ad37844f7ea2c0091a22d011e04c48820">set_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;property_name, const PropertyType &amp;value)</td></tr>
<tr class="separator:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a5f894c9c36ad391fdc85552af67a8530">get_property</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;property_name, PropertyType &amp;value) const </td></tr>
<tr class="separator:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#adc6c1e8f094275114d6e2c3ef3a33f98">connect_property_changed</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;property_name, 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">sigc::slot</a>&lt; void &gt; &amp;slot)</td></tr>
<tr class="separator:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a>&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a896d7773c00bd2dcd310c861282ee8d1">connect_property_changed_with_return</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;property_name, 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">sigc::slot</a>&lt; void &gt; &amp;slot)</td></tr>
<tr class="separator:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a6e9e13b75f116c20212d318204ce8ea3">freeze_notify</a> ()</td></tr>
<tr class="separator:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a1bd8ea7bd8c4084ade6b3c27dddf06a4">thaw_notify</a> ()</td></tr>
<tr class="separator:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a896a8a5db20043ea82956e3ef4b9c4ae">reference</a> () const </td></tr>
<tr class="separator:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a3234b8ffb2a35b927e2978c8f3bfbfe3">unreference</a> () const </td></tr>
<tr class="separator:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject *&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a4c6efc18be8cb9c56e58fc0bd20fafbe">gobj</a> ()</td></tr>
<tr class="separator:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">const GObject *&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a778a94181132976bbfb0519793f3b32e">gobj</a> () const </td></tr>
<tr class="separator:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject *&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a9b2a5eb93102f1849e5419016e22a15f">gobj_copy</a> () const </td></tr>
<tr class="separator:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_structsigc_1_1trackable"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_structsigc_1_1trackable')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">sigc::trackable</a></td></tr>
<tr class="memitem:a09f5b2fe24c2ac1da8322ed0ea1553ea inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a09f5b2fe24c2ac1da8322ed0ea1553ea">trackable</a> ()</td></tr>
<tr class="separator:a09f5b2fe24c2ac1da8322ed0ea1553ea inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7efefbcab4645648a366da3439242198 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a7efefbcab4645648a366da3439242198">trackable</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/structsigc_1_1trackable.html">trackable</a> &amp;src)</td></tr>
<tr class="separator:a7efefbcab4645648a366da3439242198 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9a6ff5a4d7c51cede2117525f470f96a inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a9a6ff5a4d7c51cede2117525f470f96a">trackable</a> (<a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a9a6ff5a4d7c51cede2117525f470f96a inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a75587da09e30031db7a2519843f1f4fb inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a75587da09e30031db7a2519843f1f4fb">~trackable</a> ()</td></tr>
<tr class="separator:a75587da09e30031db7a2519843f1f4fb inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab14931670837728e49bb5ca88fb16db5 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#ab14931670837728e49bb5ca88fb16db5">add_destroy_notify_callback</a> (void *data, <a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a3338954d7565534bd945290b798e13ed">func_destroy_notify</a> func) const </td></tr>
<tr class="separator:ab14931670837728e49bb5ca88fb16db5 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af2e23cfe7adc1ca844a3350bbac557cb inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#af2e23cfe7adc1ca844a3350bbac557cb">notify_callbacks</a> ()</td></tr>
<tr class="separator:af2e23cfe7adc1ca844a3350bbac557cb inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7494fbad23a65932ff1457d00d4edaf5 inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a7494fbad23a65932ff1457d00d4edaf5">operator=</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/structsigc_1_1trackable.html">trackable</a> &amp;src)</td></tr>
<tr class="separator:a7494fbad23a65932ff1457d00d4edaf5 inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a400b5799372238211a4437844d923a4e inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a400b5799372238211a4437844d923a4e">operator=</a> (<a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">trackable</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a400b5799372238211a4437844d923a4e inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b9dffa8a50ff13ba33e6c7f10468e2b inherit pub_methods_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a8b9dffa8a50ff13ba33e6c7f10468e2b">remove_destroy_notify_callback</a> (void *data) const </td></tr>
<tr class="separator:a8b9dffa8a50ff13ba33e6c7f10468e2b inherit pub_methods_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:ac349d8f8ecbea353bcabef8ecc6bcc61"><td class="memItemLeft" align="right" valign="top">static GType&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ac349d8f8ecbea353bcabef8ecc6bcc61">get_type</a> ()</td></tr>
<tr class="memdesc:ac349d8f8ecbea353bcabef8ecc6bcc61"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system.  <a href="#ac349d8f8ecbea353bcabef8ecc6bcc61">More...</a><br /></td></tr>
<tr class="separator:ac349d8f8ecbea353bcabef8ecc6bcc61"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a12f8871468e215e5b53761fa1e1654ae"><td class="memItemLeft" align="right" valign="top">static <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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Buffer.html">Buffer</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a12f8871468e215e5b53761fa1e1654ae">create</a> ()</td></tr>
<tr class="memdesc:a12f8871468e215e5b53761fa1e1654ae"><td class="mdescLeft">&#160;</td><td class="mdescRight">Create a new source buffer.  <a href="#a12f8871468e215e5b53761fa1e1654ae">More...</a><br /></td></tr>
<tr class="separator:a12f8871468e215e5b53761fa1e1654ae"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8dbe0d5aaea6b846f5a7f5b0aea114b5"><td class="memItemLeft" align="right" valign="top">static <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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Buffer.html">Buffer</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a8dbe0d5aaea6b846f5a7f5b0aea114b5">create</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextTagTable.html">Gtk::TextTagTable</a> &gt;&amp; tag_table)</td></tr>
<tr class="memdesc:a8dbe0d5aaea6b846f5a7f5b0aea114b5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Create a new source buffer.  <a href="#a8dbe0d5aaea6b846f5a7f5b0aea114b5">More...</a><br /></td></tr>
<tr class="separator:a8dbe0d5aaea6b846f5a7f5b0aea114b5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aabdbd5216a416301e557655171373272"><td class="memItemLeft" align="right" valign="top">static <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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Buffer.html">Buffer</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#aabdbd5216a416301e557655171373272">create</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Language.html">Language</a> &gt;&amp; language)</td></tr>
<tr class="memdesc:aabdbd5216a416301e557655171373272"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a new source buffer using the highlighting patterns in <em>language</em>.  <a href="#aabdbd5216a416301e557655171373272">More...</a><br /></td></tr>
<tr class="separator:aabdbd5216a416301e557655171373272"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_static_methods_classGtk_1_1TextBuffer"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classGtk_1_1TextBuffer')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">Gtk::TextBuffer</a></td></tr>
<tr class="memitem:ad0a1be1b3db6e4aa4ded6559d8b8bcab inherit pub_static_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">static GType&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ad0a1be1b3db6e4aa4ded6559d8b8bcab">get_type</a> ()</td></tr>
<tr class="separator:ad0a1be1b3db6e4aa4ded6559d8b8bcab inherit pub_static_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af25db2e069fb4c4de97de7c32bc93e8b inherit pub_static_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">static <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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">TextBuffer</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#af25db2e069fb4c4de97de7c32bc93e8b">create</a> ()</td></tr>
<tr class="separator:af25db2e069fb4c4de97de7c32bc93e8b inherit pub_static_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac9a640942cb84ecbff7d6e166b2639fd inherit pub_static_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">static <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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">TextBuffer</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ac9a640942cb84ecbff7d6e166b2639fd">create</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a0d1ed6d2b21a7cb06d261e117a2c2672">TagTable</a> &gt; &amp;tag_table)</td></tr>
<tr class="separator:ac9a640942cb84ecbff7d6e166b2639fd inherit pub_static_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a0388eef7b29b154e22052a4ba466ceaa"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a0388eef7b29b154e22052a4ba466ceaa">Buffer</a> ()</td></tr>
<tr class="separator:a0388eef7b29b154e22052a4ba466ceaa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5b21c30023ce42e317c84300a831dd41"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a5b21c30023ce42e317c84300a831dd41">Buffer</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextTagTable.html">Gtk::TextTagTable</a> &gt;&amp; tag_table)</td></tr>
<tr class="separator:a5b21c30023ce42e317c84300a831dd41"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab81548c1e7a0c99160281f415e90256c"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#ab81548c1e7a0c99160281f415e90256c">Buffer</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Language.html">Language</a> &gt;&amp; language)</td></tr>
<tr class="separator:ab81548c1e7a0c99160281f415e90256c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b101785f6571dd432ab6825c2677c78"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a8b101785f6571dd432ab6825c2677c78">on_undo</a> ()</td></tr>
<tr class="memdesc:a8b101785f6571dd432ab6825c2677c78"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGsv_1_1Buffer.html#ab2dd36fc9f22d313c7759d60454caf0a" title="Emitted whenever undo is requested. ">signal_undo()</a>.  <a href="#a8b101785f6571dd432ab6825c2677c78">More...</a><br /></td></tr>
<tr class="separator:a8b101785f6571dd432ab6825c2677c78"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a650d6aeafddeefe6a44ee86a2f2d799a"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a650d6aeafddeefe6a44ee86a2f2d799a">on_redo</a> ()</td></tr>
<tr class="memdesc:a650d6aeafddeefe6a44ee86a2f2d799a"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGsv_1_1Buffer.html#a3c25a165cb122a2753682e2aca3642e9" title="Emitted whenever redo is requested. ">signal_redo()</a>.  <a href="#a650d6aeafddeefe6a44ee86a2f2d799a">More...</a><br /></td></tr>
<tr class="separator:a650d6aeafddeefe6a44ee86a2f2d799a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a80fa52d8313d6b3487c99783b81674f1"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a80fa52d8313d6b3487c99783b81674f1">on_bracket_matched</a> (<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; iter, <a class="el" href="group__gtksourceviewmmEnums.html#gac8ee02f9828ba9081be32aafd000b251">BracketMatchType</a> state)</td></tr>
<tr class="memdesc:a80fa52d8313d6b3487c99783b81674f1"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGsv_1_1Buffer.html#ad56c29943b8879b499fc15d7c91fd724" title="Sets iter to a valid iterator pointing to the matching bracket if state is BracketMatchType::BRACKET_...">signal_bracket_matched()</a>.  <a href="#a80fa52d8313d6b3487c99783b81674f1">More...</a><br /></td></tr>
<tr class="separator:a80fa52d8313d6b3487c99783b81674f1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classGtk_1_1TextBuffer"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGtk_1_1TextBuffer')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">Gtk::TextBuffer</a></td></tr>
<tr class="memitem:aaff1f509a0cb4e93146bab120a0b4536 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aaff1f509a0cb4e93146bab120a0b4536">TextBuffer</a> ()</td></tr>
<tr class="separator:aaff1f509a0cb4e93146bab120a0b4536 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3a3b8930d89219e3164a478a6455a751 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a3a3b8930d89219e3164a478a6455a751">TextBuffer</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a0d1ed6d2b21a7cb06d261e117a2c2672">TagTable</a> &gt; &amp;tag_table)</td></tr>
<tr class="separator:a3a3b8930d89219e3164a478a6455a751 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a673d6eb5c9dbf67dec2df98b259bea37 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a673d6eb5c9dbf67dec2df98b259bea37">on_insert</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;pos, 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;text, int bytes)</td></tr>
<tr class="separator:a673d6eb5c9dbf67dec2df98b259bea37 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1a0999b9fc4334dfab8dcafceba1d2ab inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a1a0999b9fc4334dfab8dcafceba1d2ab">on_insert_pixbuf</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;pos, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> &gt; &amp;pixbuf)</td></tr>
<tr class="separator:a1a0999b9fc4334dfab8dcafceba1d2ab inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a45f0f179157ad34849c78b7a5b233a51 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a45f0f179157ad34849c78b7a5b233a51">on_insert_child_anchor</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;pos, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#acc9fefd2e8f66b2e27feb1abca37a840">ChildAnchor</a> &gt; &amp;anchor)</td></tr>
<tr class="separator:a45f0f179157ad34849c78b7a5b233a51 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4e76d60d5f9f403a55f3ee44f1cc4a09 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a4e76d60d5f9f403a55f3ee44f1cc4a09">on_erase</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;range_start, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;range_end)</td></tr>
<tr class="separator:a4e76d60d5f9f403a55f3ee44f1cc4a09 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a27f97169acd3b17994c57b4e39ff5bb5 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a27f97169acd3b17994c57b4e39ff5bb5">on_changed</a> ()</td></tr>
<tr class="separator:a27f97169acd3b17994c57b4e39ff5bb5 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a10a5297bdc97369787e708ef45110a5a inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a10a5297bdc97369787e708ef45110a5a">on_modified_changed</a> ()</td></tr>
<tr class="separator:a10a5297bdc97369787e708ef45110a5a inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac55e8b2bfcea40d99617f3c4490b0ab5 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ac55e8b2bfcea40d99617f3c4490b0ab5">on_mark_set</a> (const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;location, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">TextBuffer::Mark</a> &gt; &amp;mark)</td></tr>
<tr class="separator:ac55e8b2bfcea40d99617f3c4490b0ab5 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac7aa57c7e11c6bb786cd91415ac1e3c4 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ac7aa57c7e11c6bb786cd91415ac1e3c4">on_mark_deleted</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">TextBuffer::Mark</a> &gt; &amp;mark)</td></tr>
<tr class="separator:ac7aa57c7e11c6bb786cd91415ac1e3c4 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2b171c4fb8875be6620c4d00e3fa7629 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a2b171c4fb8875be6620c4d00e3fa7629">on_apply_tag</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">TextBuffer::Tag</a> &gt; &amp;tag, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;range_begin, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;range_end)</td></tr>
<tr class="separator:a2b171c4fb8875be6620c4d00e3fa7629 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1ce4201cc9daea50f2602580c1e46162 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a1ce4201cc9daea50f2602580c1e46162">on_remove_tag</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">TextBuffer::Tag</a> &gt; &amp;tag, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;range_begin, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">TextBuffer::iterator</a> &amp;range_end)</td></tr>
<tr class="separator:a1ce4201cc9daea50f2602580c1e46162 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6c2958bafaa8304cce894b75b456884e inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a6c2958bafaa8304cce894b75b456884e">on_begin_user_action</a> ()</td></tr>
<tr class="separator:a6c2958bafaa8304cce894b75b456884e inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaf826a8af12e91e51b47629bde77e57d inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#aaf826a8af12e91e51b47629bde77e57d">on_end_user_action</a> ()</td></tr>
<tr class="separator:aaf826a8af12e91e51b47629bde77e57d inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac117abe658974d3bbfe7c778ce2a39a3 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ac117abe658974d3bbfe7c778ce2a39a3">on_paste_done</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1Clipboard.html">Gtk::Clipboard</a> &gt; &amp;clipboard)</td></tr>
<tr class="separator:ac117abe658974d3bbfe7c778ce2a39a3 inherit pro_methods_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#ad43f7c5ad0336e1eb3af622392a112eb">Object</a> ()</td></tr>
<tr class="separator:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#a6d72588496bd7ac03f72420021fb94a5">Object</a> (const Glib::ConstructParams &amp;construct_params)</td></tr>
<tr class="separator:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#a6f490eeaeb71db673c36799a0f729be5">Object</a> (GObject *castitem)</td></tr>
<tr class="separator:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aca9f9705c065c26621b7745d40f5b344 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#aca9f9705c065c26621b7745d40f5b344">~Object</a> () noexcept</td></tr>
<tr class="separator:aca9f9705c065c26621b7745d40f5b344 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a27d3451d9ca28d6a2f00838d7c56d545">ObjectBase</a> ()</td></tr>
<tr class="separator:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#ad4ef18214894c6874579313ab21d1018">ObjectBase</a> (const char *custom_type_name)</td></tr>
<tr class="separator:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a3d59b4d85b0ee72a727e6b2e1b31a2ff">ObjectBase</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00947.html">std::type_info</a> &amp;custom_type_info)</td></tr>
<tr class="separator:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e2e177061f6a6e09c4cf3da49c6dfd3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a7e2e177061f6a6e09c4cf3da49c6dfd3">ObjectBase</a> (<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_1ObjectBase.html">ObjectBase</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a7e2e177061f6a6e09c4cf3da49c6dfd3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2e968f118314ba4d5debfd2850d18003 inherit pro_methods_classGlib_1_1ObjectBase"><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_1ObjectBase.html">ObjectBase</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a2e968f118314ba4d5debfd2850d18003">operator=</a> (<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_1ObjectBase.html">ObjectBase</a> &amp;&amp;src) noexcept</td></tr>
<tr class="separator:a2e968f118314ba4d5debfd2850d18003 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae56ec45e9ebeaacf24be4fb54ed2eea3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#ae56ec45e9ebeaacf24be4fb54ed2eea3">~ObjectBase</a> () noexcept=0</td></tr>
<tr class="separator:ae56ec45e9ebeaacf24be4fb54ed2eea3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a3faafb14c4f0ca60fbf0f5f5c4d549d0">initialize</a> (GObject *castitem)</td></tr>
<tr class="separator:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a44ddc123cd98ed0083aa06364365c8d3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><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_1ObjectBase.html#a44ddc123cd98ed0083aa06364365c8d3">initialize_move</a> (GObject *castitem, <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_1ObjectBase.html">Glib::ObjectBase</a> *previous_wrapper)</td></tr>
<tr class="separator:a44ddc123cd98ed0083aa06364365c8d3 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="related"></a>
Related Functions</h2></td></tr>
<tr><td class="ititle" colspan="2"><p>(Note that these are not member functions.) </p>
</td></tr>
<tr class="memitem:a4f671057cca47edb3efabaa4b45238bb"><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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Buffer.html">Gsv::Buffer</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classGsv_1_1Buffer.html#a4f671057cca47edb3efabaa4b45238bb">wrap</a> (GtkSourceBuffer* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a4f671057cca47edb3efabaa4b45238bb"><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="#a4f671057cca47edb3efabaa4b45238bb">More...</a><br /></td></tr>
<tr class="separator:a4f671057cca47edb3efabaa4b45238bb"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_types_classGtk_1_1TextBuffer"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classGtk_1_1TextBuffer')"><img src="closed.png" alt="-"/>&#160;Public Types inherited from <a class="el" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">Gtk::TextBuffer</a></td></tr>
<tr class="memitem:abb8a8a5abd18b84218e12a4678dcc3c0 inherit pub_types_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">TextIter</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a></td></tr>
<tr class="separator:abb8a8a5abd18b84218e12a4678dcc3c0 inherit pub_types_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae218bf327872d2a5ed6e3202db2627d2 inherit pub_types_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextTag.html">TextTag</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae218bf327872d2a5ed6e3202db2627d2">Tag</a></td></tr>
<tr class="separator:ae218bf327872d2a5ed6e3202db2627d2 inherit pub_types_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0d1ed6d2b21a7cb06d261e117a2c2672 inherit pub_types_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextTagTable.html">TextTagTable</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a0d1ed6d2b21a7cb06d261e117a2c2672">TagTable</a></td></tr>
<tr class="separator:a0d1ed6d2b21a7cb06d261e117a2c2672 inherit pub_types_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae8dd977bbf98a58d400f880ed30a946e inherit pub_types_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextMark.html">TextMark</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae8dd977bbf98a58d400f880ed30a946e">Mark</a></td></tr>
<tr class="separator:ae8dd977bbf98a58d400f880ed30a946e inherit pub_types_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acc9fefd2e8f66b2e27feb1abca37a840 inherit pub_types_classGtk_1_1TextBuffer"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextChildAnchor.html">TextChildAnchor</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#acc9fefd2e8f66b2e27feb1abca37a840">ChildAnchor</a></td></tr>
<tr class="separator:acc9fefd2e8f66b2e27feb1abca37a840 inherit pub_types_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8553a3b9032f06c1b2a99b83de6304a7 inherit pub_types_classGtk_1_1TextBuffer"><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; guint8 *, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">TextBuffer</a> &gt; &amp;, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;, const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;, gsize &amp; &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#a8553a3b9032f06c1b2a99b83de6304a7">SlotSerialize</a></td></tr>
<tr class="separator:a8553a3b9032f06c1b2a99b83de6304a7 inherit pub_types_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae4a04aa6e20a531bccf73bcd6e76d1a6 inherit pub_types_classGtk_1_1TextBuffer"><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; bool, 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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">TextBuffer</a> &gt; &amp;, <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#abb8a8a5abd18b84218e12a4678dcc3c0">iterator</a> &amp;, const guint8 *, gsize, bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ae4a04aa6e20a531bccf73bcd6e76d1a6">SlotDeserialize</a></td></tr>
<tr class="separator:ae4a04aa6e20a531bccf73bcd6e76d1a6 inherit pub_types_classGtk_1_1TextBuffer"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_types_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classGlib_1_1Object')"><img src="closed.png" alt="-"/>&#160;Public Types inherited from <a class="el" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ace6b5aedc84260604ba591df58f45b2e inherit pub_types_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">typedef void(*&#160;</td><td class="memItemRight" valign="bottom"><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_1Object.html#ace6b5aedc84260604ba591df58f45b2e">DestroyNotify</a>) (gpointer data)</td></tr>
<tr class="separator:ace6b5aedc84260604ba591df58f45b2e inherit pub_types_classGlib_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_types_structsigc_1_1trackable"><td colspan="2" onclick="javascript:toggleInherit('pub_types_structsigc_1_1trackable')"><img src="closed.png" alt="-"/>&#160;Public Types inherited from <a class="el" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html">sigc::trackable</a></td></tr>
<tr class="memitem:a3338954d7565534bd945290b798e13ed inherit pub_types_structsigc_1_1trackable"><td class="memItemLeft" align="right" valign="top">typedef internal::func_destroy_notify&#160;</td><td class="memItemRight" valign="bottom"><a class="elRef" doxygen="libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html#a3338954d7565534bd945290b798e13ed">func_destroy_notify</a></td></tr>
<tr class="separator:a3338954d7565534bd945290b798e13ed inherit pub_types_structsigc_1_1trackable"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p><a class="el" href="classGsv_1_1Buffer.html" title="Buffer object for View. ">Buffer</a> object for <a class="el" href="classGsv_1_1View.html" title="The view object. ">View</a>. </p>
<p>The <a class="el" href="classGsv_1_1Buffer.html" title="Buffer object for View. ">Buffer</a> class is the model for <a class="el" href="classGsv_1_1View.html" title="The view object. ">View</a> widgets. It extends the <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html">Gtk::TextBuffer</a> class by adding features useful to display and edit source code as syntax highlighting and bracket matching. It also implements support for undo/redo operations.</p>
<p>To create a <a class="el" href="classGsv_1_1Buffer.html" title="Buffer object for View. ">Buffer</a> use <a class="el" href="classGsv_1_1Buffer.html#a12f8871468e215e5b53761fa1e1654ae" title="Create a new source buffer. ">Buffer::create()</a>. A convenience overload for initial setting a <a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> is also provided.</p>
<p>By default highlighting is enabled, but you can disable it with <a class="el" href="classGsv_1_1Buffer.html#a5dc35dabe91ef921b0d224a34be6c323" title="Controls whether syntax is highlighted in the buffer. ">Buffer::set_highlight_syntax()</a>. </p>
</div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a39ecbda11d0cb6bee33806067da96417"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">Gsv::Buffer::Buffer </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGsv_1_1Buffer.html">Buffer</a>&amp;&amp;&#160;</td>
          <td class="paramname"><em>src</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="a5f5bb83853fe65275338213413f72f25"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual Gsv::Buffer::~Buffer </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span><span class="mlabel">noexcept</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="a0388eef7b29b154e22052a4ba466ceaa"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">Gsv::Buffer::Buffer </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">explicit</span><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="a5b21c30023ce42e317c84300a831dd41"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">Gsv::Buffer::Buffer </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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextTagTable.html">Gtk::TextTagTable</a> &gt; &amp;&#160;</td>
          <td class="paramname"><em>tag_table</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">explicit</span><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="ab81548c1e7a0c99160281f415e90256c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">Gsv::Buffer::Buffer </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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Language.html">Language</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>language</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">explicit</span><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a1b42e54f73ea5c7b18346f851c0472dc"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gsv::Buffer::backward_iter_to_source_mark </td>
          <td>(</td>
          <td class="paramtype"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>iter</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>category</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Moves iter to the position of the previous <a class="el" href="classGsv_1_1Mark.html" title="Mark class for Buffer. ">Mark</a> of the given category. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iter</td><td>An iterator. </td></tr>
    <tr><td class="paramname">category</td><td>Category to search.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if iter was moved. </dd></dl>

</div>
</div>
<a class="anchor" id="a18aedabee278ab0e1e43f6bedfc33a17"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gsv::Buffer::backward_iter_to_source_mark </td>
          <td>(</td>
          <td class="paramtype"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>iter</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Moves iter to the position of the previous <a class="el" href="classGsv_1_1Mark.html" title="Mark class for Buffer. ">Mark</a> of any category. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iter</td><td>An iterator.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if iter was moved. </dd></dl>

</div>
</div>
<a class="anchor" id="a98a8b05c13f12b75105a69523b7665ee"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::begin_not_undoable_action </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Marks the beginning of a not undoable action on the buffer, disabling the undo manager. </p>
<p>Typically you would call this function before initially setting the contents of the buffer (e.g. when loading a file in a text editor).</p>
<p>You may nest <a class="el" href="classGsv_1_1Buffer.html#a98a8b05c13f12b75105a69523b7665ee" title="Marks the beginning of a not undoable action on the buffer, disabling the undo manager. ">begin_not_undoable_action()</a> / <a class="el" href="classGsv_1_1Buffer.html#a802da4b8cb51bb6a40a4defaab567526" title="Marks the end of a not undoable action on the buffer. ">end_not_undoable_action()</a> blocks. </p>

</div>
</div>
<a class="anchor" id="a202124d2a4c4d655f4eb664c21728263"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gsv::Buffer::can_redo </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Determines whether a source buffer can redo the last action (i.e. if the last operation was an undo). </p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if a redo is possible. </dd></dl>

</div>
</div>
<a class="anchor" id="a903be8b0ab8764095412bcfbd5717195"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gsv::Buffer::can_undo </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Determines whether a source buffer can undo the last action. </p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if it's possible to undo the last action. </dd></dl>

</div>
</div>
<a class="anchor" id="a12f8871468e215e5b53761fa1e1654ae"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <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_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1Buffer.html">Buffer</a>&gt; Gsv::Buffer::create </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Create a new source buffer. </p>
<p>Internally it will create a new <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextTagTable.html">Gtk::TextTagTable</a> also.</p>
<dl class="section return"><dt>Returns</dt><dd>A new <a class="el" href="classGsv_1_1Buffer.html" title="Buffer object for View. ">Buffer</a>.</dd></dl>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000001">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="a8dbe0d5aaea6b846f5a7f5b0aea114b5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <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_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1Buffer.html">Buffer</a>&gt; Gsv::Buffer::create </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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextTagTable.html">Gtk::TextTagTable</a> &gt; &amp;&#160;</td>
          <td class="paramname"><em>tag_table</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Create a new source buffer. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">tag_table</td><td>A <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextTagTable.html">Gtk::TextTagTable</a> or empty <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_1RefPtr.html">Glib::RefPtr</a>, to create new.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A new <a class="el" href="classGsv_1_1Buffer.html" title="Buffer object for View. ">Buffer</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="aabdbd5216a416301e557655171373272"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static <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_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1Buffer.html">Buffer</a>&gt; Gsv::Buffer::create </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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Language.html">Language</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>language</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Creates a new source buffer using the highlighting patterns in <em>language</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">language</td><td>A <a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A new <a class="el" href="classGsv_1_1Buffer.html" title="Buffer object for View. ">Buffer</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a4b53a20c20e3a1b48e2214c27c77fe01"></a>
<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_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1Mark.html">Gsv::Mark</a>&gt; Gsv::Buffer::create_source_mark </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>name</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>category</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>where</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Creates a source mark in the buffer of category category. </p>
<p>A source mark is a <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextMark.html">Gtk::TextMark</a> but organised into categories. Depending on the category a pixbuf can be specified that will be displayed along the line of the mark.</p>
<p>Marks always have left gravity and are moved to the beginning of the line when the user deletes the line they were in.</p>
<p>Typical uses for a source mark are bookmarks, breakpoints, current executing instruction indication in a source file, etc.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>The name of the mark. </td></tr>
    <tr><td class="paramname">category</td><td>A string defining the mark category. </td></tr>
    <tr><td class="paramname">where</td><td>Location to place the mark.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A new <a class="el" href="classGsv_1_1Mark.html" title="Mark class for Buffer. ">Mark</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a7e9d18eeaa7dbf15a26ff78148d0a323"></a>
<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_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1Mark.html">Gsv::Mark</a>&gt; Gsv::Buffer::create_source_mark </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>category</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>where</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Creates an anonymous source mark in the buffer of category category. </p>
<p>A source mark is a <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextMark.html">Gtk::TextMark</a> but organised into categories. Depending on the category a pixbuf can be specified that will be displayed along the line of the mark.</p>
<p>Like a <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextMark.html">Gtk::TextMark</a>, a <a class="el" href="classGsv_1_1Mark.html" title="Mark class for Buffer. ">Mark</a> can be anonymous.</p>
<p>Marks always have left gravity and are moved to the beginning of the line when the user deletes the line they were in.</p>
<p>Typical uses for a source mark are bookmarks, breakpoints, current executing instruction indication in a source file, etc.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">category</td><td>A string defining the mark category. </td></tr>
    <tr><td class="paramname">where</td><td>Location to place the mark.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A new <a class="el" href="classGsv_1_1Mark.html" title="Mark class for Buffer. ">Mark</a>.</dd></dl>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000002">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="a802da4b8cb51bb6a40a4defaab567526"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::end_not_undoable_action </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Marks the end of a not undoable action on the buffer. </p>
<p>When the last not undoable block is closed through the call to this function, the list of undo actions is cleared and the undo manager is re-enabled. </p>

</div>
</div>
<a class="anchor" id="a6f231823bae5d9653acb80183dd16864"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::ensure_highlight </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>start</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>end</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Forces buffer to analyze and highlight the given area synchronously. </p>
<dl class="section note"><dt>Note</dt><dd>This is a potentially slow operation and should be used only when you need to make sure that some text not currently visible is highlighted, for instance before printing.</dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">start</td><td>Start of the area to highlight. </td></tr>
    <tr><td class="paramname">end</td><td>End of the area to highlight. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a667aea8104bb6bedb12f0fa4076fa38e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gsv::Buffer::forward_iter_to_source_mark </td>
          <td>(</td>
          <td class="paramtype"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>iter</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>category</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Moves iter to the position of the next <a class="el" href="classGsv_1_1Mark.html" title="Mark class for Buffer. ">Mark</a> of the given category. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iter</td><td>An iterator. </td></tr>
    <tr><td class="paramname">category</td><td>Category to search.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if iter was moved. </dd></dl>

</div>
</div>
<a class="anchor" id="ac5f694fe4f4d2bc6d308183132490f3b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gsv::Buffer::forward_iter_to_source_mark </td>
          <td>(</td>
          <td class="paramtype"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>iter</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Moves iter to the position of the next <a class="el" href="classGsv_1_1Mark.html" title="Mark class for Buffer. ">Mark</a> of the given category. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iter</td><td>An iterator.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if iter was moved. </dd></dl>

</div>
</div>
<a class="anchor" id="a4dcd97d6df6388179a3e5cdd101b8eaf"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt;<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&gt; Gsv::Buffer::get_context_classes_at_iter </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>iter</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get all defined context classes at iter. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iter</td><td>A <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>An array of context class names.</dd></dl>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000007">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="a4efdc60692f27af9518e3e5540be4c8a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gsv::Buffer::get_highlight_matching_brackets </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Determines whether bracket match highlighting is activated for the source buffer. </p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the source buffer will highlight matching brackets. </dd></dl>

</div>
</div>
<a class="anchor" id="a06c3e3e579ced82c55296a74621e1f9f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gsv::Buffer::get_highlight_syntax </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Determines whether syntax highlighting is activated in the source buffer. </p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if syntax highlighting is enabled, <code>false</code> otherwise. </dd></dl>

</div>
</div>
<a class="anchor" id="ae78a6996a1e5e998a2a1ccee20c2b90c"></a>
<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_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1Language.html">Language</a>&gt; Gsv::Buffer::get_language </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the <a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> associated with the buffer. </p>
<dl class="section return"><dt>Returns</dt><dd>A <a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> associated with the buffer, or empty <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_1RefPtr.html">Glib::RefPtr</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a9d34b85c9041da4b32d96a29e7203a72"></a>
<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_1RefPtr.html">Glib::RefPtr</a>&lt;const <a class="el" href="classGsv_1_1Language.html">Language</a>&gt; Gsv::Buffer::get_language </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the <a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> associated with the buffer. </p>
<dl class="section return"><dt>Returns</dt><dd>A <a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> associated with the buffer, or empty <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_1RefPtr.html">Glib::RefPtr</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="afaf2232bfbcc6a8959ecd04e4def2f05"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int Gsv::Buffer::get_max_undo_levels </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Determines the number of undo levels the buffer will track for buffer edits. </p>
<dl class="section return"><dt>Returns</dt><dd>The maximum number of possible undo levels or -1 if no limit is set. </dd></dl>

</div>
</div>
<a class="anchor" id="a54c3f01e507936f763bae73588397592"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt;<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1Mark.html">Gsv::Mark</a>&gt; &gt; Gsv::Buffer::get_source_marks_at_iter </td>
          <td>(</td>
          <td class="paramtype"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>iter</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>category</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the list of marks of the given <em>category</em> at <em>iter</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iter</td><td>An iterator. </td></tr>
    <tr><td class="paramname">category</td><td>Category to search for.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A list of source marks. </dd></dl>

</div>
</div>
<a class="anchor" id="a196ff8a2f98914a204021a0567450da9"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt;<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1Mark.html">Gsv::Mark</a>&gt; &gt; Gsv::Buffer::get_source_marks_at_iter </td>
          <td>(</td>
          <td class="paramtype"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>iter</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the list of marks of any category at <em>iter</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iter</td><td>An iterator.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A list of source marks. </dd></dl>

</div>
</div>
<a class="anchor" id="a9f15695f071d4035c6e6066acc68444d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt;<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1Mark.html">Gsv::Mark</a>&gt; &gt; Gsv::Buffer::get_source_marks_at_line </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>line</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>category</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the list of marks of the given <em>category</em> at <em>line</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">line</td><td>A line number. </td></tr>
    <tr><td class="paramname">category</td><td>Category to search for.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A list of source marks. </dd></dl>

</div>
</div>
<a class="anchor" id="a03388861307ae7563ffdf3cf052c4957"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>&lt;<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1Mark.html">Gsv::Mark</a>&gt; &gt; Gsv::Buffer::get_source_marks_at_line </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>line</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the list of marks of any category at <em>line</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">line</td><td>A line number.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A list of source marks. </dd></dl>

</div>
</div>
<a class="anchor" id="ad50a0ab68b02735053e870d502f69232"></a>
<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_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1StyleScheme.html">StyleScheme</a>&gt; Gsv::Buffer::get_style_scheme </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the <a class="el" href="classGsv_1_1StyleScheme.html" title="Object controlling appearance of View. ">StyleScheme</a> currently used in buffer. </p>
<dl class="section return"><dt>Returns</dt><dd>The <a class="el" href="classGsv_1_1StyleScheme.html" title="Object controlling appearance of View. ">StyleScheme</a> set by <a class="el" href="classGsv_1_1Buffer.html#aadf64edd98a05e523c62b525bee8508f" title="Sets style scheme used by the buffer. ">set_style_scheme()</a>, or empty <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_1RefPtr.html">Glib::RefPtr</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="a67760ca1f9bf07d18b4628f8a372ea3f"></a>
<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_1RefPtr.html">Glib::RefPtr</a>&lt;const <a class="el" href="classGsv_1_1StyleScheme.html">StyleScheme</a>&gt; Gsv::Buffer::get_style_scheme </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Returns the <a class="el" href="classGsv_1_1StyleScheme.html" title="Object controlling appearance of View. ">StyleScheme</a> currently used in buffer. </p>
<dl class="section return"><dt>Returns</dt><dd>The <a class="el" href="classGsv_1_1StyleScheme.html" title="Object controlling appearance of View. ">StyleScheme</a> set by <a class="el" href="classGsv_1_1Buffer.html#aadf64edd98a05e523c62b525bee8508f" title="Sets style scheme used by the buffer. ">set_style_scheme()</a>, or empty <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_1RefPtr.html">Glib::RefPtr</a>. </dd></dl>

</div>
</div>
<a class="anchor" id="ac349d8f8ecbea353bcabef8ecc6bcc61"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static GType Gsv::Buffer::get_type </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Get the GType for this class, for use with the underlying GObject type system. </p>

</div>
</div>
<a class="anchor" id="a259dcab1d6af088676d6423ee5df07ec"></a>
<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_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1UndoManager.html">UndoManager</a>&gt; Gsv::Buffer::get_undo_manager </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the undo manager associated with the buffer. </p>
<dl class="section return"><dt>Returns</dt><dd>A <a class="el" href="classGsv_1_1UndoManager.html" title="Undo manager interface for View. ">UndoManager</a>.</dd></dl>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000008">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="abd7eb2fbf0c2fb754f265b5741ed80e4"></a>
<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_1RefPtr.html">Glib::RefPtr</a>&lt;const <a class="el" href="classGsv_1_1UndoManager.html">UndoManager</a>&gt; Gsv::Buffer::get_undo_manager </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the undo manager associated with the buffer. </p>
<dl class="section return"><dt>Returns</dt><dd>A <a class="el" href="classGsv_1_1UndoManager.html" title="Undo manager interface for View. ">UndoManager</a>.</dd></dl>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000009">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="a24938a39680b18f08bf6c6721fe353d5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">GtkSourceBuffer* Gsv::Buffer::gobj </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

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

</div>
</div>
<a class="anchor" id="a14bb577f1d9ea5f5619e4eb0a8a1b2d4"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const GtkSourceBuffer* Gsv::Buffer::gobj </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

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

</div>
</div>
<a class="anchor" id="ace8320a5bd7e3e3d3426a9e55b2ab2e6"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">GtkSourceBuffer* Gsv::Buffer::gobj_copy </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. </p>

</div>
</div>
<a class="anchor" id="a36170c1825ba89b315e93a46d031a8f1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gsv::Buffer::iter_backward_to_context_class_toggle </td>
          <td>(</td>
          <td class="paramtype"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>iter</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>context_class</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Moves backward to the next toggle (on or off) of the context class. </p>
<p>If no matching context class toggles are found, returns <code>false</code>, otherwise <code>true</code>. Does not return toggles located at <em>iter</em>, only toggles after <em>iter</em>. Sets <em>iter</em> to the location of the toggle, or to the end of the buffer if no toggle is found.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iter</td><td>A <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>. </td></tr>
    <tr><td class="paramname">context_class</td><td>The context class.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Whether we found a context class toggle before <em>iter</em>.</dd></dl>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000005">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="ad31e337ba973b8ae84592f64fc7414ac"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gsv::Buffer::iter_forward_to_context_class_toggle </td>
          <td>(</td>
          <td class="paramtype"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>iter</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>context_class</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Moves forward to the next toggle (on or off) of the context class. </p>
<p>If no matching context class toggles are found, returns <code>false</code>, otherwise <code>true</code>. Does not return toggles located at <em>iter</em>, only toggles after <em>iter</em>. Sets <em>iter</em> to the location of the toggle, or to the end of the buffer if no toggle is found.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iter</td><td>A <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>. </td></tr>
    <tr><td class="paramname">context_class</td><td>The context class.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Whether we found a context class toggle after <em>iter</em>.</dd></dl>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000006">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="a57a3c8a4e14091f7747f241295ca416a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool Gsv::Buffer::iter_has_context_class </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>iter</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>context_class</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Check if the class <em>context_class</em> is set on <code>iter</code>. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">iter</td><td>A <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>. </td></tr>
    <tr><td class="paramname">context_class</td><td>Class to search for.</td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if <em>context_class</em> is set on <code>iter</code>.</dd></dl>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000004">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="a80fa52d8313d6b3487c99783b81674f1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gsv::Buffer::on_bracket_matched </td>
          <td>(</td>
          <td class="paramtype"><a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>iter</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="group__gtksourceviewmmEnums.html#gac8ee02f9828ba9081be32aafd000b251">BracketMatchType</a>&#160;</td>
          <td class="paramname"><em>state</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This is a default handler for the signal <a class="el" href="classGsv_1_1Buffer.html#ad56c29943b8879b499fc15d7c91fd724" title="Sets iter to a valid iterator pointing to the matching bracket if state is BracketMatchType::BRACKET_...">signal_bracket_matched()</a>. </p>

</div>
</div>
<a class="anchor" id="a650d6aeafddeefe6a44ee86a2f2d799a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gsv::Buffer::on_redo </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This is a default handler for the signal <a class="el" href="classGsv_1_1Buffer.html#a3c25a165cb122a2753682e2aca3642e9" title="Emitted whenever redo is requested. ">signal_redo()</a>. </p>

</div>
</div>
<a class="anchor" id="a8b101785f6571dd432ab6825c2677c78"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void Gsv::Buffer::on_undo </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>This is a default handler for the signal <a class="el" href="classGsv_1_1Buffer.html#ab2dd36fc9f22d313c7759d60454caf0a" title="Emitted whenever undo is requested. ">signal_undo()</a>. </p>

</div>
</div>
<a class="anchor" id="a8ca84fc88ba6bcb60abe27c57f5c5b3f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classGsv_1_1Buffer.html">Buffer</a>&amp; Gsv::Buffer::operator= </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classGsv_1_1Buffer.html">Buffer</a>&amp;&amp;&#160;</td>
          <td class="paramname"><em>src</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="afccb347b39e030107151a062a372a5ab"></a>
<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; Gsv::Buffer::property_can_redo </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Whether Redo operation is possible. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a92508bd7c4636e3c487d7d86fe8ff0e9"></a>
<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; Gsv::Buffer::property_can_undo </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Whether Undo operation is possible. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a3ba19dfc4c534355c17a69c97880521a"></a>
<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; Gsv::Buffer::property_highlight_matching_brackets </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Whether to highlight matching brackets. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a604c1ee86c62c03110643a8aca75117d"></a>
<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; Gsv::Buffer::property_highlight_matching_brackets </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Whether to highlight matching brackets. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="af80f2e414db60836e345e296bea35b35"></a>
<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; Gsv::Buffer::property_highlight_syntax </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Whether to highlight syntax in the buffer. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="aeac4c1ade8b2507ad298343dc5b623ee"></a>
<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; Gsv::Buffer::property_highlight_syntax </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Whether to highlight syntax in the buffer. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="af886d031d376a1b9bd258fc99f64daac"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1Language.html">Language</a>&gt; &gt; Gsv::Buffer::property_language </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p><a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> object to get highlighting patterns from. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a17b6a9f35aa32a30e8fc40b729bd9149"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1Language.html">Language</a>&gt; &gt; Gsv::Buffer::property_language </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p><a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> object to get highlighting patterns from. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a18058bf1aed302fe75cfd738a102d16d"></a>
<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; Gsv::Buffer::property_max_undo_levels </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Number of undo levels for the buffer. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a9b054dc3da1973bdac11a1ee4b8c0f3e"></a>
<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; Gsv::Buffer::property_max_undo_levels </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Number of undo levels for the buffer. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a5fe0dce45cb923381219702ad0caf202"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1StyleScheme.html">StyleScheme</a>&gt; &gt; Gsv::Buffer::property_style_scheme </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p><a class="el" href="classGsv_1_1Style.html" title="Class representing a style. ">Style</a> scheme. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="adde5b35639089a4b280e5959d40c583d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1StyleScheme.html">StyleScheme</a>&gt; &gt; Gsv::Buffer::property_style_scheme </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p><a class="el" href="classGsv_1_1Style.html" title="Class representing a style. ">Style</a> scheme. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a91d8de733770b23e8ca00de0dc8f6272"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1UndoManager.html">UndoManager</a>&gt; &gt; Gsv::Buffer::property_undo_manager </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>The buffer undo manager. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="ac455f13be699fd7a61bfb659ea6c0ab8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="el" href="classGsv_1_1UndoManager.html">UndoManager</a>&gt; &gt; Gsv::Buffer::property_undo_manager </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>The buffer undo manager. </p>
<dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>

</div>
</div>
<a class="anchor" id="a9f89c2f17d628947b496e57333571c36"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::redo </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Redoes the last undo operation. </p>
<p>Use <a class="el" href="classGsv_1_1Buffer.html#a202124d2a4c4d655f4eb664c21728263" title="Determines whether a source buffer can redo the last action (i.e. if the last operation was an undo)...">can_redo()</a> to check whether a call to this function will have any effect. </p>

</div>
</div>
<a class="anchor" id="a7c02c673dd6cc341e10c9022b8915379"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::remove_source_marks </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>start</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>end</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>category</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Remove all marks of <em>category</em> between start and end from the buffer. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">start</td><td>A <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>. </td></tr>
    <tr><td class="paramname">end</td><td>A <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>. </td></tr>
    <tr><td class="paramname">category</td><td>Category to search for. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ad752a08d9ca22136ec3a6fb2ac042c9a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::remove_source_marks </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>start</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a> &amp;&#160;</td>
          <td class="paramname"><em>end</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Remove all marks of any category between start and end from the buffer. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">start</td><td>A <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>. </td></tr>
    <tr><td class="paramname">end</td><td>A <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000003">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="a4b0664e29b2bd0c3b7c3765609f01f9a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::set_default_undo_manager </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Set the default buffer undo manager. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000011">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="a5aca7aafeac540ed30f91b3c47a5d1a3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::set_highlight_matching_brackets </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>highlight</em> = <code>true</code></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Controls the bracket match highlighting function in the buffer. </p>
<p>If activated, when you position your cursor over a bracket character (a parenthesis, a square bracket, etc.) the matching opening or closing bracket character will be highlighted. You can specify the style with the gtk_source_buffer_set_bracket_match_style() function.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">highlight</td><td><code>true</code> if you want matching brackets highlighted. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a5dc35dabe91ef921b0d224a34be6c323"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::set_highlight_syntax </td>
          <td>(</td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>highlight</em> = <code>true</code></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Controls whether syntax is highlighted in the buffer. </p>
<p>If highlight is <code>true</code>, the text will be highlighted according to the syntax patterns specified in the language set with <a class="el" href="classGsv_1_1Buffer.html#a094b11544c3893c6c3aa8476b31f982c" title="Associate a Language with the source buffer. ">set_language()</a>. If highlight is <code>false</code>, syntax highlighting is disabled and all the <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextTag.html">Gtk::TextTag</a> objects that have been added by the syntax highlighting engine are removed from the buffer.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">highlight</td><td><code>true</code> to enable syntax highlighting, <code>false</code> to disable it. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a094b11544c3893c6c3aa8476b31f982c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::set_language </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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Language.html">Language</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>language</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Associate a <a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> with the source buffer. </p>
<p>If language is not empty and syntax highlighting is enabled, the syntax patterns defined in language will be used to highlight the text contained in the buffer. If language is empty, the text contained in the buffer is not highlighted.</p>
<p>The buffer holds a reference to language.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">language</td><td>A <a class="el" href="classGsv_1_1Language.html" title="Object representing a syntax highlighted language. ">Language</a> to set, or empty <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_1RefPtr.html">Glib::RefPtr</a>. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a71c4bb2a0d48c725ca71034a4a7fe093"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::set_max_undo_levels </td>
          <td>(</td>
          <td class="paramtype">int&#160;</td>
          <td class="paramname"><em>max_undo_levels</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets the number of undo levels for user actions the buffer will track. </p>
<p>If the number of user actions exceeds the limit set by this function, older actions will be discarded.</p>
<p>If max_undo_levels is -1, no limit is set.</p>
<p>A new action is started whenever the method <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#af86f1ef86eb6a35df054287eab967902">Gtk::TextBuffer::begin_user_action()</a> is called. In general, this happens whenever the user presses any key which modifies the buffer, but the undo manager will try to merge similar consecutive actions, such as multiple character insertions into one action. But, inserting a newline does start a new action.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">max_undo_levels</td><td>The desired maximum number of undo levels. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aadf64edd98a05e523c62b525bee8508f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::set_style_scheme </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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1StyleScheme.html">StyleScheme</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>scheme</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets style scheme used by the buffer. </p>
<p>If scheme is empty no style scheme is used.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">scheme</td><td><a class="el" href="classGsv_1_1Style.html" title="Class representing a style. ">Style</a> scheme. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a269e9a8905cfda2b36cc7902fe915a5a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::set_undo_manager </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_1RefPtr.html">Glib::RefPtr</a>&lt; const <a class="el" href="classGsv_1_1UndoManager.html">UndoManager</a> &gt;&amp;&#160;</td>
          <td class="paramname"><em>undo_manager</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Set the buffer undo manager. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">undo_manager</td><td>A <a class="el" href="classGsv_1_1UndoManager.html" title="Undo manager interface for View. ">UndoManager</a>.</td></tr>
  </table>
  </dd>
</dl>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000010">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="ad56c29943b8879b499fc15d7c91fd724"></a>
<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="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp;,<a class="el" href="group__gtksourceviewmmEnums.html#gac8ee02f9828ba9081be32aafd000b251">BracketMatchType</a> &gt; Gsv::Buffer::signal_bracket_matched </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Sets iter to a valid iterator pointing to the matching bracket if state is BracketMatchType::BRACKET_MATCH_FOUND. </p>
<dl class="section user"><dt>Handler parameters:</dt><dd>iter Iterator to initialize. state State of bracket matching.</dd></dl>
<dl class="since_3_0"><dt><b><a class="el" href="since_3_0.html#_since_3_0000002">Since gtksourceviewmm 3.0:</a></b></dt><dd></dd></dl>
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_bracket_matched(<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; iter, BracketMatchType state)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="a62e375fe7796704d1e4ff2b1da219346"></a>
<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="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp;,<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; &gt; Gsv::Buffer::signal_highlight_updated </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Emitted whenever the syntax highlighting information has been updated, so that views can request a redraw if the region changed is visible. </p>
<p>Usually only view widgets displaying this buffer will be interested in this signal.</p>
<dl class="section user"><dt>Handler parameters:</dt><dd>start An iterator at the start of the updated region. end An iterator at the end of the updated region.</dd></dl>
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_highlight_updated(<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; start, <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextIter.html">Gtk::TextIter</a>&amp; end)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="a3c25a165cb122a2753682e2aca3642e9"></a>
<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_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt; Gsv::Buffer::signal_redo </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Emitted whenever redo is requested. </p>
<p>In fact, it is emitted when <a class="el" href="classGsv_1_1Buffer.html#a9f89c2f17d628947b496e57333571c36" title="Redoes the last undo operation. ">redo()</a> is called.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000013">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_redo()</code> </dd></dl>

</div>
</div>
<a class="anchor" id="a43d9538ace6c42b2b331f3e990fcb6f4"></a>
<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_1SignalProxy1.html">Glib::SignalProxy1</a>&lt; void,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_1RefPtr.html">Glib::RefPtr</a>&lt;<a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextMark.html">Gtk::TextMark</a>&gt;&amp; &gt; Gsv::Buffer::signal_source_mark_updated </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Emitted whenever a marker of sourcebuffer has changed and needs to be redisplayed by the view. </p>
<p>A change in a marker's type or location can trigger this signal. Note that moving a marker causes the emission of this signal twice: one for the old location and one for the new.</p>
<dl class="section user"><dt>Handler parameters:</dt><dd>where An iterator at the location where the change occurred.</dd></dl>
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_source_mark_updated(const Glib::RefPtr&lt;Gtk::TextMark&gt;&amp; where)</code> </dd></dl>

</div>
</div>
<a class="anchor" id="ab2dd36fc9f22d313c7759d60454caf0a"></a>
<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_1SignalProxy0.html">Glib::SignalProxy0</a>&lt; void &gt; Gsv::Buffer::signal_undo </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Emitted whenever undo is requested. </p>
<p>In fact, it is emitted when <a class="el" href="classGsv_1_1Buffer.html#ab00652572f2c1555e72cbb9aedb28caf" title="Undoes the last user action which modified the buffer. ">undo()</a> is called.</p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000012">Since gtksourceviewmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_undo()</code> </dd></dl>

</div>
</div>
<a class="anchor" id="ab00652572f2c1555e72cbb9aedb28caf"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::undo </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Undoes the last user action which modified the buffer. </p>
<p>Use <a class="el" href="classGsv_1_1Buffer.html#a903be8b0ab8764095412bcfbd5717195" title="Determines whether a source buffer can undo the last action. ">can_undo()</a> to check whether a call to this function will have any effect.</p>
<p>Actions are defined as groups of operations between a call to <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#af86f1ef86eb6a35df054287eab967902">Gtk::TextBuffer::begin_user_action()</a> and <a class="elRef" doxygen="gtkmm-3.0.tag:http://library.gnome.org/devel/gtkmm/unstable/" href="http://library.gnome.org/devel/gtkmm/unstable/classGtk_1_1TextBuffer.html#ac8a7810f527798781c28de39e5acd952">Gtk::TextBuffer::end_user_action()</a>, or sequences of similar edits (inserts or deletes) on the same line. </p>

</div>
</div>
<a class="anchor" id="ad7206f5f78066d9821694937cdb71daf"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void Gsv::Buffer::unset_style_scheme </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Unsets style scheme used by the buffer. </p>
<p>It is the same like calling <a class="el" href="classGsv_1_1Buffer.html#aadf64edd98a05e523c62b525bee8508f" title="Sets style scheme used by the buffer. ">set_style_scheme()</a> with empty pointer. </p>

</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="a4f671057cca47edb3efabaa4b45238bb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <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_1RefPtr.html">Glib::RefPtr</a>&lt; <a class="el" href="classGsv_1_1Buffer.html">Gsv::Buffer</a> &gt; wrap </td>
          <td>(</td>
          <td class="paramtype">GtkSourceBuffer *&#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>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">related</span></span>  </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 class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">object</td><td>The C instance. </td></tr>
    <tr><td class="paramname">take_copy</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="section return"><dt>Returns</dt><dd>A C++ instance that wraps this C instance. </dd></dl>

</div>
</div>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Sep 22 2015 13:28:10 for gtksourceviewmm by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>