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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>Main Page - Header</title>
<link href="inti.css" rel="stylesheet" type="text/css">
<meta name="description" content="Reference Manual">
<meta name="author" content="The Inti Development Team">
</head>
<body style="color: rgb(0, 0, 0); background-color: rgb(231, 232, 231);"
link="#000099" vlink="#990099" alink="#000099">
<table cellpadding="0" cellspacing="0" border="0" style="width: 100%;">
<tbody>
<tr
style="color: rgb(255, 255, 204); font-family: helvetica,arial,sans-serif; font-weight: bold;">
<td
style="vertical-align: top; background-color: rgb(0, 55, 85); text-align: center;">
<font size="+1">Reference Manual</font> </td>
</tr>
<tr>
<td valign="top" height="116" background="../images/top-fade.png"
align="center"><img src="../images/inti-logo.png" alt="Inti Logo"> <br>
</td>
</tr>
</tbody>
</table>
</body>
</html>
<!-- Generated by Doxygen 1.3.2 -->
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Compound List</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="namespacemembers.html">Namespace Members</a> | <a class="qindex" href="functions.html">Compound Members</a> | <a class="qindex" href="globals.html">File Members</a></div>
<h1>Inti::Gtk::SourceBuffer Class Reference</h1>A GtkSourceBuffer C++ wrapper class.
<a href="#_details">More...</a>
<p>
<code>#include <<a class="el" href="sourcebuffer_8h-source.html">inti/gtk-sourceview/sourcebuffer.h</a>></code>
<p>
<a href="classInti_1_1Gtk_1_1SourceBuffer-members.html">List of all members.</a><h2>Public Member Functions</h2>
<tr><td colspan="2"><div class="groupHeader">Constructors</div></td></tr>
<ul>
<li><a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z6_0">SourceBuffer</a> (<a class="el" href="classInti_1_1Gtk_1_1SourceTagTable.html">SourceTagTable</a> *table=0)
<dl class="el"><dd class="mdescRight">Constructs a new source buffer with a empty default buffer. </em> <a href="#z6_0"></a><em><br><br></dl><li><a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z6_1">SourceBuffer</a> (const <a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a> &language)
<dl class="el"><dd class="mdescRight">Constructs a new source buffer which will highlight text according to the specified language. </em> <a href="#z6_1"></a><em><br><br></dl><li><a name="z6_2" doxytag="Inti::Gtk::SourceBuffer::~SourceBuffer"></a>
virtual <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z6_2">~SourceBuffer</a> ()
<dl class="el"><dd class="mdescRight">Destructor. <br><br></dl></ul>
<tr><td colspan="2"><div class="groupHeader">Accessors</div></td></tr>
<ul>
<li><a name="z7_0" doxytag="Inti::Gtk::SourceBuffer::gtk_source_buffer"></a>
GtkSourceBuffer * <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_0">gtk_source_buffer</a> () const
<dl class="el"><dd class="mdescRight">Get a pointer to the GtkSourceBuffer structure. <br><br></dl><li><a name="z7_1" doxytag="Inti::Gtk::SourceBuffer::gtk_source_buffer_class"></a>
GtkSourceBufferClass * <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_1">gtk_source_buffer_class</a> () const
<dl class="el"><dd class="mdescRight">Get a pointer to the GtkSourceBufferClass structure. <br><br></dl><li><a name="z7_2" doxytag="Inti::Gtk::SourceBuffer::operator GtkSourceBuffer *"></a>
<a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_2">operator GtkSourceBuffer *</a> () const
<dl class="el"><dd class="mdescRight">Conversion operator; safely converts a <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html">SourceBuffer</a> to a GtkSourceBuffer pointer. <br><br></dl><li><a name="z7_3" doxytag="Inti::Gtk::SourceBuffer::is_gtk_source_buffer"></a>
bool <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_3">is_gtk_source_buffer</a> () const
<dl class="el"><dd class="mdescRight">Returns true if the object instance is of type GTK_TYPE_SOURCE_BUFFER. <br><br></dl><li><a class="el" href="classInti_1_1Gtk_1_1SourceTagTable.html">SourceTagTable</a> * <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_4">get_source_tag_table</a> () const
<dl class="el"><dd class="mdescRight">Get the <a class="el" href="classInti_1_1Gtk_1_1SourceTagTable.html">SourceTagTable</a> associated with the buffer. </em> <a href="#z7_4"></a><em><br><br></dl><li>bool <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_5">get_check_brackets</a> () const
<dl class="el"><dd class="mdescRight">Determines whether bracket match highlighting is activated for the source buffer. </em> <a href="#z7_5"></a><em><br><br></dl><li>bool <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_6">get_highlight</a> () const
<dl class="el"><dd class="mdescRight">Determines whether text highlighting is activated in the source buffer. </em> <a href="#z7_6"></a><em><br><br></dl><li>int <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_7">get_max_undo_levels</a> () const
<dl class="el"><dd class="mdescRight">Determines the number of undo levels the buffer will track for buffer edits. </em> <a href="#z7_7"></a><em><br><br></dl><li><a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a> * <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_8">get_language</a> () const
<dl class="el"><dd class="mdescRight">Determines the <a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a> used by the buffer. </em> <a href="#z7_8"></a><em><br><br></dl><li>G::Unichar <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_9">get_escape_char</a> () const
<dl class="el"><dd class="mdescRight">Determines the escape character used by the source buffer highlighting engine. </em> <a href="#z7_9"></a><em><br><br></dl><li>bool <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_10">can_undo</a> () const
<dl class="el"><dd class="mdescRight">Determines whether a source buffer can undo the last action. </em> <a href="#z7_10"></a><em><br><br></dl><li>bool <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_11">can_redo</a> () const
<dl class="el"><dd class="mdescRight">Determines whether a source buffer can redo the last undo action. </em> <a href="#z7_11"></a><em><br><br></dl><li><a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> * <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_12">get_marker</a> (const String &name) const
<dl class="el"><dd class="mdescRight">Looks up the <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> named <em>name</em> in the buffer, returning null if it doesn't exists. </em> <a href="#z7_12"></a><em><br><br></dl><li>std::vector< <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> * > <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_13">get_markers</a> (const TextIter &start, const TextIter &end) const
<dl class="el"><dd class="mdescRight">Gets a list of the source markers inside the range delimited by <em>start</em> and <em>end</em>. </em> <a href="#z7_13"></a><em><br><br></dl><li><a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> * <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_14">get_first_marker</a> () const
<dl class="el"><dd class="mdescRight">Gets the first marker (nearest to the top) in the buffer. </em> <a href="#z7_14"></a><em><br><br></dl><li><a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> * <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_15">get_last_marker</a> () const
<dl class="el"><dd class="mdescRight">Gets the last marker (nearest to the end) in the buffer. </em> <a href="#z7_15"></a><em><br><br></dl><li>TextIter <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_16">get_iter_at_marker</a> (const <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> &marker) const
<dl class="el"><dd class="mdescRight">Obtains an initialized iterator to the location of <em>marker</em>. </em> <a href="#z7_16"></a><em><br><br></dl><li><a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> * <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_17">get_next_marker</a> (TextIter &iter) const
<dl class="el"><dd class="mdescRight">Gets the nearest marker to the right of iter. </em> <a href="#z7_17"></a><em><br><br></dl><li><a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> * <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_18">get_prev_marker</a> (TextIter &iter) const
<dl class="el"><dd class="mdescRight">Gets the nearest marker to the left of iter. </em> <a href="#z7_18"></a><em><br><br></dl></ul>
<tr><td colspan="2"><div class="groupHeader">Methods</div></td></tr>
<ul>
<li>void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_0">set_check_brackets</a> (bool check_brackets)
<dl class="el"><dd class="mdescRight">Controls the bracket match highlighting function in the buffer. </em> <a href="#z8_0"></a><em><br><br></dl><li>void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_1">set_bracket_match_style</a> (const <a class="el" href="classInti_1_1Gtk_1_1SourceTagStyle.html">SourceTagStyle</a> &style)
<dl class="el"><dd class="mdescRight">Sets the style used for highlighting matching brackets. </em> <a href="#z8_1"></a><em><br><br></dl><li>void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_2">set_highlight</a> (bool highlight)
<dl class="el"><dd class="mdescRight">Controls whether text is highlighted in the buffer. </em> <a href="#z8_2"></a><em><br><br></dl><li>void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_3">set_max_undo_levels</a> (int max_undo_levels)
<dl class="el"><dd class="mdescRight">Sets the number of undo levels for user actions the buffer will track. </em> <a href="#z8_3"></a><em><br><br></dl><li>void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_4">set_language</a> (const <a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a> *language)
<dl class="el"><dd class="mdescRight">Sets the <a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a> the source buffer will use, adding SourceTags with the language's patterns and setting the escape character with <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_5">set_escape_char()</a>. </em> <a href="#z8_4"></a><em><br><br></dl><li>void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_5">set_escape_char</a> (G::Unichar escape_char)
<dl class="el"><dd class="mdescRight">Sets the escape character to be used by the highlighting engine. </em> <a href="#z8_5"></a><em><br><br></dl><li>void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_6">undo</a> ()
<dl class="el"><dd class="mdescRight">Undoes the last user action which modified the buffer. </em> <a href="#z8_6"></a><em><br><br></dl><li>void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_7">redo</a> ()
<dl class="el"><dd class="mdescRight">Redoes the last undo operation. </em> <a href="#z8_7"></a><em><br><br></dl><li>void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_8">begin_not_undoable_action</a> ()
<dl class="el"><dd class="mdescRight">Marks the beginning of a not undoable action on the buffer, disabling the undo manager. </em> <a href="#z8_8"></a><em><br><br></dl><li>void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_9">end_not_undoable_action</a> ()
<dl class="el"><dd class="mdescRight">Marks the end of a not undoable action on the buffer. </em> <a href="#z8_9"></a><em><br><br></dl><li><a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> * <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_10">create_marker</a> (const String &name, const String &type, const TextIter &where)
<dl class="el"><dd class="mdescRight">Creates a marker in the buffer of type <em>type</em>. </em> <a href="#z8_10"></a><em><br><br></dl><li>void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_11">move_marker</a> (<a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> &marker, const TextIter &where)
<dl class="el"><dd class="mdescRight">Moves <em>marker</em> to the new location <em>where</em>. </em> <a href="#z8_11"></a><em><br><br></dl><li>void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_12">delete_marker</a> (<a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> &marker)
<dl class="el"><dd class="mdescRight">Deletes <em>marker</em> from the source buffer. </em> <a href="#z8_12"></a><em><br><br></dl></ul>
<tr><td colspan="2"><div class="groupHeader">Property Proxies</div></td></tr>
<ul>
<li><a name="z9_0" doxytag="Inti::Gtk::SourceBuffer::prop_escape_char"></a>
const EscapeCharPropertyProxy <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z9_0">prop_escape_char</a> ()
<dl class="el"><dd class="mdescRight">The escape character for syntax delimiters (G::Unichar : Read / Write). <br><br></dl><li><a name="z9_1" doxytag="Inti::Gtk::SourceBuffer::prop_check_brackets"></a>
const CheckBracketsPropertyProxy <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z9_1">prop_check_brackets</a> ()
<dl class="el"><dd class="mdescRight">Whether to check and highlight matching brackets (bool : Read / Write). <br><br></dl><li><a name="z9_2" doxytag="Inti::Gtk::SourceBuffer::prop_highlight"></a>
const HighlightPropertyProxy <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z9_2">prop_highlight</a> ()
<dl class="el"><dd class="mdescRight">Whether to syntax highlight the buffer (bool : Read / Write). <br><br></dl><li><a name="z9_3" doxytag="Inti::Gtk::SourceBuffer::prop_max_undo_levels"></a>
const MaxUndoLevelsPropertyProxy <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z9_3">prop_max_undo_levels</a> ()
<dl class="el"><dd class="mdescRight">Sets the number of undo levels for the buffer (int : Read / Write). <br><br></dl><li><a name="z9_4" doxytag="Inti::Gtk::SourceBuffer::prop_language"></a>
const LanguagePropertyProxy <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z9_4">prop_language</a> ()
<dl class="el"><dd class="mdescRight">The language object to get the highlighting rules from (SourceBuffer* : Read / Write). <br><br></dl></ul>
<tr><td colspan="2"><div class="groupHeader">Signal Proxies</div></td></tr>
<ul>
<li><a name="z10_0" doxytag="Inti::Gtk::SourceBuffer::sig_can_undo"></a>
const CanUndoSignalProxy <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z10_0">sig_can_undo</a> ()
<dl class="el"><dd class="mdescRight">Connect to the can_undo_signal; emitted whenever there is a change in the buffer's ability to undo an operation. <br><br></dl><li><a name="z10_1" doxytag="Inti::Gtk::SourceBuffer::sig_can_redo"></a>
const CanRedoSignalProxy <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z10_1">sig_can_redo</a> ()
<dl class="el"><dd class="mdescRight">Connect to the can_redo_signal; emitted whenever there is a change in the buffer's ability to redo an operation. <br><br></dl><li><a name="z10_2" doxytag="Inti::Gtk::SourceBuffer::sig_highlight_updated"></a>
const HighlightUpdatedSignalProxy <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z10_2">sig_highlight_updated</a> ()
<dl class="el"><dd class="mdescRight">Connect to the highlight_updated_signal; emitted whenever the syntax highlighting information has been updated, so that views can request a redraw if the region changed is visible. <br><br></dl><li><a name="z10_3" doxytag="Inti::Gtk::SourceBuffer::sig_marker_updated"></a>
const MarkerUpdatedSignalProxy <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z10_3">sig_marker_updated</a> ()
<dl class="el"><dd class="mdescRight">Connect to the marker_updated_signal; emitted when a source marker in the buffer is updated. <br><br></dl></ul>
<h2>Protected Member Functions</h2>
<tr><td colspan="2"><div class="groupHeader">Constructors</div></td></tr>
<ul>
<li><a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z4_0">SourceBuffer</a> (GtkSourceBuffer *buffer, bool reference=false)
<dl class="el"><dd class="mdescRight">Construct a new <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html">SourceBuffer</a> from an existing GtkSourceBuffer. </em> <a href="#z4_0"></a><em><br><br></dl></ul>
<tr><td colspan="2"><div class="groupHeader">Signal Handlers</div></td></tr>
<ul>
<li>virtual void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z5_0">on_can_undo</a> (bool can_undo)
<dl class="el"><dd class="mdescRight">Called whenever there is a change in the buffer's ability to undo an operation. </em> <a href="#z5_0"></a><em><br><br></dl><li>virtual void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z5_1">on_can_redo</a> (bool can_redo)
<dl class="el"><dd class="mdescRight">Called whenever there is a change in the buffer's ability to redo an operation. </em> <a href="#z5_1"></a><em><br><br></dl><li>virtual void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z5_2">on_highlight_updated</a> (TextIter &start, TextIter &end)
<dl class="el"><dd class="mdescRight">Called whenever the syntax highlighting information has been updated, so that views can request a redraw if the region changed is visible. </em> <a href="#z5_2"></a><em><br><br></dl><li>virtual void <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z5_3">on_marker_updated</a> (TextIter &where)
<dl class="el"><dd class="mdescRight">Called whenever a marker of sourcebuffer has changed and needs to be redisplayed by the view. </em> <a href="#z5_3"></a><em><br><br></dl></ul>
<hr><a name="_details"></a><h2>Detailed Description</h2>
A GtkSourceBuffer C++ wrapper class.
<p>
The <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html">SourceBuffer</a> object is the text model for <a class="el" href="classInti_1_1Gtk_1_1SourceView.html">SourceView</a> widgets. It extends the Gtk::TextBuffer object by adding features necessary to display and edit source code: syntax highlighting, bracket matching and markers. It also implements support for undo/redo operations. By default syntax highlighting is enabled, but you can disable it with <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_2">set_highlight()</a>. This can be useful if you're not using <a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a> objects to set the highlighting patterns but instead you're manually adding <a class="el" href="classInti_1_1Gtk_1_1SourceTag.html">SourceTag</a> objects to the buffer's tag table.
<p>
<hr><h2>Constructor & Destructor Documentation</h2>
<a name="z4_0" doxytag="Inti::Gtk::SourceBuffer::SourceBuffer"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> Inti::Gtk::SourceBuffer::SourceBuffer </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">GtkSourceBuffer * </td>
<td class="mdname" nowrap> <em>buffer</em>, </td>
</tr>
<tr>
<td></td>
<td></td>
<td class="md" nowrap>bool </td>
<td class="mdname" nowrap> <em>reference</em> = false</td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"><code> [explicit, protected]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Construct a new <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html">SourceBuffer</a> from an existing GtkSourceBuffer.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>buffer</em> </td><td>A pointer to a GtkSourceBuffer. </td></tr>
<tr><td valign=top><em>reference</em> </td><td>Set <em>false</em> if the initial reference count is floating, set <em>true</em> if it's not.</td></tr>
</table>
</dl>
<br>
The <em>buffer</em> can be a newly created GtkSourceBuffer or an existing GtkSourceBuffer (see G::Object::Object). </td>
</tr>
</table>
<a name="z6_0" doxytag="Inti::Gtk::SourceBuffer::SourceBuffer"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> Inti::Gtk::SourceBuffer::SourceBuffer </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="classInti_1_1Gtk_1_1SourceTagTable.html">SourceTagTable</a> * </td>
<td class="mdname1" valign="top" nowrap> <em>table</em> = 0 </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Constructs a new source buffer with a empty default buffer.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>table</em> </td><td>A source tag table, or null to have the text buffer create one for you. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a name="z6_1" doxytag="Inti::Gtk::SourceBuffer::SourceBuffer"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> Inti::Gtk::SourceBuffer::SourceBuffer </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a> & </td>
<td class="mdname1" valign="top" nowrap> <em>language</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Constructs a new source buffer which will highlight text according to the specified language.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>language</em> </td><td>The source language. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<hr><h2>Member Function Documentation</h2>
<a name="z8_8" doxytag="Inti::Gtk::SourceBuffer::begin_not_undoable_action"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void Inti::Gtk::SourceBuffer::begin_not_undoable_action </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Marks the beginning of a not undoable action on the buffer, disabling the undo manager.
<p>
Typically you would call this method before initially setting the contents of the buffer (e.g. when loading a file in a text editor). You may nest <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_8">begin_not_undoable_action()</a> / <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_9">end_not_undoable_action()</a> blocks. </td>
</tr>
</table>
<a name="z7_11" doxytag="Inti::Gtk::SourceBuffer::can_redo"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> bool Inti::Gtk::SourceBuffer::can_redo </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines whether a source buffer can redo the last undo action.
<p>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if buffer changes that were undone can be redone. </dd></dl>
</td>
</tr>
</table>
<a name="z7_10" doxytag="Inti::Gtk::SourceBuffer::can_undo"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> bool Inti::Gtk::SourceBuffer::can_undo </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines whether a source buffer can undo the last action.
<p>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if it's possible to undo the last action. </dd></dl>
</td>
</tr>
</table>
<a name="z8_10" doxytag="Inti::Gtk::SourceBuffer::create_marker"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a>* Inti::Gtk::SourceBuffer::create_marker </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname" nowrap> <em>name</em>, </td>
</tr>
<tr>
<td></td>
<td></td>
<td class="md" nowrap>const String & </td>
<td class="mdname" nowrap> <em>type</em>, </td>
</tr>
<tr>
<td></td>
<td></td>
<td class="md" nowrap>const TextIter & </td>
<td class="mdname" nowrap> <em>where</em></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Creates a marker in the buffer of type <em>type</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>name</em> </td><td>The name of the marker, or null for an anonymous marker. </td></tr>
<tr><td valign=top><em>type</em> </td><td>A String defining the marker type, or null. </td></tr>
<tr><td valign=top><em>where</em> </td><td>The location to place the new marker. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The new <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> object, owned by the buffer.</dd></dl>
<br>
A marker is semantically very similar to a Gtk::TextMark, except it has a type which is used by the <a class="el" href="classInti_1_1Gtk_1_1SourceView.html">SourceView</a> displaying the buffer to show a pixmap on the left margin, at the line the marker is in. Because of this, a marker is generally associated to a line and not a character position. Markers are also accessible through a position or range in the buffer.<p>
Markers are implemented using Gtk::TextMark, so all characteristics and restrictions to marks apply to markers too. These includes life cycle issues and "mark-set" and "mark-deleted" signal emissions. Like a Gtk::TextMark, a <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> can be anonymous if the passed name is null. Also, the buffer owns the markers so you shouldn't unreference it.<p>
Markers always have left gravity and are moved to the beginning of the line when the user deletes the line they were in. Also, if the user deletes a region of text which contained lines with markers, those are deleted. Typical uses for a marker are bookmarks, breakpoints, current executing instruction indication in a source file, etc.. </td>
</tr>
</table>
<a name="z8_12" doxytag="Inti::Gtk::SourceBuffer::delete_marker"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void Inti::Gtk::SourceBuffer::delete_marker </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> & </td>
<td class="mdname1" valign="top" nowrap> <em>marker</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Deletes <em>marker</em> from the source buffer.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>marker</em> </td><td>A <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> in the buffer.</td></tr>
</table>
</dl>
<br>
The same conditions as for Gtk::TextMark apply here. The marker is no longer accessible from the buffer, but if you held a reference to it, it will not be destroyed. </td>
</tr>
</table>
<a name="z8_9" doxytag="Inti::Gtk::SourceBuffer::end_not_undoable_action"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void Inti::Gtk::SourceBuffer::end_not_undoable_action </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Marks the end of a not undoable action on the buffer.
<p>
When the last not undoable block is closed through the call to this method, the list of undo actions is cleared and the undo manager is re-enabled. </td>
</tr>
</table>
<a name="z7_5" doxytag="Inti::Gtk::SourceBuffer::get_check_brackets"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> bool Inti::Gtk::SourceBuffer::get_check_brackets </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines whether bracket match highlighting is activated for the source buffer.
<p>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if the source buffer will highlight matching brackets. </dd></dl>
</td>
</tr>
</table>
<a name="z7_9" doxytag="Inti::Gtk::SourceBuffer::get_escape_char"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> G::Unichar Inti::Gtk::SourceBuffer::get_escape_char </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines the escape character used by the source buffer highlighting engine.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>A G::Unichar that holds the UTF-8 escape character the buffer is using. </dd></dl>
</td>
</tr>
</table>
<a name="z7_14" doxytag="Inti::Gtk::SourceBuffer::get_first_marker"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a>* Inti::Gtk::SourceBuffer::get_first_marker </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Gets the first marker (nearest to the top) in the buffer.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>A pointer to the first <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a>, or null if there are no markers in the buffer. </dd></dl>
</td>
</tr>
</table>
<a name="z7_6" doxytag="Inti::Gtk::SourceBuffer::get_highlight"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> bool Inti::Gtk::SourceBuffer::get_highlight </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines whether text highlighting is activated in the source buffer.
<p>
<dl compact><dt><b>Returns:</b></dt><dd><em>true</em> if highlighting is enabled. </dd></dl>
</td>
</tr>
</table>
<a name="z7_16" doxytag="Inti::Gtk::SourceBuffer::get_iter_at_marker"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> TextIter Inti::Gtk::SourceBuffer::get_iter_at_marker </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> & </td>
<td class="mdname1" valign="top" nowrap> <em>marker</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Obtains an initialized iterator to the location of <em>marker</em>.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The initialized iterator. </dd></dl>
</td>
</tr>
</table>
<a name="z7_8" doxytag="Inti::Gtk::SourceBuffer::get_language"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a>* Inti::Gtk::SourceBuffer::get_language </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines the <a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a> used by the buffer.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The SourceLangauge (should not be unreferenced by the user). </dd></dl>
</td>
</tr>
</table>
<a name="z7_15" doxytag="Inti::Gtk::SourceBuffer::get_last_marker"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a>* Inti::Gtk::SourceBuffer::get_last_marker </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Gets the last marker (nearest to the end) in the buffer.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>A pointer to the last <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a>, or null if there are no markers in the buffer. </dd></dl>
</td>
</tr>
</table>
<a name="z7_12" doxytag="Inti::Gtk::SourceBuffer::get_marker"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a>* Inti::Gtk::SourceBuffer::get_marker </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const String & </td>
<td class="mdname1" valign="top" nowrap> <em>name</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Looks up the <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> named <em>name</em> in the buffer, returning null if it doesn't exists.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>name</em> </td><td>The name of the marker to retrieve. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> identified by <em>name</em>, or null. </dd></dl>
</td>
</tr>
</table>
<a name="z7_13" doxytag="Inti::Gtk::SourceBuffer::get_markers"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> std::vector<<a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a>*> Inti::Gtk::SourceBuffer::get_markers </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const TextIter & </td>
<td class="mdname" nowrap> <em>start</em>, </td>
</tr>
<tr>
<td></td>
<td></td>
<td class="md" nowrap>const TextIter & </td>
<td class="mdname" nowrap> <em>end</em></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Gets a list of the source markers inside the range delimited by <em>start</em> and <em>end</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>start</em> </td><td>The beginning of the range. </td></tr>
<tr><td valign=top><em>end</em> </td><td>The end of the range. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>A vector of <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> pointers inside the range. </dd></dl>
</td>
</tr>
</table>
<a name="z7_7" doxytag="Inti::Gtk::SourceBuffer::get_max_undo_levels"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> int Inti::Gtk::SourceBuffer::get_max_undo_levels </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Determines the number of undo levels the buffer will track for buffer edits.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The maximum number of possible undo levels. </dd></dl>
</td>
</tr>
</table>
<a name="z7_17" doxytag="Inti::Gtk::SourceBuffer::get_next_marker"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a>* Inti::Gtk::SourceBuffer::get_next_marker </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">TextIter & </td>
<td class="mdname1" valign="top" nowrap> <em>iter</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Gets the nearest marker to the right of iter.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>iter</em> </td><td>The location to start searching from. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> nearest to the right of iter, or null if there are no more markers after iter.</dd></dl>
<br>
If there are multiple markers at the same position, this function will always return the first one (from the internal linked list), even if starting the search exactly at its location. You can get the others using <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html#z2_8">Gtk::SourceMarker::next()</a>. </td>
</tr>
</table>
<a name="z7_18" doxytag="Inti::Gtk::SourceBuffer::get_prev_marker"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a>* Inti::Gtk::SourceBuffer::get_prev_marker </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">TextIter & </td>
<td class="mdname1" valign="top" nowrap> <em>iter</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Gets the nearest marker to the left of iter.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>iter</em> </td><td>The location to start searching from. </td></tr>
</table>
</dl>
<dl compact><dt><b>Returns:</b></dt><dd>The <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> nearest to the left of iter, or null if there are no more markers before iter.</dd></dl>
<br>
If there are multiple markers at the same position, this function will always return the last one (from the internal linked list), even if starting the search exactly at its location. You can get the others using <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html#z2_9">Gtk::SourceMarker::prev()</a>. </td>
</tr>
</table>
<a name="z7_4" doxytag="Inti::Gtk::SourceBuffer::get_source_tag_table"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> <a class="el" href="classInti_1_1Gtk_1_1SourceTagTable.html">SourceTagTable</a>* Inti::Gtk::SourceBuffer::get_source_tag_table </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap> const</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Get the <a class="el" href="classInti_1_1Gtk_1_1SourceTagTable.html">SourceTagTable</a> associated with the buffer.
<p>
<dl compact><dt><b>Returns:</b></dt><dd>The buffer's tag table. </dd></dl>
</td>
</tr>
</table>
<a name="z8_11" doxytag="Inti::Gtk::SourceBuffer::move_marker"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void Inti::Gtk::SourceBuffer::move_marker </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top"><a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a> & </td>
<td class="mdname" nowrap> <em>marker</em>, </td>
</tr>
<tr>
<td></td>
<td></td>
<td class="md" nowrap>const TextIter & </td>
<td class="mdname" nowrap> <em>where</em></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Moves <em>marker</em> to the new location <em>where</em>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>marker</em> </td><td>A <a class="el" href="classInti_1_1Gtk_1_1SourceMarker.html">SourceMarker</a>. </td></tr>
<tr><td valign=top><em>where</em> </td><td>The new location for <em>marker</em> in the buffer. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a name="z5_1" doxytag="Inti::Gtk::SourceBuffer::on_can_redo"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> virtual void Inti::Gtk::SourceBuffer::on_can_redo </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">bool </td>
<td class="mdname1" valign="top" nowrap> <em>can_redo</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap><code> [protected, virtual]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Called whenever there is a change in the buffer's ability to redo an operation.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>can_redo</em> </td><td>Will be <em>true</em> if the buffer can now perform a redo.</td></tr>
</table>
</dl>
<br>
This signal can be used to change the sensitivity of the Redo menu item or toolbar button. </td>
</tr>
</table>
<a name="z5_0" doxytag="Inti::Gtk::SourceBuffer::on_can_undo"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> virtual void Inti::Gtk::SourceBuffer::on_can_undo </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">bool </td>
<td class="mdname1" valign="top" nowrap> <em>can_undo</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap><code> [protected, virtual]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Called whenever there is a change in the buffer's ability to undo an operation.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>can_undo</em> </td><td>Will be <em>true</em> if the buffer can now perform an undo.</td></tr>
</table>
</dl>
<br>
This signal can be used to change the sensitivity of the Undo menu item or toolbar button. </td>
</tr>
</table>
<a name="z5_2" doxytag="Inti::Gtk::SourceBuffer::on_highlight_updated"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> virtual void Inti::Gtk::SourceBuffer::on_highlight_updated </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">TextIter & </td>
<td class="mdname" nowrap> <em>start</em>, </td>
</tr>
<tr>
<td></td>
<td></td>
<td class="md" nowrap>TextIter & </td>
<td class="mdname" nowrap> <em>end</em></td>
</tr>
<tr>
<td></td>
<td class="md">) </td>
<td class="md" colspan="2"><code> [protected, virtual]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Called whenever the syntax highlighting information has been updated, so that views can request a redraw if the region changed is visible.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>start</em> </td><td>The start position of the updated region in the buffer. </td></tr>
<tr><td valign=top><em>end</em> </td><td>The end position of the updated region in the buffer.</td></tr>
</table>
</dl>
<br>
Usually only view widgets displaying the buffer will be interested in this signal. </td>
</tr>
</table>
<a name="z5_3" doxytag="Inti::Gtk::SourceBuffer::on_marker_updated"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> virtual void Inti::Gtk::SourceBuffer::on_marker_updated </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">TextIter & </td>
<td class="mdname1" valign="top" nowrap> <em>where</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap><code> [protected, virtual]</code></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Called whenever a marker of sourcebuffer has changed and needs to be redisplayed by the view.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>where</em> </td><td>The position in the buffer where the change occurred.</td></tr>
</table>
</dl>
<br>
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: once for the old location and once for the new. </td>
</tr>
</table>
<a name="z8_7" doxytag="Inti::Gtk::SourceBuffer::redo"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void Inti::Gtk::SourceBuffer::redo </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Redoes the last undo operation.
<p>
Use <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_11">can_redo()</a> to check whether a call to this method will have any effect. </td>
</tr>
</table>
<a name="z8_1" doxytag="Inti::Gtk::SourceBuffer::set_bracket_match_style"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void Inti::Gtk::SourceBuffer::set_bracket_match_style </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="el" href="classInti_1_1Gtk_1_1SourceTagStyle.html">SourceTagStyle</a> & </td>
<td class="mdname1" valign="top" nowrap> <em>style</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Sets the style used for highlighting matching brackets.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>style</em> </td><td>The <a class="el" href="classInti_1_1Gtk_1_1SourceTagStyle.html">SourceTagStyle</a> that specifies the color and text attributes to use. </td></tr>
</table>
</dl>
</td>
</tr>
</table>
<a name="z8_0" doxytag="Inti::Gtk::SourceBuffer::set_check_brackets"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void Inti::Gtk::SourceBuffer::set_check_brackets </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">bool </td>
<td class="mdname1" valign="top" nowrap> <em>check_brackets</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Controls the bracket match highlighting function in the buffer.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>check_brackets</em> </td><td>Set <em>true</em> if you want matching brackets highlighted.</td></tr>
</table>
</dl>
<br>
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 <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_1">set_bracket_match_style()</a> method. </td>
</tr>
</table>
<a name="z8_5" doxytag="Inti::Gtk::SourceBuffer::set_escape_char"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void Inti::Gtk::SourceBuffer::set_escape_char </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">G::Unichar </td>
<td class="mdname1" valign="top" nowrap> <em>escape_char</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Sets the escape character to be used by the highlighting engine.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>escape_char</em> </td><td>A G::Unichar holding the escape character the buffer should use.</td></tr>
</table>
</dl>
<br>
When performing the initial analysis, the engine will discard a matching syntax pattern if it's prefixed with an odd number of escape characters. This allows for example to correctly highlight strings with escaped quotes embedded. This setting affects only syntax patterns (i.e. those defined in SyntaxTags). </td>
</tr>
</table>
<a name="z8_2" doxytag="Inti::Gtk::SourceBuffer::set_highlight"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void Inti::Gtk::SourceBuffer::set_highlight </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">bool </td>
<td class="mdname1" valign="top" nowrap> <em>highlight</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Controls whether text is highlighted in the buffer.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>highlight</em> </td><td>Set <em>true</em> if you want to activate highlighting.</td></tr>
</table>
</dl>
<br>
If <em>highlight</em> is <em>true</em> the text will be highlighted according to the patterns installed in the buffer (either set with <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_4">set_language()</a> or by adding individual SourceTags to the buffer's tag table). Otherwise, any current highlighted text will be restored to the default buffer style.<p>
Tags not of the <a class="el" href="classInti_1_1Gtk_1_1SourceTag.html">SourceTag</a> type will not be removed by this option, and normal Gtk::TextTag priority settings apply when highlighting is enabled.<p>
If you're not using a <a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a> to set the highlighting patterns in the buffer, it is recommended for performance reasons that you add all the SourceTags with highlighting disabled and enable highlighting when finished. </td>
</tr>
</table>
<a name="z8_4" doxytag="Inti::Gtk::SourceBuffer::set_language"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void Inti::Gtk::SourceBuffer::set_language </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">const <a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a> * </td>
<td class="mdname1" valign="top" nowrap> <em>language</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Sets the <a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a> the source buffer will use, adding SourceTags with the language's patterns and setting the escape character with <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z8_5">set_escape_char()</a>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>language</em> </td><td>The <a class="el" href="classInti_1_1Gtk_1_1SourceLanguage.html">SourceLanguage</a> to set, or null.</td></tr>
</table>
</dl>
<br>
Note that this will remove any SourceTags currently in the buffer's tag table. The buffer holds a reference to the language set. </td>
</tr>
</table>
<a name="z8_3" doxytag="Inti::Gtk::SourceBuffer::set_max_undo_levels"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void Inti::Gtk::SourceBuffer::set_max_undo_levels </td>
<td class="md" valign="top">( </td>
<td class="md" nowrap valign="top">int </td>
<td class="mdname1" valign="top" nowrap> <em>max_undo_levels</em> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Sets the number of undo levels for user actions the buffer will track.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign=top><em>max_undo_levels</em> </td><td>The desired maximum number of undo levels.</td></tr>
</table>
</dl>
<br>
If the number of user actions exceeds the limit set by this function, older actions will be discarded. A new action is started whenever the function Gtk::TextBuffer::begin_user_action() 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. </td>
</tr>
</table>
<a name="z8_6" doxytag="Inti::Gtk::SourceBuffer::undo"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="md" nowrap valign="top"> void Inti::Gtk::SourceBuffer::undo </td>
<td class="md" valign="top">( </td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top"> ) </td>
<td class="md" nowrap></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
<tr>
<td>
</td>
<td>
<p>
Undoes the last user action which modified the buffer.
<p>
Use <a class="el" href="classInti_1_1Gtk_1_1SourceBuffer.html#z7_10">can_undo()</a> to check whether a call to this method will have any effect. Actions are defined as groups of operations between a call to Gtk::TextBuffer's begin_user_action() and end_user_action() methods, or sequences of similar edits (inserts or deletes) on the same line. </td>
</tr>
</table>
<hr>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="sourcebuffer_8h-source.html">sourcebuffer.h</a></ul>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Main Page - Footer</title>
<meta name="description" content="Reference Manual">
<meta name="author" content="The Inti Development Team">
</head>
<body>
<br>
<br>
<table cellpadding="0" cellspacing="0" border="0" style="width: 100%;">
<tbody>
<tr>
<td valign="top">
<hr></td>
</tr>
<tr>
<td valign="top" height="116"
background="../images/bottom-fade.png">
<address><small>Generated on Wed Aug 27 21:17:27 2003 for Inti-SourceView by <a
href="http://www.doxygen.org/index.html"><img src="doxygen.png"
alt="doxygen" align="middle" border="0" width="110" height="53"> </a>
1.3.2 written by <a href="mailto:dimitri@stack.nl">Dimitri
van Heesch</a>, © 1997-2002</small></address>
</td>
</tr>
<tr>
<td style="vertical-align: top; background-color: rgb(0, 55, 85);"><br>
</td>
</tr>
</tbody>
</table>
<br>
</body>
</html>
|