gtksourceview3 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Rakefile +59 -0
- data/ext/gtksourceview3/depend +6 -0
- data/ext/gtksourceview3/extconf.rb +67 -0
- data/ext/gtksourceview3/gtksourceview3.def +2 -0
- data/ext/gtksourceview3/rbgtksource.c +53 -0
- data/ext/gtksourceview3/rbgtksourcebuffer.c +318 -0
- data/ext/gtksourceview3/rbgtksourcegutter.c +82 -0
- data/ext/gtksourceview3/rbgtksourcegutterrenderer.c +143 -0
- data/ext/gtksourceview3/rbgtksourcegutterrendererpixbuf.c +42 -0
- data/ext/gtksourceview3/rbgtksourcegutterrenderertext.c +40 -0
- data/ext/gtksourceview3/rbgtksourcelanguage.c +124 -0
- data/ext/gtksourceview3/rbgtksourcelanguagemanager.c +114 -0
- data/ext/gtksourceview3/rbgtksourcemark.c +85 -0
- data/ext/gtksourceview3/rbgtksourcemarkattributes.c +77 -0
- data/ext/gtksourceview3/rbgtksourceprintcompositor.c +171 -0
- data/ext/gtksourceview3/rbgtksourcestyle.c +42 -0
- data/ext/gtksourceview3/rbgtksourcestylescheme.c +72 -0
- data/ext/gtksourceview3/rbgtksourcestyleschememanager.c +140 -0
- data/ext/gtksourceview3/rbgtksourceundomanager.c +83 -0
- data/ext/gtksourceview3/rbgtksourceview.c +94 -0
- data/ext/gtksourceview3/rbgtksourceview3conversions.h +50 -0
- data/ext/gtksourceview3/rbgtksourceview3private.h +53 -0
- data/extconf.rb +49 -0
- data/lib/2.0/gtksourceview3.so +0 -0
- data/lib/2.1/gtksourceview3.so +0 -0
- data/lib/2.2/gtksourceview3.so +0 -0
- data/lib/gtksourceview3.rb +20 -0
- data/lib/gtksourceview3/deprecated.rb +47 -0
- data/sample/sourcelanguagemanager.rb +21 -0
- data/sample/test.rb +32 -0
- data/test/run-test.rb +44 -0
- data/test/test_mark_attributes.rb +26 -0
- data/test/test_source_gutter_renderer.rb +33 -0
- data/test/test_source_language_manager.rb +46 -0
- data/test/test_source_view.rb +57 -0
- data/vendor/local/bin/libgtksourceview-3.0-1.dll +0 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +65 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +54 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +213 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +142 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +95 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +78 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +70 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +97 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +137 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceencoding.h +54 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefile.h +115 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefileloader.h +122 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefilesaver.h +147 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +229 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +87 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +85 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +84 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +100 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +175 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h +133 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h +85 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +45 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +109 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +86 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +101 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +75 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceutils.h +34 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +88 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +213 -0
- data/vendor/local/lib/girepository-1.0/GtkSource-3.0.typelib +0 -0
- data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
- data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
- data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/tg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
- data/vendor/local/share/gir-1.0/GtkSource-3.0.gir +11360 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +2143 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +1129 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +397 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +348 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +367 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +572 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +750 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionWords.html +345 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceEncoding.html +366 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFile.html +563 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileLoader.html +769 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileSaver.html +962 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +490 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRenderer.html +1700 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html +468 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererText.html +228 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +584 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +476 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +310 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +897 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +2149 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchContext.html +1116 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchSettings.html +606 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +358 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +398 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +463 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +462 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1990 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +81 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +43 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-10.html +195 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-12.html +39 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-14.html +299 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-4.html +35 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +2187 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch01.html +119 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch02.html +47 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +601 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +146 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +882 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +873 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +654 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/object-tree.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +283 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +2199 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ansforth94.lang +729 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +330 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/bluespec.lang +188 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +93 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +647 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +120 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +542 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +318 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +262 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +113 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +591 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +281 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/idl-exelis.lang +620 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +339 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/julia.lang +378 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +600 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/lex.lang +209 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/llvm.lang +315 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/mediawiki.lang +327 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/modelica.lang +262 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1045 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +363 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +101 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +472 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +212 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/rst.lang +142 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +750 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/scala.lang +384 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sweave.lang +67 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +476 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/yaml.lang +214 -0
- data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +121 -0
- data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +148 -0
- data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +171 -0
- data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +129 -0
- data/vendor/local/share/gtksourceview-3.0/styles/solarized-dark.xml +101 -0
- data/vendor/local/share/gtksourceview-3.0/styles/solarized-light.xml +101 -0
- data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +142 -0
- data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +130 -0
- data/vendor/local/share/license/gtksourceview/AUTHORS +13 -0
- data/vendor/local/share/license/gtksourceview/COPYING +504 -0
- metadata +389 -0
Binary file
|
@@ -0,0 +1,146 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>GtkSourceView 3 Reference Manual: GtkSourceView 3 Reference Manual</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="GtkSourceView 3 Reference Manual">
|
8
|
+
<link rel="next" href="ch01.html" title="API reference">
|
9
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
10
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
11
|
+
</head>
|
12
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
13
|
+
<div class="book">
|
14
|
+
<div class="titlepage">
|
15
|
+
<div>
|
16
|
+
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GtkSourceView 3 Reference Manual</p></th></tr></table></div>
|
17
|
+
<div><p class="releaseinfo">for GtkSourceView 3.14.2
|
18
|
+
</p></div>
|
19
|
+
</div>
|
20
|
+
<hr>
|
21
|
+
</div>
|
22
|
+
<div class="toc"><dl class="toc">
|
23
|
+
<dt><span class="chapter"><a href="ch01.html">API reference</a></span></dt>
|
24
|
+
<dd><dl>
|
25
|
+
<dt>
|
26
|
+
<span class="refentrytitle"><a href="GtkSourceBuffer.html">GtkSourceBuffer</a></span><span class="refpurpose"> — Buffer object for GtkSourceView</span>
|
27
|
+
</dt>
|
28
|
+
<dt>
|
29
|
+
<span class="refentrytitle"><a href="GtkSourceCompletion.html">GtkSourceCompletion</a></span><span class="refpurpose"> — Main Completion Object</span>
|
30
|
+
</dt>
|
31
|
+
<dt>
|
32
|
+
<span class="refentrytitle"><a href="GtkSourceCompletionContext.html">GtkSourceCompletionContext</a></span><span class="refpurpose"> — The context of a completion</span>
|
33
|
+
</dt>
|
34
|
+
<dt>
|
35
|
+
<span class="refentrytitle"><a href="GtkSourceCompletionInfo.html">GtkSourceCompletionInfo</a></span><span class="refpurpose"> — Calltips object</span>
|
36
|
+
</dt>
|
37
|
+
<dt>
|
38
|
+
<span class="refentrytitle"><a href="GtkSourceCompletionItem.html">GtkSourceCompletionItem</a></span><span class="refpurpose"> — Simple implementation of GtkSourceCompletionProposal</span>
|
39
|
+
</dt>
|
40
|
+
<dt>
|
41
|
+
<span class="refentrytitle"><a href="GtkSourceCompletionProposal.html">GtkSourceCompletionProposal</a></span><span class="refpurpose"> — Completion proposal interface</span>
|
42
|
+
</dt>
|
43
|
+
<dt>
|
44
|
+
<span class="refentrytitle"><a href="GtkSourceCompletionProvider.html">GtkSourceCompletionProvider</a></span><span class="refpurpose"> — Completion provider interface</span>
|
45
|
+
</dt>
|
46
|
+
<dt>
|
47
|
+
<span class="refentrytitle"><a href="GtkSourceCompletionWords.html">GtkSourceCompletionWords</a></span><span class="refpurpose"> — A GtkSourceCompletionProvider for the completion of words</span>
|
48
|
+
</dt>
|
49
|
+
<dt>
|
50
|
+
<span class="refentrytitle"><a href="GtkSourceEncoding.html">GtkSourceEncoding</a></span><span class="refpurpose"> — Character encoding</span>
|
51
|
+
</dt>
|
52
|
+
<dt>
|
53
|
+
<span class="refentrytitle"><a href="GtkSourceFile.html">GtkSourceFile</a></span><span class="refpurpose"> — On-disk representation of a GtkSourceBuffer</span>
|
54
|
+
</dt>
|
55
|
+
<dt>
|
56
|
+
<span class="refentrytitle"><a href="GtkSourceFileLoader.html">GtkSourceFileLoader</a></span><span class="refpurpose"> — Load a file into a GtkSourceBuffer</span>
|
57
|
+
</dt>
|
58
|
+
<dt>
|
59
|
+
<span class="refentrytitle"><a href="GtkSourceFileSaver.html">GtkSourceFileSaver</a></span><span class="refpurpose"> — Save a GtkSourceBuffer into a file</span>
|
60
|
+
</dt>
|
61
|
+
<dt>
|
62
|
+
<span class="refentrytitle"><a href="GtkSourceGutter.html">GtkSourceGutter</a></span><span class="refpurpose"> — Gutter object for GtkSourceView</span>
|
63
|
+
</dt>
|
64
|
+
<dt>
|
65
|
+
<span class="refentrytitle"><a href="GtkSourceGutterRenderer.html">GtkSourceGutterRenderer</a></span><span class="refpurpose"> — Gutter cell renderer</span>
|
66
|
+
</dt>
|
67
|
+
<dt>
|
68
|
+
<span class="refentrytitle"><a href="GtkSourceGutterRendererPixbuf.html">GtkSourceGutterRendererPixbuf</a></span><span class="refpurpose"> — Renders a pixbuf in the gutter</span>
|
69
|
+
</dt>
|
70
|
+
<dt>
|
71
|
+
<span class="refentrytitle"><a href="GtkSourceGutterRendererText.html">GtkSourceGutterRendererText</a></span><span class="refpurpose"> — Renders text in the gutter</span>
|
72
|
+
</dt>
|
73
|
+
<dt>
|
74
|
+
<span class="refentrytitle"><a href="GtkSourceLanguage.html">GtkSourceLanguage</a></span><span class="refpurpose"> — Object representing a syntax highlighted language</span>
|
75
|
+
</dt>
|
76
|
+
<dt>
|
77
|
+
<span class="refentrytitle"><a href="GtkSourceLanguageManager.html">GtkSourceLanguageManager</a></span><span class="refpurpose"> — Object which provides access to GtkSourceLanguages</span>
|
78
|
+
</dt>
|
79
|
+
<dt>
|
80
|
+
<span class="refentrytitle"><a href="GtkSourceMark.html">GtkSourceMark</a></span><span class="refpurpose"> — Mark object for GtkSourceBuffer</span>
|
81
|
+
</dt>
|
82
|
+
<dt>
|
83
|
+
<span class="refentrytitle"><a href="GtkSourceMarkAttributes.html">GtkSourceMarkAttributes</a></span><span class="refpurpose"> — The source mark attributes object</span>
|
84
|
+
</dt>
|
85
|
+
<dt>
|
86
|
+
<span class="refentrytitle"><a href="GtkSourcePrintCompositor.html">GtkSourcePrintCompositor</a></span><span class="refpurpose"> — Compose a GtkSourceBuffer for printing</span>
|
87
|
+
</dt>
|
88
|
+
<dt>
|
89
|
+
<span class="refentrytitle"><a href="GtkSourceSearchContext.html">GtkSourceSearchContext</a></span><span class="refpurpose"> — Search context</span>
|
90
|
+
</dt>
|
91
|
+
<dt>
|
92
|
+
<span class="refentrytitle"><a href="GtkSourceSearchSettings.html">GtkSourceSearchSettings</a></span><span class="refpurpose"> — Search settings</span>
|
93
|
+
</dt>
|
94
|
+
<dt>
|
95
|
+
<span class="refentrytitle"><a href="GtkSourceStyle.html">GtkSourceStyle</a></span><span class="refpurpose"> — Object representyng a style</span>
|
96
|
+
</dt>
|
97
|
+
<dt>
|
98
|
+
<span class="refentrytitle"><a href="GtkSourceStyleScheme.html">GtkSourceStyleScheme</a></span><span class="refpurpose"> — Object controlling the appearance of GtkSourceView</span>
|
99
|
+
</dt>
|
100
|
+
<dt>
|
101
|
+
<span class="refentrytitle"><a href="GtkSourceStyleSchemeManager.html">GtkSourceStyleSchemeManager</a></span><span class="refpurpose"> — Object which provides access to GtkSourceStyleSchemes</span>
|
102
|
+
</dt>
|
103
|
+
<dt>
|
104
|
+
<span class="refentrytitle"><a href="GtkSourceUndoManager.html">GtkSourceUndoManager</a></span><span class="refpurpose"> — Undo manager interface for GtkSourceView</span>
|
105
|
+
</dt>
|
106
|
+
<dt>
|
107
|
+
<span class="refentrytitle"><a href="gtksourceview-3.0-GtkSourceUtils.html">GtkSourceUtils</a></span><span class="refpurpose"> — Utilities functions</span>
|
108
|
+
</dt>
|
109
|
+
<dt>
|
110
|
+
<span class="refentrytitle"><a href="GtkSourceView.html">GtkSourceView</a></span><span class="refpurpose"> — The view object</span>
|
111
|
+
</dt>
|
112
|
+
</dl></dd>
|
113
|
+
<dt><span class="chapter"><a href="ch02.html">Syntax highlighting reference</a></span></dt>
|
114
|
+
<dd><dl>
|
115
|
+
<dt>
|
116
|
+
<span class="refentrytitle"><a href="lang-tutorial.html">Language Definition v2.0 Tutorial</a></span><span class="refpurpose"> —
|
117
|
+
Guide to the GtkSourceView language definition file format
|
118
|
+
</span>
|
119
|
+
</dt>
|
120
|
+
<dt>
|
121
|
+
<span class="refentrytitle"><a href="lang-reference.html">Language Definition v2.0 Reference</a></span><span class="refpurpose"> —
|
122
|
+
Reference to the GtkSourceView language definition file format
|
123
|
+
</span>
|
124
|
+
</dt>
|
125
|
+
<dt>
|
126
|
+
<span class="refentrytitle"><a href="style-reference.html">Style Scheme Definition Reference</a></span><span class="refpurpose"> —
|
127
|
+
Reference to the GtkSourceView style scheme definition file format
|
128
|
+
</span>
|
129
|
+
</dt>
|
130
|
+
</dl></dd>
|
131
|
+
<dt><span class="chapter"><a href="object-tree.html">Object Hierarchy</a></span></dt>
|
132
|
+
<dt><span class="index"><a href="api-index-full.html">Index of all symbols</a></span></dt>
|
133
|
+
<dt><span class="index"><a href="api-index-deprecated.html">Index of deprecated symbols</a></span></dt>
|
134
|
+
<dt><span class="index"><a href="api-index-3-0.html">Index of new symbols in 3.0</a></span></dt>
|
135
|
+
<dt><span class="index"><a href="api-index-3-4.html">Index of new symbols in 3.4</a></span></dt>
|
136
|
+
<dt><span class="index"><a href="api-index-3-10.html">Index of new symbols in 3.10</a></span></dt>
|
137
|
+
<dt><span class="index"><a href="api-index-3-12.html">Index of new symbols in 3.12</a></span></dt>
|
138
|
+
<dt><span class="index"><a href="api-index-3-14.html">Index of new symbols in 3.14</a></span></dt>
|
139
|
+
<dt><span class="glossary"><a href="annotation-glossary.html">Annotation Glossary</a></span></dt>
|
140
|
+
</dl></div>
|
141
|
+
</div>
|
142
|
+
<div class="footer">
|
143
|
+
<hr>
|
144
|
+
Generated by GTK-Doc V1.21.1</div>
|
145
|
+
</body>
|
146
|
+
</html>
|
@@ -0,0 +1,882 @@
|
|
1
|
+
<ANCHOR id="GtkSourceBuffer" href="gtksourceview-3.0/GtkSourceBuffer.html">
|
2
|
+
<ANCHOR id="GtkSourceBuffer.functions" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer.functions">
|
3
|
+
<ANCHOR id="GtkSourceBuffer.properties" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer.properties">
|
4
|
+
<ANCHOR id="GtkSourceBuffer.signals" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer.signals">
|
5
|
+
<ANCHOR id="GtkSourceBuffer.other" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer.other">
|
6
|
+
<ANCHOR id="GtkSourceBuffer.object-hierarchy" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer.object-hierarchy">
|
7
|
+
<ANCHOR id="GtkSourceBuffer.includes" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer.includes">
|
8
|
+
<ANCHOR id="GtkSourceBuffer.description" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer.description">
|
9
|
+
<ANCHOR id="GtkSourceBuffer.functions_details" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer.functions_details">
|
10
|
+
<ANCHOR id="gtk-source-buffer-new" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-new">
|
11
|
+
<ANCHOR id="gtk-source-buffer-new-with-language" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-new-with-language">
|
12
|
+
<ANCHOR id="gtk-source-buffer-set-highlight-syntax" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-set-highlight-syntax">
|
13
|
+
<ANCHOR id="gtk-source-buffer-get-highlight-syntax" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-get-highlight-syntax">
|
14
|
+
<ANCHOR id="gtk-source-buffer-set-language" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-set-language">
|
15
|
+
<ANCHOR id="gtk-source-buffer-get-language" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-get-language">
|
16
|
+
<ANCHOR id="gtk-source-buffer-set-highlight-matching-brackets" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-set-highlight-matching-brackets">
|
17
|
+
<ANCHOR id="gtk-source-buffer-get-highlight-matching-brackets" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-get-highlight-matching-brackets">
|
18
|
+
<ANCHOR id="gtk-source-buffer-set-style-scheme" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-set-style-scheme">
|
19
|
+
<ANCHOR id="gtk-source-buffer-get-style-scheme" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-get-style-scheme">
|
20
|
+
<ANCHOR id="gtk-source-buffer-ensure-highlight" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-ensure-highlight">
|
21
|
+
<ANCHOR id="gtk-source-buffer-undo" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-undo">
|
22
|
+
<ANCHOR id="gtk-source-buffer-redo" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-redo">
|
23
|
+
<ANCHOR id="gtk-source-buffer-can-undo" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-can-undo">
|
24
|
+
<ANCHOR id="gtk-source-buffer-can-redo" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-can-redo">
|
25
|
+
<ANCHOR id="gtk-source-buffer-begin-not-undoable-action" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-begin-not-undoable-action">
|
26
|
+
<ANCHOR id="gtk-source-buffer-end-not-undoable-action" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-end-not-undoable-action">
|
27
|
+
<ANCHOR id="gtk-source-buffer-get-max-undo-levels" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-get-max-undo-levels">
|
28
|
+
<ANCHOR id="gtk-source-buffer-set-max-undo-levels" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-set-max-undo-levels">
|
29
|
+
<ANCHOR id="gtk-source-buffer-get-undo-manager" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-get-undo-manager">
|
30
|
+
<ANCHOR id="gtk-source-buffer-set-undo-manager" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-set-undo-manager">
|
31
|
+
<ANCHOR id="gtk-source-buffer-iter-has-context-class" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-iter-has-context-class">
|
32
|
+
<ANCHOR id="gtk-source-buffer-get-context-classes-at-iter" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-get-context-classes-at-iter">
|
33
|
+
<ANCHOR id="gtk-source-buffer-iter-forward-to-context-class-toggle" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-iter-forward-to-context-class-toggle">
|
34
|
+
<ANCHOR id="gtk-source-buffer-iter-backward-to-context-class-toggle" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-iter-backward-to-context-class-toggle">
|
35
|
+
<ANCHOR id="gtk-source-buffer-create-source-mark" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-create-source-mark">
|
36
|
+
<ANCHOR id="gtk-source-buffer-forward-iter-to-source-mark" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-forward-iter-to-source-mark">
|
37
|
+
<ANCHOR id="gtk-source-buffer-backward-iter-to-source-mark" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-backward-iter-to-source-mark">
|
38
|
+
<ANCHOR id="gtk-source-buffer-get-source-marks-at-line" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-get-source-marks-at-line">
|
39
|
+
<ANCHOR id="gtk-source-buffer-get-source-marks-at-iter" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-get-source-marks-at-iter">
|
40
|
+
<ANCHOR id="gtk-source-buffer-remove-source-marks" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-remove-source-marks">
|
41
|
+
<ANCHOR id="gtk-source-buffer-change-case" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-change-case">
|
42
|
+
<ANCHOR id="gtk-source-buffer-set-implicit-trailing-newline" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-set-implicit-trailing-newline">
|
43
|
+
<ANCHOR id="gtk-source-buffer-get-implicit-trailing-newline" href="gtksourceview-3.0/GtkSourceBuffer.html#gtk-source-buffer-get-implicit-trailing-newline">
|
44
|
+
<ANCHOR id="GtkSourceBuffer.other_details" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer.other_details">
|
45
|
+
<ANCHOR id="GtkSourceBuffer-struct" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer-struct">
|
46
|
+
<ANCHOR id="GtkSourceBracketMatchType" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBracketMatchType">
|
47
|
+
<ANCHOR id="GtkSourceChangeCaseType" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceChangeCaseType">
|
48
|
+
<ANCHOR id="GtkSourceBuffer.property-details" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer.property-details">
|
49
|
+
<ANCHOR id="GtkSourceBuffer--can-redo" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer--can-redo">
|
50
|
+
<ANCHOR id="GtkSourceBuffer--can-undo" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer--can-undo">
|
51
|
+
<ANCHOR id="GtkSourceBuffer--highlight-matching-brackets" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer--highlight-matching-brackets">
|
52
|
+
<ANCHOR id="GtkSourceBuffer--highlight-syntax" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer--highlight-syntax">
|
53
|
+
<ANCHOR id="GtkSourceBuffer--implicit-trailing-newline" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer--implicit-trailing-newline">
|
54
|
+
<ANCHOR id="GtkSourceBuffer--language" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer--language">
|
55
|
+
<ANCHOR id="GtkSourceBuffer--max-undo-levels" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer--max-undo-levels">
|
56
|
+
<ANCHOR id="GtkSourceBuffer--style-scheme" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer--style-scheme">
|
57
|
+
<ANCHOR id="GtkSourceBuffer--undo-manager" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer--undo-manager">
|
58
|
+
<ANCHOR id="GtkSourceBuffer.signal-details" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer.signal-details">
|
59
|
+
<ANCHOR id="GtkSourceBuffer-bracket-matched" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer-bracket-matched">
|
60
|
+
<ANCHOR id="GtkSourceBuffer-highlight-updated" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer-highlight-updated">
|
61
|
+
<ANCHOR id="GtkSourceBuffer-redo" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer-redo">
|
62
|
+
<ANCHOR id="GtkSourceBuffer-source-mark-updated" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer-source-mark-updated">
|
63
|
+
<ANCHOR id="GtkSourceBuffer-undo" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer-undo">
|
64
|
+
<ANCHOR id="GtkSourceBuffer.see-also" href="gtksourceview-3.0/GtkSourceBuffer.html#GtkSourceBuffer.see-also">
|
65
|
+
<ANCHOR id="GtkSourceCompletion" href="gtksourceview-3.0/GtkSourceCompletion.html">
|
66
|
+
<ANCHOR id="GtkSourceCompletion.functions" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion.functions">
|
67
|
+
<ANCHOR id="GtkSourceCompletion.properties" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion.properties">
|
68
|
+
<ANCHOR id="GtkSourceCompletion.signals" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion.signals">
|
69
|
+
<ANCHOR id="GtkSourceCompletion.other" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion.other">
|
70
|
+
<ANCHOR id="GtkSourceCompletion.object-hierarchy" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion.object-hierarchy">
|
71
|
+
<ANCHOR id="GtkSourceCompletion.implemented-interfaces" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion.implemented-interfaces">
|
72
|
+
<ANCHOR id="GtkSourceCompletion.includes" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion.includes">
|
73
|
+
<ANCHOR id="GtkSourceCompletion.description" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion.description">
|
74
|
+
<ANCHOR id="GtkSourceCompletion.functions_details" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion.functions_details">
|
75
|
+
<ANCHOR id="gtk-source-completion-add-provider" href="gtksourceview-3.0/GtkSourceCompletion.html#gtk-source-completion-add-provider">
|
76
|
+
<ANCHOR id="gtk-source-completion-remove-provider" href="gtksourceview-3.0/GtkSourceCompletion.html#gtk-source-completion-remove-provider">
|
77
|
+
<ANCHOR id="gtk-source-completion-get-providers" href="gtksourceview-3.0/GtkSourceCompletion.html#gtk-source-completion-get-providers">
|
78
|
+
<ANCHOR id="gtk-source-completion-show" href="gtksourceview-3.0/GtkSourceCompletion.html#gtk-source-completion-show">
|
79
|
+
<ANCHOR id="gtk-source-completion-hide" href="gtksourceview-3.0/GtkSourceCompletion.html#gtk-source-completion-hide">
|
80
|
+
<ANCHOR id="gtk-source-completion-get-info-window" href="gtksourceview-3.0/GtkSourceCompletion.html#gtk-source-completion-get-info-window">
|
81
|
+
<ANCHOR id="gtk-source-completion-get-view" href="gtksourceview-3.0/GtkSourceCompletion.html#gtk-source-completion-get-view">
|
82
|
+
<ANCHOR id="gtk-source-completion-create-context" href="gtksourceview-3.0/GtkSourceCompletion.html#gtk-source-completion-create-context">
|
83
|
+
<ANCHOR id="gtk-source-completion-move-window" href="gtksourceview-3.0/GtkSourceCompletion.html#gtk-source-completion-move-window">
|
84
|
+
<ANCHOR id="gtk-source-completion-block-interactive" href="gtksourceview-3.0/GtkSourceCompletion.html#gtk-source-completion-block-interactive">
|
85
|
+
<ANCHOR id="gtk-source-completion-unblock-interactive" href="gtksourceview-3.0/GtkSourceCompletion.html#gtk-source-completion-unblock-interactive">
|
86
|
+
<ANCHOR id="GtkSourceCompletion.other_details" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion.other_details">
|
87
|
+
<ANCHOR id="GtkSourceCompletion-struct" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion-struct">
|
88
|
+
<ANCHOR id="GTK-SOURCE-COMPLETION-ERROR:CAPS" href="gtksourceview-3.0/GtkSourceCompletion.html#GTK-SOURCE-COMPLETION-ERROR:CAPS">
|
89
|
+
<ANCHOR id="GtkSourceCompletionError" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletionError">
|
90
|
+
<ANCHOR id="GtkSourceCompletion.property-details" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion.property-details">
|
91
|
+
<ANCHOR id="GtkSourceCompletion--accelerators" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion--accelerators">
|
92
|
+
<ANCHOR id="GtkSourceCompletion--auto-complete-delay" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion--auto-complete-delay">
|
93
|
+
<ANCHOR id="GtkSourceCompletion--proposal-page-size" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion--proposal-page-size">
|
94
|
+
<ANCHOR id="GtkSourceCompletion--provider-page-size" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion--provider-page-size">
|
95
|
+
<ANCHOR id="GtkSourceCompletion--remember-info-visibility" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion--remember-info-visibility">
|
96
|
+
<ANCHOR id="GtkSourceCompletion--select-on-show" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion--select-on-show">
|
97
|
+
<ANCHOR id="GtkSourceCompletion--show-headers" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion--show-headers">
|
98
|
+
<ANCHOR id="GtkSourceCompletion--show-icons" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion--show-icons">
|
99
|
+
<ANCHOR id="GtkSourceCompletion--view" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion--view">
|
100
|
+
<ANCHOR id="GtkSourceCompletion.signal-details" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion.signal-details">
|
101
|
+
<ANCHOR id="GtkSourceCompletion-activate-proposal" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion-activate-proposal">
|
102
|
+
<ANCHOR id="GtkSourceCompletion-hide" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion-hide">
|
103
|
+
<ANCHOR id="GtkSourceCompletion-move-cursor" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion-move-cursor">
|
104
|
+
<ANCHOR id="GtkSourceCompletion-move-page" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion-move-page">
|
105
|
+
<ANCHOR id="GtkSourceCompletion-populate-context" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion-populate-context">
|
106
|
+
<ANCHOR id="GtkSourceCompletion-show" href="gtksourceview-3.0/GtkSourceCompletion.html#GtkSourceCompletion-show">
|
107
|
+
<ANCHOR id="GtkSourceCompletionContext" href="gtksourceview-3.0/GtkSourceCompletionContext.html">
|
108
|
+
<ANCHOR id="GtkSourceCompletionContext.functions" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext.functions">
|
109
|
+
<ANCHOR id="GtkSourceCompletionContext.properties" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext.properties">
|
110
|
+
<ANCHOR id="GtkSourceCompletionContext.signals" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext.signals">
|
111
|
+
<ANCHOR id="GtkSourceCompletionContext.other" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext.other">
|
112
|
+
<ANCHOR id="GtkSourceCompletionContext.object-hierarchy" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext.object-hierarchy">
|
113
|
+
<ANCHOR id="GtkSourceCompletionContext.includes" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext.includes">
|
114
|
+
<ANCHOR id="GtkSourceCompletionContext.description" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext.description">
|
115
|
+
<ANCHOR id="GtkSourceCompletionContext.functions_details" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext.functions_details">
|
116
|
+
<ANCHOR id="gtk-source-completion-context-add-proposals" href="gtksourceview-3.0/GtkSourceCompletionContext.html#gtk-source-completion-context-add-proposals">
|
117
|
+
<ANCHOR id="gtk-source-completion-context-get-iter" href="gtksourceview-3.0/GtkSourceCompletionContext.html#gtk-source-completion-context-get-iter">
|
118
|
+
<ANCHOR id="gtk-source-completion-context-get-activation" href="gtksourceview-3.0/GtkSourceCompletionContext.html#gtk-source-completion-context-get-activation">
|
119
|
+
<ANCHOR id="GtkSourceCompletionContext.other_details" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext.other_details">
|
120
|
+
<ANCHOR id="GtkSourceCompletionActivation" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionActivation">
|
121
|
+
<ANCHOR id="GtkSourceCompletionContext-struct" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext-struct">
|
122
|
+
<ANCHOR id="GtkSourceCompletionContext.property-details" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext.property-details">
|
123
|
+
<ANCHOR id="GtkSourceCompletionContext--activation" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext--activation">
|
124
|
+
<ANCHOR id="GtkSourceCompletionContext--completion" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext--completion">
|
125
|
+
<ANCHOR id="GtkSourceCompletionContext--iter" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext--iter">
|
126
|
+
<ANCHOR id="GtkSourceCompletionContext.signal-details" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext.signal-details">
|
127
|
+
<ANCHOR id="GtkSourceCompletionContext-cancelled" href="gtksourceview-3.0/GtkSourceCompletionContext.html#GtkSourceCompletionContext-cancelled">
|
128
|
+
<ANCHOR id="GtkSourceCompletionInfo" href="gtksourceview-3.0/GtkSourceCompletionInfo.html">
|
129
|
+
<ANCHOR id="GtkSourceCompletionInfo.functions" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#GtkSourceCompletionInfo.functions">
|
130
|
+
<ANCHOR id="GtkSourceCompletionInfo.signals" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#GtkSourceCompletionInfo.signals">
|
131
|
+
<ANCHOR id="GtkSourceCompletionInfo.other" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#GtkSourceCompletionInfo.other">
|
132
|
+
<ANCHOR id="GtkSourceCompletionInfo.object-hierarchy" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#GtkSourceCompletionInfo.object-hierarchy">
|
133
|
+
<ANCHOR id="GtkSourceCompletionInfo.implemented-interfaces" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#GtkSourceCompletionInfo.implemented-interfaces">
|
134
|
+
<ANCHOR id="GtkSourceCompletionInfo.includes" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#GtkSourceCompletionInfo.includes">
|
135
|
+
<ANCHOR id="GtkSourceCompletionInfo.description" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#GtkSourceCompletionInfo.description">
|
136
|
+
<ANCHOR id="GtkSourceCompletionInfo.functions_details" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#GtkSourceCompletionInfo.functions_details">
|
137
|
+
<ANCHOR id="gtk-source-completion-info-new" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#gtk-source-completion-info-new">
|
138
|
+
<ANCHOR id="gtk-source-completion-info-move-to-iter" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#gtk-source-completion-info-move-to-iter">
|
139
|
+
<ANCHOR id="gtk-source-completion-info-set-widget" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#gtk-source-completion-info-set-widget">
|
140
|
+
<ANCHOR id="gtk-source-completion-info-get-widget" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#gtk-source-completion-info-get-widget">
|
141
|
+
<ANCHOR id="GtkSourceCompletionInfo.other_details" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#GtkSourceCompletionInfo.other_details">
|
142
|
+
<ANCHOR id="GtkSourceCompletionInfo-struct" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#GtkSourceCompletionInfo-struct">
|
143
|
+
<ANCHOR id="GtkSourceCompletionInfo.signal-details" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#GtkSourceCompletionInfo.signal-details">
|
144
|
+
<ANCHOR id="GtkSourceCompletionInfo-before-show" href="gtksourceview-3.0/GtkSourceCompletionInfo.html#GtkSourceCompletionInfo-before-show">
|
145
|
+
<ANCHOR id="GtkSourceCompletionItem" href="gtksourceview-3.0/GtkSourceCompletionItem.html">
|
146
|
+
<ANCHOR id="GtkSourceCompletionItem.functions" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem.functions">
|
147
|
+
<ANCHOR id="GtkSourceCompletionItem.properties" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem.properties">
|
148
|
+
<ANCHOR id="GtkSourceCompletionItem.other" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem.other">
|
149
|
+
<ANCHOR id="GtkSourceCompletionItem.object-hierarchy" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem.object-hierarchy">
|
150
|
+
<ANCHOR id="GtkSourceCompletionItem.implemented-interfaces" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem.implemented-interfaces">
|
151
|
+
<ANCHOR id="GtkSourceCompletionItem.includes" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem.includes">
|
152
|
+
<ANCHOR id="GtkSourceCompletionItem.description" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem.description">
|
153
|
+
<ANCHOR id="GtkSourceCompletionItem.functions_details" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem.functions_details">
|
154
|
+
<ANCHOR id="gtk-source-completion-item-new" href="gtksourceview-3.0/GtkSourceCompletionItem.html#gtk-source-completion-item-new">
|
155
|
+
<ANCHOR id="gtk-source-completion-item-new-with-markup" href="gtksourceview-3.0/GtkSourceCompletionItem.html#gtk-source-completion-item-new-with-markup">
|
156
|
+
<ANCHOR id="gtk-source-completion-item-new-from-stock" href="gtksourceview-3.0/GtkSourceCompletionItem.html#gtk-source-completion-item-new-from-stock">
|
157
|
+
<ANCHOR id="GtkSourceCompletionItem.other_details" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem.other_details">
|
158
|
+
<ANCHOR id="GtkSourceCompletionItem-struct" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem-struct">
|
159
|
+
<ANCHOR id="GtkSourceCompletionItem.property-details" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem.property-details">
|
160
|
+
<ANCHOR id="GtkSourceCompletionItem--icon" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem--icon">
|
161
|
+
<ANCHOR id="GtkSourceCompletionItem--info" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem--info">
|
162
|
+
<ANCHOR id="GtkSourceCompletionItem--label" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem--label">
|
163
|
+
<ANCHOR id="GtkSourceCompletionItem--markup" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem--markup">
|
164
|
+
<ANCHOR id="GtkSourceCompletionItem--text" href="gtksourceview-3.0/GtkSourceCompletionItem.html#GtkSourceCompletionItem--text">
|
165
|
+
<ANCHOR id="GtkSourceCompletionProposal" href="gtksourceview-3.0/GtkSourceCompletionProposal.html">
|
166
|
+
<ANCHOR id="GtkSourceCompletionProposal.functions" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal.functions">
|
167
|
+
<ANCHOR id="GtkSourceCompletionProposal.signals" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal.signals">
|
168
|
+
<ANCHOR id="GtkSourceCompletionProposal.other" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal.other">
|
169
|
+
<ANCHOR id="GtkSourceCompletionProposal.object-hierarchy" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal.object-hierarchy">
|
170
|
+
<ANCHOR id="GtkSourceCompletionProposal.prerequisites" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal.prerequisites">
|
171
|
+
<ANCHOR id="GtkSourceCompletionProposal.implementations" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal.implementations">
|
172
|
+
<ANCHOR id="GtkSourceCompletionProposal.includes" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal.includes">
|
173
|
+
<ANCHOR id="GtkSourceCompletionProposal.description" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal.description">
|
174
|
+
<ANCHOR id="GtkSourceCompletionProposal.functions_details" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal.functions_details">
|
175
|
+
<ANCHOR id="gtk-source-completion-proposal-get-label" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-label">
|
176
|
+
<ANCHOR id="gtk-source-completion-proposal-get-markup" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-markup">
|
177
|
+
<ANCHOR id="gtk-source-completion-proposal-get-text" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-text">
|
178
|
+
<ANCHOR id="gtk-source-completion-proposal-get-icon" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-icon">
|
179
|
+
<ANCHOR id="gtk-source-completion-proposal-get-info" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#gtk-source-completion-proposal-get-info">
|
180
|
+
<ANCHOR id="gtk-source-completion-proposal-changed" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#gtk-source-completion-proposal-changed">
|
181
|
+
<ANCHOR id="gtk-source-completion-proposal-hash" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#gtk-source-completion-proposal-hash">
|
182
|
+
<ANCHOR id="gtk-source-completion-proposal-equal" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#gtk-source-completion-proposal-equal">
|
183
|
+
<ANCHOR id="GtkSourceCompletionProposal.other_details" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal.other_details">
|
184
|
+
<ANCHOR id="GtkSourceCompletionProposal-struct" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal-struct">
|
185
|
+
<ANCHOR id="GtkSourceCompletionProposalIface" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposalIface">
|
186
|
+
<ANCHOR id="GtkSourceCompletionProposal.signal-details" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal.signal-details">
|
187
|
+
<ANCHOR id="GtkSourceCompletionProposal-changed" href="gtksourceview-3.0/GtkSourceCompletionProposal.html#GtkSourceCompletionProposal-changed">
|
188
|
+
<ANCHOR id="GtkSourceCompletionProvider" href="gtksourceview-3.0/GtkSourceCompletionProvider.html">
|
189
|
+
<ANCHOR id="GtkSourceCompletionProvider.functions" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#GtkSourceCompletionProvider.functions">
|
190
|
+
<ANCHOR id="GtkSourceCompletionProvider.other" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#GtkSourceCompletionProvider.other">
|
191
|
+
<ANCHOR id="GtkSourceCompletionProvider.object-hierarchy" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#GtkSourceCompletionProvider.object-hierarchy">
|
192
|
+
<ANCHOR id="GtkSourceCompletionProvider.prerequisites" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#GtkSourceCompletionProvider.prerequisites">
|
193
|
+
<ANCHOR id="GtkSourceCompletionProvider.implementations" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#GtkSourceCompletionProvider.implementations">
|
194
|
+
<ANCHOR id="GtkSourceCompletionProvider.includes" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#GtkSourceCompletionProvider.includes">
|
195
|
+
<ANCHOR id="GtkSourceCompletionProvider.description" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#GtkSourceCompletionProvider.description">
|
196
|
+
<ANCHOR id="GtkSourceCompletionProvider.functions_details" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#GtkSourceCompletionProvider.functions_details">
|
197
|
+
<ANCHOR id="gtk-source-completion-provider-get-name" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-name">
|
198
|
+
<ANCHOR id="gtk-source-completion-provider-get-icon" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-icon">
|
199
|
+
<ANCHOR id="gtk-source-completion-provider-populate" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#gtk-source-completion-provider-populate">
|
200
|
+
<ANCHOR id="gtk-source-completion-provider-get-activation" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-activation">
|
201
|
+
<ANCHOR id="gtk-source-completion-provider-match" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#gtk-source-completion-provider-match">
|
202
|
+
<ANCHOR id="gtk-source-completion-provider-get-info-widget" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-info-widget">
|
203
|
+
<ANCHOR id="gtk-source-completion-provider-update-info" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#gtk-source-completion-provider-update-info">
|
204
|
+
<ANCHOR id="gtk-source-completion-provider-get-start-iter" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-start-iter">
|
205
|
+
<ANCHOR id="gtk-source-completion-provider-activate-proposal" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#gtk-source-completion-provider-activate-proposal">
|
206
|
+
<ANCHOR id="gtk-source-completion-provider-get-interactive-delay" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-interactive-delay">
|
207
|
+
<ANCHOR id="gtk-source-completion-provider-get-priority" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#gtk-source-completion-provider-get-priority">
|
208
|
+
<ANCHOR id="GtkSourceCompletionProvider.other_details" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#GtkSourceCompletionProvider.other_details">
|
209
|
+
<ANCHOR id="GtkSourceCompletionProvider-struct" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#GtkSourceCompletionProvider-struct">
|
210
|
+
<ANCHOR id="GtkSourceCompletionProviderIface" href="gtksourceview-3.0/GtkSourceCompletionProvider.html#GtkSourceCompletionProviderIface">
|
211
|
+
<ANCHOR id="GtkSourceCompletionWords" href="gtksourceview-3.0/GtkSourceCompletionWords.html">
|
212
|
+
<ANCHOR id="GtkSourceCompletionWords.functions" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords.functions">
|
213
|
+
<ANCHOR id="GtkSourceCompletionWords.properties" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords.properties">
|
214
|
+
<ANCHOR id="GtkSourceCompletionWords.other" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords.other">
|
215
|
+
<ANCHOR id="GtkSourceCompletionWords.object-hierarchy" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords.object-hierarchy">
|
216
|
+
<ANCHOR id="GtkSourceCompletionWords.implemented-interfaces" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords.implemented-interfaces">
|
217
|
+
<ANCHOR id="GtkSourceCompletionWords.includes" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords.includes">
|
218
|
+
<ANCHOR id="GtkSourceCompletionWords.description" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords.description">
|
219
|
+
<ANCHOR id="GtkSourceCompletionWords.functions_details" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords.functions_details">
|
220
|
+
<ANCHOR id="gtk-source-completion-words-new" href="gtksourceview-3.0/GtkSourceCompletionWords.html#gtk-source-completion-words-new">
|
221
|
+
<ANCHOR id="gtk-source-completion-words-register" href="gtksourceview-3.0/GtkSourceCompletionWords.html#gtk-source-completion-words-register">
|
222
|
+
<ANCHOR id="gtk-source-completion-words-unregister" href="gtksourceview-3.0/GtkSourceCompletionWords.html#gtk-source-completion-words-unregister">
|
223
|
+
<ANCHOR id="GtkSourceCompletionWords.other_details" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords.other_details">
|
224
|
+
<ANCHOR id="GtkSourceCompletionWords-struct" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords-struct">
|
225
|
+
<ANCHOR id="GtkSourceCompletionWords.property-details" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords.property-details">
|
226
|
+
<ANCHOR id="GtkSourceCompletionWords--activation" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords--activation">
|
227
|
+
<ANCHOR id="GtkSourceCompletionWords--icon" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords--icon">
|
228
|
+
<ANCHOR id="GtkSourceCompletionWords--interactive-delay" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords--interactive-delay">
|
229
|
+
<ANCHOR id="GtkSourceCompletionWords--minimum-word-size" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords--minimum-word-size">
|
230
|
+
<ANCHOR id="GtkSourceCompletionWords--name" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords--name">
|
231
|
+
<ANCHOR id="GtkSourceCompletionWords--priority" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords--priority">
|
232
|
+
<ANCHOR id="GtkSourceCompletionWords--proposals-batch-size" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords--proposals-batch-size">
|
233
|
+
<ANCHOR id="GtkSourceCompletionWords--scan-batch-size" href="gtksourceview-3.0/GtkSourceCompletionWords.html#GtkSourceCompletionWords--scan-batch-size">
|
234
|
+
<ANCHOR id="GtkSourceEncoding" href="gtksourceview-3.0/GtkSourceEncoding.html">
|
235
|
+
<ANCHOR id="GtkSourceEncoding.functions" href="gtksourceview-3.0/GtkSourceEncoding.html#GtkSourceEncoding.functions">
|
236
|
+
<ANCHOR id="GtkSourceEncoding.other" href="gtksourceview-3.0/GtkSourceEncoding.html#GtkSourceEncoding.other">
|
237
|
+
<ANCHOR id="GtkSourceEncoding.object-hierarchy" href="gtksourceview-3.0/GtkSourceEncoding.html#GtkSourceEncoding.object-hierarchy">
|
238
|
+
<ANCHOR id="GtkSourceEncoding.includes" href="gtksourceview-3.0/GtkSourceEncoding.html#GtkSourceEncoding.includes">
|
239
|
+
<ANCHOR id="GtkSourceEncoding.description" href="gtksourceview-3.0/GtkSourceEncoding.html#GtkSourceEncoding.description">
|
240
|
+
<ANCHOR id="GtkSourceEncoding.functions_details" href="gtksourceview-3.0/GtkSourceEncoding.html#GtkSourceEncoding.functions_details">
|
241
|
+
<ANCHOR id="gtk-source-encoding-get-utf8" href="gtksourceview-3.0/GtkSourceEncoding.html#gtk-source-encoding-get-utf8">
|
242
|
+
<ANCHOR id="gtk-source-encoding-get-current" href="gtksourceview-3.0/GtkSourceEncoding.html#gtk-source-encoding-get-current">
|
243
|
+
<ANCHOR id="gtk-source-encoding-get-from-charset" href="gtksourceview-3.0/GtkSourceEncoding.html#gtk-source-encoding-get-from-charset">
|
244
|
+
<ANCHOR id="gtk-source-encoding-to-string" href="gtksourceview-3.0/GtkSourceEncoding.html#gtk-source-encoding-to-string">
|
245
|
+
<ANCHOR id="gtk-source-encoding-get-name" href="gtksourceview-3.0/GtkSourceEncoding.html#gtk-source-encoding-get-name">
|
246
|
+
<ANCHOR id="gtk-source-encoding-get-charset" href="gtksourceview-3.0/GtkSourceEncoding.html#gtk-source-encoding-get-charset">
|
247
|
+
<ANCHOR id="gtk-source-encoding-get-all" href="gtksourceview-3.0/GtkSourceEncoding.html#gtk-source-encoding-get-all">
|
248
|
+
<ANCHOR id="gtk-source-encoding-copy" href="gtksourceview-3.0/GtkSourceEncoding.html#gtk-source-encoding-copy">
|
249
|
+
<ANCHOR id="gtk-source-encoding-free" href="gtksourceview-3.0/GtkSourceEncoding.html#gtk-source-encoding-free">
|
250
|
+
<ANCHOR id="GtkSourceEncoding.other_details" href="gtksourceview-3.0/GtkSourceEncoding.html#GtkSourceEncoding.other_details">
|
251
|
+
<ANCHOR id="GtkSourceEncoding-struct" href="gtksourceview-3.0/GtkSourceEncoding.html#GtkSourceEncoding-struct">
|
252
|
+
<ANCHOR id="GtkSourceEncoding.see-also" href="gtksourceview-3.0/GtkSourceEncoding.html#GtkSourceEncoding.see-also">
|
253
|
+
<ANCHOR id="GtkSourceFile" href="gtksourceview-3.0/GtkSourceFile.html">
|
254
|
+
<ANCHOR id="GtkSourceFile.functions" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile.functions">
|
255
|
+
<ANCHOR id="GtkSourceFile.properties" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile.properties">
|
256
|
+
<ANCHOR id="GtkSourceFile.other" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile.other">
|
257
|
+
<ANCHOR id="GtkSourceFile.object-hierarchy" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile.object-hierarchy">
|
258
|
+
<ANCHOR id="GtkSourceFile.includes" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile.includes">
|
259
|
+
<ANCHOR id="GtkSourceFile.description" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile.description">
|
260
|
+
<ANCHOR id="GtkSourceFile.functions_details" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile.functions_details">
|
261
|
+
<ANCHOR id="GtkSourceMountOperationFactory" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceMountOperationFactory">
|
262
|
+
<ANCHOR id="gtk-source-file-new" href="gtksourceview-3.0/GtkSourceFile.html#gtk-source-file-new">
|
263
|
+
<ANCHOR id="gtk-source-file-get-location" href="gtksourceview-3.0/GtkSourceFile.html#gtk-source-file-get-location">
|
264
|
+
<ANCHOR id="gtk-source-file-set-location" href="gtksourceview-3.0/GtkSourceFile.html#gtk-source-file-set-location">
|
265
|
+
<ANCHOR id="gtk-source-file-get-encoding" href="gtksourceview-3.0/GtkSourceFile.html#gtk-source-file-get-encoding">
|
266
|
+
<ANCHOR id="gtk-source-file-get-newline-type" href="gtksourceview-3.0/GtkSourceFile.html#gtk-source-file-get-newline-type">
|
267
|
+
<ANCHOR id="gtk-source-file-get-compression-type" href="gtksourceview-3.0/GtkSourceFile.html#gtk-source-file-get-compression-type">
|
268
|
+
<ANCHOR id="gtk-source-file-set-mount-operation-factory" href="gtksourceview-3.0/GtkSourceFile.html#gtk-source-file-set-mount-operation-factory">
|
269
|
+
<ANCHOR id="GtkSourceFile.other_details" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile.other_details">
|
270
|
+
<ANCHOR id="GtkSourceFile-struct" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile-struct">
|
271
|
+
<ANCHOR id="GtkSourceNewlineType" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceNewlineType">
|
272
|
+
<ANCHOR id="GTK-SOURCE-NEWLINE-TYPE-DEFAULT:CAPS" href="gtksourceview-3.0/GtkSourceFile.html#GTK-SOURCE-NEWLINE-TYPE-DEFAULT:CAPS">
|
273
|
+
<ANCHOR id="GtkSourceCompressionType" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceCompressionType">
|
274
|
+
<ANCHOR id="GtkSourceFile.property-details" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile.property-details">
|
275
|
+
<ANCHOR id="GtkSourceFile--compression-type" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile--compression-type">
|
276
|
+
<ANCHOR id="GtkSourceFile--encoding" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile--encoding">
|
277
|
+
<ANCHOR id="GtkSourceFile--location" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile--location">
|
278
|
+
<ANCHOR id="GtkSourceFile--newline-type" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile--newline-type">
|
279
|
+
<ANCHOR id="GtkSourceFile.see-also" href="gtksourceview-3.0/GtkSourceFile.html#GtkSourceFile.see-also">
|
280
|
+
<ANCHOR id="GtkSourceFileLoader" href="gtksourceview-3.0/GtkSourceFileLoader.html">
|
281
|
+
<ANCHOR id="GtkSourceFileLoader.functions" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader.functions">
|
282
|
+
<ANCHOR id="GtkSourceFileLoader.properties" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader.properties">
|
283
|
+
<ANCHOR id="GtkSourceFileLoader.other" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader.other">
|
284
|
+
<ANCHOR id="GtkSourceFileLoader.object-hierarchy" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader.object-hierarchy">
|
285
|
+
<ANCHOR id="GtkSourceFileLoader.includes" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader.includes">
|
286
|
+
<ANCHOR id="GtkSourceFileLoader.description" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader.description">
|
287
|
+
<ANCHOR id="GtkSourceFileLoader.functions_details" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader.functions_details">
|
288
|
+
<ANCHOR id="gtk-source-file-loader-new" href="gtksourceview-3.0/GtkSourceFileLoader.html#gtk-source-file-loader-new">
|
289
|
+
<ANCHOR id="gtk-source-file-loader-new-from-stream" href="gtksourceview-3.0/GtkSourceFileLoader.html#gtk-source-file-loader-new-from-stream">
|
290
|
+
<ANCHOR id="gtk-source-file-loader-set-candidate-encodings" href="gtksourceview-3.0/GtkSourceFileLoader.html#gtk-source-file-loader-set-candidate-encodings">
|
291
|
+
<ANCHOR id="gtk-source-file-loader-get-buffer" href="gtksourceview-3.0/GtkSourceFileLoader.html#gtk-source-file-loader-get-buffer">
|
292
|
+
<ANCHOR id="gtk-source-file-loader-get-file" href="gtksourceview-3.0/GtkSourceFileLoader.html#gtk-source-file-loader-get-file">
|
293
|
+
<ANCHOR id="gtk-source-file-loader-get-location" href="gtksourceview-3.0/GtkSourceFileLoader.html#gtk-source-file-loader-get-location">
|
294
|
+
<ANCHOR id="gtk-source-file-loader-get-input-stream" href="gtksourceview-3.0/GtkSourceFileLoader.html#gtk-source-file-loader-get-input-stream">
|
295
|
+
<ANCHOR id="gtk-source-file-loader-load-async" href="gtksourceview-3.0/GtkSourceFileLoader.html#gtk-source-file-loader-load-async">
|
296
|
+
<ANCHOR id="gtk-source-file-loader-load-finish" href="gtksourceview-3.0/GtkSourceFileLoader.html#gtk-source-file-loader-load-finish">
|
297
|
+
<ANCHOR id="gtk-source-file-loader-get-encoding" href="gtksourceview-3.0/GtkSourceFileLoader.html#gtk-source-file-loader-get-encoding">
|
298
|
+
<ANCHOR id="gtk-source-file-loader-get-newline-type" href="gtksourceview-3.0/GtkSourceFileLoader.html#gtk-source-file-loader-get-newline-type">
|
299
|
+
<ANCHOR id="gtk-source-file-loader-get-compression-type" href="gtksourceview-3.0/GtkSourceFileLoader.html#gtk-source-file-loader-get-compression-type">
|
300
|
+
<ANCHOR id="GtkSourceFileLoader.other_details" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader.other_details">
|
301
|
+
<ANCHOR id="GtkSourceFileLoader-struct" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader-struct">
|
302
|
+
<ANCHOR id="GTK-SOURCE-FILE-LOADER-ERROR:CAPS" href="gtksourceview-3.0/GtkSourceFileLoader.html#GTK-SOURCE-FILE-LOADER-ERROR:CAPS">
|
303
|
+
<ANCHOR id="GtkSourceFileLoaderError" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoaderError">
|
304
|
+
<ANCHOR id="GtkSourceFileLoader.property-details" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader.property-details">
|
305
|
+
<ANCHOR id="GtkSourceFileLoader--buffer" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader--buffer">
|
306
|
+
<ANCHOR id="GtkSourceFileLoader--file" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader--file">
|
307
|
+
<ANCHOR id="GtkSourceFileLoader--input-stream" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader--input-stream">
|
308
|
+
<ANCHOR id="GtkSourceFileLoader--location" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader--location">
|
309
|
+
<ANCHOR id="GtkSourceFileLoader.see-also" href="gtksourceview-3.0/GtkSourceFileLoader.html#GtkSourceFileLoader.see-also">
|
310
|
+
<ANCHOR id="GtkSourceFileSaver" href="gtksourceview-3.0/GtkSourceFileSaver.html">
|
311
|
+
<ANCHOR id="GtkSourceFileSaver.functions" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver.functions">
|
312
|
+
<ANCHOR id="GtkSourceFileSaver.properties" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver.properties">
|
313
|
+
<ANCHOR id="GtkSourceFileSaver.other" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver.other">
|
314
|
+
<ANCHOR id="GtkSourceFileSaver.object-hierarchy" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver.object-hierarchy">
|
315
|
+
<ANCHOR id="GtkSourceFileSaver.includes" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver.includes">
|
316
|
+
<ANCHOR id="GtkSourceFileSaver.description" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver.description">
|
317
|
+
<ANCHOR id="GtkSourceFileSaver.functions_details" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver.functions_details">
|
318
|
+
<ANCHOR id="gtk-source-file-saver-new" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-new">
|
319
|
+
<ANCHOR id="gtk-source-file-saver-new-with-target" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-new-with-target">
|
320
|
+
<ANCHOR id="gtk-source-file-saver-get-buffer" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-get-buffer">
|
321
|
+
<ANCHOR id="gtk-source-file-saver-get-file" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-get-file">
|
322
|
+
<ANCHOR id="gtk-source-file-saver-get-location" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-get-location">
|
323
|
+
<ANCHOR id="gtk-source-file-saver-set-encoding" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-set-encoding">
|
324
|
+
<ANCHOR id="gtk-source-file-saver-get-encoding" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-get-encoding">
|
325
|
+
<ANCHOR id="gtk-source-file-saver-set-newline-type" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-set-newline-type">
|
326
|
+
<ANCHOR id="gtk-source-file-saver-get-newline-type" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-get-newline-type">
|
327
|
+
<ANCHOR id="gtk-source-file-saver-set-compression-type" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-set-compression-type">
|
328
|
+
<ANCHOR id="gtk-source-file-saver-get-compression-type" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-get-compression-type">
|
329
|
+
<ANCHOR id="gtk-source-file-saver-set-flags" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-set-flags">
|
330
|
+
<ANCHOR id="gtk-source-file-saver-get-flags" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-get-flags">
|
331
|
+
<ANCHOR id="gtk-source-file-saver-save-async" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-save-async">
|
332
|
+
<ANCHOR id="gtk-source-file-saver-save-finish" href="gtksourceview-3.0/GtkSourceFileSaver.html#gtk-source-file-saver-save-finish">
|
333
|
+
<ANCHOR id="GtkSourceFileSaver.other_details" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver.other_details">
|
334
|
+
<ANCHOR id="GtkSourceFileSaver-struct" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver-struct">
|
335
|
+
<ANCHOR id="GTK-SOURCE-FILE-SAVER-ERROR:CAPS" href="gtksourceview-3.0/GtkSourceFileSaver.html#GTK-SOURCE-FILE-SAVER-ERROR:CAPS">
|
336
|
+
<ANCHOR id="GtkSourceFileSaverError" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaverError">
|
337
|
+
<ANCHOR id="GtkSourceFileSaverFlags" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaverFlags">
|
338
|
+
<ANCHOR id="GtkSourceFileSaver.property-details" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver.property-details">
|
339
|
+
<ANCHOR id="GtkSourceFileSaver--buffer" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver--buffer">
|
340
|
+
<ANCHOR id="GtkSourceFileSaver--compression-type" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver--compression-type">
|
341
|
+
<ANCHOR id="GtkSourceFileSaver--encoding" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver--encoding">
|
342
|
+
<ANCHOR id="GtkSourceFileSaver--file" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver--file">
|
343
|
+
<ANCHOR id="GtkSourceFileSaver--flags" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver--flags">
|
344
|
+
<ANCHOR id="GtkSourceFileSaver--location" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver--location">
|
345
|
+
<ANCHOR id="GtkSourceFileSaver--newline-type" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver--newline-type">
|
346
|
+
<ANCHOR id="GtkSourceFileSaver.see-also" href="gtksourceview-3.0/GtkSourceFileSaver.html#GtkSourceFileSaver.see-also">
|
347
|
+
<ANCHOR id="GtkSourceGutter" href="gtksourceview-3.0/GtkSourceGutter.html">
|
348
|
+
<ANCHOR id="GtkSourceGutter.functions" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter.functions">
|
349
|
+
<ANCHOR id="GtkSourceGutter.properties" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter.properties">
|
350
|
+
<ANCHOR id="GtkSourceGutter.other" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter.other">
|
351
|
+
<ANCHOR id="GtkSourceGutter.object-hierarchy" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter.object-hierarchy">
|
352
|
+
<ANCHOR id="GtkSourceGutter.includes" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter.includes">
|
353
|
+
<ANCHOR id="GtkSourceGutter.description" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter.description">
|
354
|
+
<ANCHOR id="GtkSourceGutter.functions_details" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter.functions_details">
|
355
|
+
<ANCHOR id="gtk-source-gutter-get-window" href="gtksourceview-3.0/GtkSourceGutter.html#gtk-source-gutter-get-window">
|
356
|
+
<ANCHOR id="gtk-source-gutter-insert" href="gtksourceview-3.0/GtkSourceGutter.html#gtk-source-gutter-insert">
|
357
|
+
<ANCHOR id="gtk-source-gutter-reorder" href="gtksourceview-3.0/GtkSourceGutter.html#gtk-source-gutter-reorder">
|
358
|
+
<ANCHOR id="gtk-source-gutter-remove" href="gtksourceview-3.0/GtkSourceGutter.html#gtk-source-gutter-remove">
|
359
|
+
<ANCHOR id="gtk-source-gutter-queue-draw" href="gtksourceview-3.0/GtkSourceGutter.html#gtk-source-gutter-queue-draw">
|
360
|
+
<ANCHOR id="gtk-source-gutter-get-padding" href="gtksourceview-3.0/GtkSourceGutter.html#gtk-source-gutter-get-padding">
|
361
|
+
<ANCHOR id="gtk-source-gutter-set-padding" href="gtksourceview-3.0/GtkSourceGutter.html#gtk-source-gutter-set-padding">
|
362
|
+
<ANCHOR id="gtk-source-gutter-get-renderer-at-pos" href="gtksourceview-3.0/GtkSourceGutter.html#gtk-source-gutter-get-renderer-at-pos">
|
363
|
+
<ANCHOR id="GtkSourceGutter.other_details" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter.other_details">
|
364
|
+
<ANCHOR id="GtkSourceGutter-struct" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter-struct">
|
365
|
+
<ANCHOR id="GtkSourceGutter.property-details" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter.property-details">
|
366
|
+
<ANCHOR id="GtkSourceGutter--view" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter--view">
|
367
|
+
<ANCHOR id="GtkSourceGutter--window-type" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter--window-type">
|
368
|
+
<ANCHOR id="GtkSourceGutter--xpad" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter--xpad">
|
369
|
+
<ANCHOR id="GtkSourceGutter--ypad" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter--ypad">
|
370
|
+
<ANCHOR id="GtkSourceGutter.see-also" href="gtksourceview-3.0/GtkSourceGutter.html#GtkSourceGutter.see-also">
|
371
|
+
<ANCHOR id="GtkSourceGutterRenderer" href="gtksourceview-3.0/GtkSourceGutterRenderer.html">
|
372
|
+
<ANCHOR id="GtkSourceGutterRenderer.functions" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer.functions">
|
373
|
+
<ANCHOR id="GtkSourceGutterRenderer.properties" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer.properties">
|
374
|
+
<ANCHOR id="GtkSourceGutterRenderer.signals" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer.signals">
|
375
|
+
<ANCHOR id="GtkSourceGutterRenderer.other" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer.other">
|
376
|
+
<ANCHOR id="GtkSourceGutterRenderer.object-hierarchy" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer.object-hierarchy">
|
377
|
+
<ANCHOR id="GtkSourceGutterRenderer.includes" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer.includes">
|
378
|
+
<ANCHOR id="GtkSourceGutterRenderer.description" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer.description">
|
379
|
+
<ANCHOR id="GtkSourceGutterRenderer.functions_details" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer.functions_details">
|
380
|
+
<ANCHOR id="gtk-source-gutter-renderer-begin" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-begin">
|
381
|
+
<ANCHOR id="gtk-source-gutter-renderer-draw" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-draw">
|
382
|
+
<ANCHOR id="gtk-source-gutter-renderer-end" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-end">
|
383
|
+
<ANCHOR id="gtk-source-gutter-renderer-get-size" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-size">
|
384
|
+
<ANCHOR id="gtk-source-gutter-renderer-set-size" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-size">
|
385
|
+
<ANCHOR id="gtk-source-gutter-renderer-set-visible" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-visible">
|
386
|
+
<ANCHOR id="gtk-source-gutter-renderer-get-visible" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-visible">
|
387
|
+
<ANCHOR id="gtk-source-gutter-renderer-get-padding" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-padding">
|
388
|
+
<ANCHOR id="gtk-source-gutter-renderer-set-padding" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-padding">
|
389
|
+
<ANCHOR id="gtk-source-gutter-renderer-get-alignment" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-alignment">
|
390
|
+
<ANCHOR id="gtk-source-gutter-renderer-set-alignment" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-alignment">
|
391
|
+
<ANCHOR id="gtk-source-gutter-renderer-set-alignment-mode" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-alignment-mode">
|
392
|
+
<ANCHOR id="gtk-source-gutter-renderer-get-window-type" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-window-type">
|
393
|
+
<ANCHOR id="gtk-source-gutter-renderer-get-view" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-view">
|
394
|
+
<ANCHOR id="gtk-source-gutter-renderer-get-alignment-mode" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-alignment-mode">
|
395
|
+
<ANCHOR id="gtk-source-gutter-renderer-get-background" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-get-background">
|
396
|
+
<ANCHOR id="gtk-source-gutter-renderer-set-background" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-set-background">
|
397
|
+
<ANCHOR id="gtk-source-gutter-renderer-activate" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-activate">
|
398
|
+
<ANCHOR id="gtk-source-gutter-renderer-query-activatable" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-query-activatable">
|
399
|
+
<ANCHOR id="gtk-source-gutter-renderer-queue-draw" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-queue-draw">
|
400
|
+
<ANCHOR id="gtk-source-gutter-renderer-query-tooltip" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-query-tooltip">
|
401
|
+
<ANCHOR id="gtk-source-gutter-renderer-query-data" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#gtk-source-gutter-renderer-query-data">
|
402
|
+
<ANCHOR id="GtkSourceGutterRenderer.other_details" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer.other_details">
|
403
|
+
<ANCHOR id="GtkSourceGutterRenderer-struct" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-struct">
|
404
|
+
<ANCHOR id="GtkSourceGutterRendererState" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRendererState">
|
405
|
+
<ANCHOR id="GtkSourceGutterRendererAlignmentMode" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRendererAlignmentMode">
|
406
|
+
<ANCHOR id="GtkSourceGutterRenderer.property-details" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer.property-details">
|
407
|
+
<ANCHOR id="GtkSourceGutterRenderer--alignment-mode" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--alignment-mode">
|
408
|
+
<ANCHOR id="GtkSourceGutterRenderer--background-rgba" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--background-rgba">
|
409
|
+
<ANCHOR id="GtkSourceGutterRenderer--background-set" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--background-set">
|
410
|
+
<ANCHOR id="GtkSourceGutterRenderer--size" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--size">
|
411
|
+
<ANCHOR id="GtkSourceGutterRenderer--view" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--view">
|
412
|
+
<ANCHOR id="GtkSourceGutterRenderer--visible" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--visible">
|
413
|
+
<ANCHOR id="GtkSourceGutterRenderer--window-type" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--window-type">
|
414
|
+
<ANCHOR id="GtkSourceGutterRenderer--xalign" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--xalign">
|
415
|
+
<ANCHOR id="GtkSourceGutterRenderer--xpad" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--xpad">
|
416
|
+
<ANCHOR id="GtkSourceGutterRenderer--yalign" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--yalign">
|
417
|
+
<ANCHOR id="GtkSourceGutterRenderer--ypad" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer--ypad">
|
418
|
+
<ANCHOR id="GtkSourceGutterRenderer.signal-details" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer.signal-details">
|
419
|
+
<ANCHOR id="GtkSourceGutterRenderer-activate" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-activate">
|
420
|
+
<ANCHOR id="GtkSourceGutterRenderer-query-activatable" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-query-activatable">
|
421
|
+
<ANCHOR id="GtkSourceGutterRenderer-query-data" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-query-data">
|
422
|
+
<ANCHOR id="GtkSourceGutterRenderer-query-tooltip" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-query-tooltip">
|
423
|
+
<ANCHOR id="GtkSourceGutterRenderer-queue-draw" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer-queue-draw">
|
424
|
+
<ANCHOR id="GtkSourceGutterRenderer.see-also" href="gtksourceview-3.0/GtkSourceGutterRenderer.html#GtkSourceGutterRenderer.see-also">
|
425
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html">
|
426
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf.functions" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf.functions">
|
427
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf.properties" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf.properties">
|
428
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf.other" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf.other">
|
429
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf.object-hierarchy" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf.object-hierarchy">
|
430
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf.includes" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf.includes">
|
431
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf.description" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf.description">
|
432
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf.functions_details" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf.functions_details">
|
433
|
+
<ANCHOR id="gtk-source-gutter-renderer-pixbuf-new" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-new">
|
434
|
+
<ANCHOR id="gtk-source-gutter-renderer-pixbuf-set-pixbuf" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-set-pixbuf">
|
435
|
+
<ANCHOR id="gtk-source-gutter-renderer-pixbuf-get-pixbuf" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-get-pixbuf">
|
436
|
+
<ANCHOR id="gtk-source-gutter-renderer-pixbuf-set-stock-id" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-set-stock-id">
|
437
|
+
<ANCHOR id="gtk-source-gutter-renderer-pixbuf-get-stock-id" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-get-stock-id">
|
438
|
+
<ANCHOR id="gtk-source-gutter-renderer-pixbuf-set-gicon" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-set-gicon">
|
439
|
+
<ANCHOR id="gtk-source-gutter-renderer-pixbuf-get-gicon" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-get-gicon">
|
440
|
+
<ANCHOR id="gtk-source-gutter-renderer-pixbuf-set-icon-name" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-set-icon-name">
|
441
|
+
<ANCHOR id="gtk-source-gutter-renderer-pixbuf-get-icon-name" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#gtk-source-gutter-renderer-pixbuf-get-icon-name">
|
442
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf.other_details" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf.other_details">
|
443
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf-struct" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf-struct">
|
444
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf.property-details" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf.property-details">
|
445
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf--gicon" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--gicon">
|
446
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf--icon-name" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--icon-name">
|
447
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf--pixbuf" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--pixbuf">
|
448
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf--stock-id" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf--stock-id">
|
449
|
+
<ANCHOR id="GtkSourceGutterRendererPixbuf.see-also" href="gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html#GtkSourceGutterRendererPixbuf.see-also">
|
450
|
+
<ANCHOR id="GtkSourceGutterRendererText" href="gtksourceview-3.0/GtkSourceGutterRendererText.html">
|
451
|
+
<ANCHOR id="GtkSourceGutterRendererText.functions" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText.functions">
|
452
|
+
<ANCHOR id="GtkSourceGutterRendererText.properties" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText.properties">
|
453
|
+
<ANCHOR id="GtkSourceGutterRendererText.other" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText.other">
|
454
|
+
<ANCHOR id="GtkSourceGutterRendererText.object-hierarchy" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText.object-hierarchy">
|
455
|
+
<ANCHOR id="GtkSourceGutterRendererText.includes" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText.includes">
|
456
|
+
<ANCHOR id="GtkSourceGutterRendererText.description" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText.description">
|
457
|
+
<ANCHOR id="GtkSourceGutterRendererText.functions_details" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText.functions_details">
|
458
|
+
<ANCHOR id="gtk-source-gutter-renderer-text-new" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-new">
|
459
|
+
<ANCHOR id="gtk-source-gutter-renderer-text-set-markup" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-set-markup">
|
460
|
+
<ANCHOR id="gtk-source-gutter-renderer-text-set-text" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-set-text">
|
461
|
+
<ANCHOR id="gtk-source-gutter-renderer-text-measure" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-measure">
|
462
|
+
<ANCHOR id="gtk-source-gutter-renderer-text-measure-markup" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#gtk-source-gutter-renderer-text-measure-markup">
|
463
|
+
<ANCHOR id="GtkSourceGutterRendererText.other_details" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText.other_details">
|
464
|
+
<ANCHOR id="GtkSourceGutterRendererText-struct" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText-struct">
|
465
|
+
<ANCHOR id="GtkSourceGutterRendererText.property-details" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText.property-details">
|
466
|
+
<ANCHOR id="GtkSourceGutterRendererText--markup" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText--markup">
|
467
|
+
<ANCHOR id="GtkSourceGutterRendererText--text" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText--text">
|
468
|
+
<ANCHOR id="GtkSourceGutterRendererText.see-also" href="gtksourceview-3.0/GtkSourceGutterRendererText.html#GtkSourceGutterRendererText.see-also">
|
469
|
+
<ANCHOR id="GtkSourceLanguage" href="gtksourceview-3.0/GtkSourceLanguage.html">
|
470
|
+
<ANCHOR id="GtkSourceLanguage.functions" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage.functions">
|
471
|
+
<ANCHOR id="GtkSourceLanguage.properties" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage.properties">
|
472
|
+
<ANCHOR id="GtkSourceLanguage.other" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage.other">
|
473
|
+
<ANCHOR id="GtkSourceLanguage.object-hierarchy" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage.object-hierarchy">
|
474
|
+
<ANCHOR id="GtkSourceLanguage.includes" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage.includes">
|
475
|
+
<ANCHOR id="GtkSourceLanguage.description" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage.description">
|
476
|
+
<ANCHOR id="GtkSourceLanguage.functions_details" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage.functions_details">
|
477
|
+
<ANCHOR id="gtk-source-language-get-id" href="gtksourceview-3.0/GtkSourceLanguage.html#gtk-source-language-get-id">
|
478
|
+
<ANCHOR id="gtk-source-language-get-name" href="gtksourceview-3.0/GtkSourceLanguage.html#gtk-source-language-get-name">
|
479
|
+
<ANCHOR id="gtk-source-language-get-section" href="gtksourceview-3.0/GtkSourceLanguage.html#gtk-source-language-get-section">
|
480
|
+
<ANCHOR id="gtk-source-language-get-hidden" href="gtksourceview-3.0/GtkSourceLanguage.html#gtk-source-language-get-hidden">
|
481
|
+
<ANCHOR id="gtk-source-language-get-metadata" href="gtksourceview-3.0/GtkSourceLanguage.html#gtk-source-language-get-metadata">
|
482
|
+
<ANCHOR id="gtk-source-language-get-mime-types" href="gtksourceview-3.0/GtkSourceLanguage.html#gtk-source-language-get-mime-types">
|
483
|
+
<ANCHOR id="gtk-source-language-get-globs" href="gtksourceview-3.0/GtkSourceLanguage.html#gtk-source-language-get-globs">
|
484
|
+
<ANCHOR id="gtk-source-language-get-style-name" href="gtksourceview-3.0/GtkSourceLanguage.html#gtk-source-language-get-style-name">
|
485
|
+
<ANCHOR id="gtk-source-language-get-style-ids" href="gtksourceview-3.0/GtkSourceLanguage.html#gtk-source-language-get-style-ids">
|
486
|
+
<ANCHOR id="gtk-source-language-get-style-fallback" href="gtksourceview-3.0/GtkSourceLanguage.html#gtk-source-language-get-style-fallback">
|
487
|
+
<ANCHOR id="GtkSourceLanguage.other_details" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage.other_details">
|
488
|
+
<ANCHOR id="GtkSourceLanguage-struct" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage-struct">
|
489
|
+
<ANCHOR id="GtkSourceLanguage.property-details" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage.property-details">
|
490
|
+
<ANCHOR id="GtkSourceLanguage--hidden" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage--hidden">
|
491
|
+
<ANCHOR id="GtkSourceLanguage--id" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage--id">
|
492
|
+
<ANCHOR id="GtkSourceLanguage--name" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage--name">
|
493
|
+
<ANCHOR id="GtkSourceLanguage--section" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage--section">
|
494
|
+
<ANCHOR id="GtkSourceLanguage.see-also" href="gtksourceview-3.0/GtkSourceLanguage.html#GtkSourceLanguage.see-also">
|
495
|
+
<ANCHOR id="GtkSourceLanguageManager" href="gtksourceview-3.0/GtkSourceLanguageManager.html">
|
496
|
+
<ANCHOR id="GtkSourceLanguageManager.functions" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager.functions">
|
497
|
+
<ANCHOR id="GtkSourceLanguageManager.properties" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager.properties">
|
498
|
+
<ANCHOR id="GtkSourceLanguageManager.other" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager.other">
|
499
|
+
<ANCHOR id="GtkSourceLanguageManager.object-hierarchy" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager.object-hierarchy">
|
500
|
+
<ANCHOR id="GtkSourceLanguageManager.includes" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager.includes">
|
501
|
+
<ANCHOR id="GtkSourceLanguageManager.description" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager.description">
|
502
|
+
<ANCHOR id="GtkSourceLanguageManager.functions_details" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager.functions_details">
|
503
|
+
<ANCHOR id="gtk-source-language-manager-new" href="gtksourceview-3.0/GtkSourceLanguageManager.html#gtk-source-language-manager-new">
|
504
|
+
<ANCHOR id="gtk-source-language-manager-get-default" href="gtksourceview-3.0/GtkSourceLanguageManager.html#gtk-source-language-manager-get-default">
|
505
|
+
<ANCHOR id="gtk-source-language-manager-set-search-path" href="gtksourceview-3.0/GtkSourceLanguageManager.html#gtk-source-language-manager-set-search-path">
|
506
|
+
<ANCHOR id="gtk-source-language-manager-get-search-path" href="gtksourceview-3.0/GtkSourceLanguageManager.html#gtk-source-language-manager-get-search-path">
|
507
|
+
<ANCHOR id="gtk-source-language-manager-get-language-ids" href="gtksourceview-3.0/GtkSourceLanguageManager.html#gtk-source-language-manager-get-language-ids">
|
508
|
+
<ANCHOR id="gtk-source-language-manager-get-language" href="gtksourceview-3.0/GtkSourceLanguageManager.html#gtk-source-language-manager-get-language">
|
509
|
+
<ANCHOR id="gtk-source-language-manager-guess-language" href="gtksourceview-3.0/GtkSourceLanguageManager.html#gtk-source-language-manager-guess-language">
|
510
|
+
<ANCHOR id="GtkSourceLanguageManager.other_details" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager.other_details">
|
511
|
+
<ANCHOR id="GtkSourceLanguageManager-struct" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager-struct">
|
512
|
+
<ANCHOR id="GtkSourceLanguageManager.property-details" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager.property-details">
|
513
|
+
<ANCHOR id="GtkSourceLanguageManager--language-ids" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager--language-ids">
|
514
|
+
<ANCHOR id="GtkSourceLanguageManager--search-path" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager--search-path">
|
515
|
+
<ANCHOR id="GtkSourceLanguageManager.see-also" href="gtksourceview-3.0/GtkSourceLanguageManager.html#GtkSourceLanguageManager.see-also">
|
516
|
+
<ANCHOR id="GtkSourceMark" href="gtksourceview-3.0/GtkSourceMark.html">
|
517
|
+
<ANCHOR id="GtkSourceMark.functions" href="gtksourceview-3.0/GtkSourceMark.html#GtkSourceMark.functions">
|
518
|
+
<ANCHOR id="GtkSourceMark.properties" href="gtksourceview-3.0/GtkSourceMark.html#GtkSourceMark.properties">
|
519
|
+
<ANCHOR id="GtkSourceMark.other" href="gtksourceview-3.0/GtkSourceMark.html#GtkSourceMark.other">
|
520
|
+
<ANCHOR id="GtkSourceMark.object-hierarchy" href="gtksourceview-3.0/GtkSourceMark.html#GtkSourceMark.object-hierarchy">
|
521
|
+
<ANCHOR id="GtkSourceMark.includes" href="gtksourceview-3.0/GtkSourceMark.html#GtkSourceMark.includes">
|
522
|
+
<ANCHOR id="GtkSourceMark.description" href="gtksourceview-3.0/GtkSourceMark.html#GtkSourceMark.description">
|
523
|
+
<ANCHOR id="GtkSourceMark.functions_details" href="gtksourceview-3.0/GtkSourceMark.html#GtkSourceMark.functions_details">
|
524
|
+
<ANCHOR id="gtk-source-mark-new" href="gtksourceview-3.0/GtkSourceMark.html#gtk-source-mark-new">
|
525
|
+
<ANCHOR id="gtk-source-mark-get-category" href="gtksourceview-3.0/GtkSourceMark.html#gtk-source-mark-get-category">
|
526
|
+
<ANCHOR id="gtk-source-mark-next" href="gtksourceview-3.0/GtkSourceMark.html#gtk-source-mark-next">
|
527
|
+
<ANCHOR id="gtk-source-mark-prev" href="gtksourceview-3.0/GtkSourceMark.html#gtk-source-mark-prev">
|
528
|
+
<ANCHOR id="GtkSourceMark.other_details" href="gtksourceview-3.0/GtkSourceMark.html#GtkSourceMark.other_details">
|
529
|
+
<ANCHOR id="GtkSourceMark-struct" href="gtksourceview-3.0/GtkSourceMark.html#GtkSourceMark-struct">
|
530
|
+
<ANCHOR id="GtkSourceMark.property-details" href="gtksourceview-3.0/GtkSourceMark.html#GtkSourceMark.property-details">
|
531
|
+
<ANCHOR id="GtkSourceMark--category" href="gtksourceview-3.0/GtkSourceMark.html#GtkSourceMark--category">
|
532
|
+
<ANCHOR id="GtkSourceMark.see-also" href="gtksourceview-3.0/GtkSourceMark.html#GtkSourceMark.see-also">
|
533
|
+
<ANCHOR id="GtkSourceMarkAttributes" href="gtksourceview-3.0/GtkSourceMarkAttributes.html">
|
534
|
+
<ANCHOR id="GtkSourceMarkAttributes.functions" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes.functions">
|
535
|
+
<ANCHOR id="GtkSourceMarkAttributes.properties" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes.properties">
|
536
|
+
<ANCHOR id="GtkSourceMarkAttributes.signals" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes.signals">
|
537
|
+
<ANCHOR id="GtkSourceMarkAttributes.other" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes.other">
|
538
|
+
<ANCHOR id="GtkSourceMarkAttributes.object-hierarchy" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes.object-hierarchy">
|
539
|
+
<ANCHOR id="GtkSourceMarkAttributes.includes" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes.includes">
|
540
|
+
<ANCHOR id="GtkSourceMarkAttributes.description" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes.description">
|
541
|
+
<ANCHOR id="GtkSourceMarkAttributes.functions_details" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes.functions_details">
|
542
|
+
<ANCHOR id="gtk-source-mark-attributes-new" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-new">
|
543
|
+
<ANCHOR id="gtk-source-mark-attributes-set-background" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-background">
|
544
|
+
<ANCHOR id="gtk-source-mark-attributes-get-background" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-background">
|
545
|
+
<ANCHOR id="gtk-source-mark-attributes-set-stock-id" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-stock-id">
|
546
|
+
<ANCHOR id="gtk-source-mark-attributes-get-stock-id" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-stock-id">
|
547
|
+
<ANCHOR id="gtk-source-mark-attributes-set-icon-name" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-icon-name">
|
548
|
+
<ANCHOR id="gtk-source-mark-attributes-get-icon-name" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-icon-name">
|
549
|
+
<ANCHOR id="gtk-source-mark-attributes-set-gicon" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-gicon">
|
550
|
+
<ANCHOR id="gtk-source-mark-attributes-get-gicon" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-gicon">
|
551
|
+
<ANCHOR id="gtk-source-mark-attributes-set-pixbuf" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-set-pixbuf">
|
552
|
+
<ANCHOR id="gtk-source-mark-attributes-get-pixbuf" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-pixbuf">
|
553
|
+
<ANCHOR id="gtk-source-mark-attributes-render-icon" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-render-icon">
|
554
|
+
<ANCHOR id="gtk-source-mark-attributes-get-tooltip-text" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-tooltip-text">
|
555
|
+
<ANCHOR id="gtk-source-mark-attributes-get-tooltip-markup" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#gtk-source-mark-attributes-get-tooltip-markup">
|
556
|
+
<ANCHOR id="GtkSourceMarkAttributes.other_details" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes.other_details">
|
557
|
+
<ANCHOR id="GtkSourceMarkAttributes-struct" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-struct">
|
558
|
+
<ANCHOR id="GtkSourceMarkAttributes.property-details" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes.property-details">
|
559
|
+
<ANCHOR id="GtkSourceMarkAttributes--background" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--background">
|
560
|
+
<ANCHOR id="GtkSourceMarkAttributes--gicon" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--gicon">
|
561
|
+
<ANCHOR id="GtkSourceMarkAttributes--icon-name" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--icon-name">
|
562
|
+
<ANCHOR id="GtkSourceMarkAttributes--pixbuf" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--pixbuf">
|
563
|
+
<ANCHOR id="GtkSourceMarkAttributes--stock-id" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes--stock-id">
|
564
|
+
<ANCHOR id="GtkSourceMarkAttributes.signal-details" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes.signal-details">
|
565
|
+
<ANCHOR id="GtkSourceMarkAttributes-query-tooltip-markup" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-query-tooltip-markup">
|
566
|
+
<ANCHOR id="GtkSourceMarkAttributes-query-tooltip-text" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes-query-tooltip-text">
|
567
|
+
<ANCHOR id="GtkSourceMarkAttributes.see-also" href="gtksourceview-3.0/GtkSourceMarkAttributes.html#GtkSourceMarkAttributes.see-also">
|
568
|
+
<ANCHOR id="GtkSourcePrintCompositor" href="gtksourceview-3.0/GtkSourcePrintCompositor.html">
|
569
|
+
<ANCHOR id="GtkSourcePrintCompositor.functions" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor.functions">
|
570
|
+
<ANCHOR id="GtkSourcePrintCompositor.properties" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor.properties">
|
571
|
+
<ANCHOR id="GtkSourcePrintCompositor.other" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor.other">
|
572
|
+
<ANCHOR id="GtkSourcePrintCompositor.object-hierarchy" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor.object-hierarchy">
|
573
|
+
<ANCHOR id="GtkSourcePrintCompositor.includes" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor.includes">
|
574
|
+
<ANCHOR id="GtkSourcePrintCompositor.description" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor.description">
|
575
|
+
<ANCHOR id="GtkSourcePrintCompositor.functions_details" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor.functions_details">
|
576
|
+
<ANCHOR id="gtk-source-print-compositor-new" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-new">
|
577
|
+
<ANCHOR id="gtk-source-print-compositor-new-from-view" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-new-from-view">
|
578
|
+
<ANCHOR id="gtk-source-print-compositor-get-buffer" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-buffer">
|
579
|
+
<ANCHOR id="gtk-source-print-compositor-set-tab-width" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-tab-width">
|
580
|
+
<ANCHOR id="gtk-source-print-compositor-get-tab-width" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-tab-width">
|
581
|
+
<ANCHOR id="gtk-source-print-compositor-set-wrap-mode" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-wrap-mode">
|
582
|
+
<ANCHOR id="gtk-source-print-compositor-get-wrap-mode" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-wrap-mode">
|
583
|
+
<ANCHOR id="gtk-source-print-compositor-set-highlight-syntax" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-highlight-syntax">
|
584
|
+
<ANCHOR id="gtk-source-print-compositor-get-highlight-syntax" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-highlight-syntax">
|
585
|
+
<ANCHOR id="gtk-source-print-compositor-set-print-line-numbers" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-print-line-numbers">
|
586
|
+
<ANCHOR id="gtk-source-print-compositor-get-print-line-numbers" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-print-line-numbers">
|
587
|
+
<ANCHOR id="gtk-source-print-compositor-set-body-font-name" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-body-font-name">
|
588
|
+
<ANCHOR id="gtk-source-print-compositor-get-body-font-name" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-body-font-name">
|
589
|
+
<ANCHOR id="gtk-source-print-compositor-set-line-numbers-font-name" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-line-numbers-font-name">
|
590
|
+
<ANCHOR id="gtk-source-print-compositor-get-line-numbers-font-name" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-line-numbers-font-name">
|
591
|
+
<ANCHOR id="gtk-source-print-compositor-set-header-font-name" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-header-font-name">
|
592
|
+
<ANCHOR id="gtk-source-print-compositor-get-header-font-name" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-header-font-name">
|
593
|
+
<ANCHOR id="gtk-source-print-compositor-set-footer-font-name" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-footer-font-name">
|
594
|
+
<ANCHOR id="gtk-source-print-compositor-get-footer-font-name" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-footer-font-name">
|
595
|
+
<ANCHOR id="gtk-source-print-compositor-get-top-margin" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-top-margin">
|
596
|
+
<ANCHOR id="gtk-source-print-compositor-set-top-margin" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-top-margin">
|
597
|
+
<ANCHOR id="gtk-source-print-compositor-get-bottom-margin" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-bottom-margin">
|
598
|
+
<ANCHOR id="gtk-source-print-compositor-set-bottom-margin" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-bottom-margin">
|
599
|
+
<ANCHOR id="gtk-source-print-compositor-get-left-margin" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-left-margin">
|
600
|
+
<ANCHOR id="gtk-source-print-compositor-set-left-margin" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-left-margin">
|
601
|
+
<ANCHOR id="gtk-source-print-compositor-get-right-margin" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-right-margin">
|
602
|
+
<ANCHOR id="gtk-source-print-compositor-set-right-margin" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-right-margin">
|
603
|
+
<ANCHOR id="gtk-source-print-compositor-set-print-header" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-print-header">
|
604
|
+
<ANCHOR id="gtk-source-print-compositor-get-print-header" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-print-header">
|
605
|
+
<ANCHOR id="gtk-source-print-compositor-set-print-footer" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-print-footer">
|
606
|
+
<ANCHOR id="gtk-source-print-compositor-get-print-footer" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-print-footer">
|
607
|
+
<ANCHOR id="gtk-source-print-compositor-set-header-format" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-header-format">
|
608
|
+
<ANCHOR id="gtk-source-print-compositor-set-footer-format" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-set-footer-format">
|
609
|
+
<ANCHOR id="gtk-source-print-compositor-get-n-pages" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-n-pages">
|
610
|
+
<ANCHOR id="gtk-source-print-compositor-paginate" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-paginate">
|
611
|
+
<ANCHOR id="gtk-source-print-compositor-get-pagination-progress" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-get-pagination-progress">
|
612
|
+
<ANCHOR id="gtk-source-print-compositor-draw-page" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#gtk-source-print-compositor-draw-page">
|
613
|
+
<ANCHOR id="GtkSourcePrintCompositor.other_details" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor.other_details">
|
614
|
+
<ANCHOR id="GtkSourcePrintCompositor-struct" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor-struct">
|
615
|
+
<ANCHOR id="GtkSourcePrintCompositor.property-details" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor.property-details">
|
616
|
+
<ANCHOR id="GtkSourcePrintCompositor--body-font-name" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--body-font-name">
|
617
|
+
<ANCHOR id="GtkSourcePrintCompositor--buffer" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--buffer">
|
618
|
+
<ANCHOR id="GtkSourcePrintCompositor--footer-font-name" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--footer-font-name">
|
619
|
+
<ANCHOR id="GtkSourcePrintCompositor--header-font-name" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--header-font-name">
|
620
|
+
<ANCHOR id="GtkSourcePrintCompositor--highlight-syntax" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--highlight-syntax">
|
621
|
+
<ANCHOR id="GtkSourcePrintCompositor--line-numbers-font-name" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--line-numbers-font-name">
|
622
|
+
<ANCHOR id="GtkSourcePrintCompositor--n-pages" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--n-pages">
|
623
|
+
<ANCHOR id="GtkSourcePrintCompositor--print-footer" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--print-footer">
|
624
|
+
<ANCHOR id="GtkSourcePrintCompositor--print-header" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--print-header">
|
625
|
+
<ANCHOR id="GtkSourcePrintCompositor--print-line-numbers" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--print-line-numbers">
|
626
|
+
<ANCHOR id="GtkSourcePrintCompositor--tab-width" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--tab-width">
|
627
|
+
<ANCHOR id="GtkSourcePrintCompositor--wrap-mode" href="gtksourceview-3.0/GtkSourcePrintCompositor.html#GtkSourcePrintCompositor--wrap-mode">
|
628
|
+
<ANCHOR id="GtkSourceSearchContext" href="gtksourceview-3.0/GtkSourceSearchContext.html">
|
629
|
+
<ANCHOR id="GtkSourceSearchContext.functions" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext.functions">
|
630
|
+
<ANCHOR id="GtkSourceSearchContext.properties" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext.properties">
|
631
|
+
<ANCHOR id="GtkSourceSearchContext.other" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext.other">
|
632
|
+
<ANCHOR id="GtkSourceSearchContext.object-hierarchy" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext.object-hierarchy">
|
633
|
+
<ANCHOR id="GtkSourceSearchContext.includes" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext.includes">
|
634
|
+
<ANCHOR id="GtkSourceSearchContext.description" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext.description">
|
635
|
+
<ANCHOR id="GtkSourceSearchContext.functions_details" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext.functions_details">
|
636
|
+
<ANCHOR id="gtk-source-search-context-new" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-new">
|
637
|
+
<ANCHOR id="gtk-source-search-context-get-buffer" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-get-buffer">
|
638
|
+
<ANCHOR id="gtk-source-search-context-get-settings" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-get-settings">
|
639
|
+
<ANCHOR id="gtk-source-search-context-set-settings" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-set-settings">
|
640
|
+
<ANCHOR id="gtk-source-search-context-get-highlight" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-get-highlight">
|
641
|
+
<ANCHOR id="gtk-source-search-context-set-highlight" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-set-highlight">
|
642
|
+
<ANCHOR id="gtk-source-search-context-get-occurrences-count" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-get-occurrences-count">
|
643
|
+
<ANCHOR id="gtk-source-search-context-get-occurrence-position" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-get-occurrence-position">
|
644
|
+
<ANCHOR id="gtk-source-search-context-forward" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-forward">
|
645
|
+
<ANCHOR id="gtk-source-search-context-forward-async" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-forward-async">
|
646
|
+
<ANCHOR id="gtk-source-search-context-forward-finish" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-forward-finish">
|
647
|
+
<ANCHOR id="gtk-source-search-context-backward" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-backward">
|
648
|
+
<ANCHOR id="gtk-source-search-context-backward-async" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-backward-async">
|
649
|
+
<ANCHOR id="gtk-source-search-context-backward-finish" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-backward-finish">
|
650
|
+
<ANCHOR id="gtk-source-search-context-replace" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-replace">
|
651
|
+
<ANCHOR id="gtk-source-search-context-replace-all" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-replace-all">
|
652
|
+
<ANCHOR id="gtk-source-search-context-get-regex-error" href="gtksourceview-3.0/GtkSourceSearchContext.html#gtk-source-search-context-get-regex-error">
|
653
|
+
<ANCHOR id="GtkSourceSearchContext.other_details" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext.other_details">
|
654
|
+
<ANCHOR id="GtkSourceSearchContext-struct" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext-struct">
|
655
|
+
<ANCHOR id="GtkSourceSearchContext.property-details" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext.property-details">
|
656
|
+
<ANCHOR id="GtkSourceSearchContext--buffer" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext--buffer">
|
657
|
+
<ANCHOR id="GtkSourceSearchContext--highlight" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext--highlight">
|
658
|
+
<ANCHOR id="GtkSourceSearchContext--occurrences-count" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext--occurrences-count">
|
659
|
+
<ANCHOR id="GtkSourceSearchContext--regex-error" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext--regex-error">
|
660
|
+
<ANCHOR id="GtkSourceSearchContext--settings" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext--settings">
|
661
|
+
<ANCHOR id="GtkSourceSearchContext.see-also" href="gtksourceview-3.0/GtkSourceSearchContext.html#GtkSourceSearchContext.see-also">
|
662
|
+
<ANCHOR id="GtkSourceSearchSettings" href="gtksourceview-3.0/GtkSourceSearchSettings.html">
|
663
|
+
<ANCHOR id="GtkSourceSearchSettings.functions" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings.functions">
|
664
|
+
<ANCHOR id="GtkSourceSearchSettings.properties" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings.properties">
|
665
|
+
<ANCHOR id="GtkSourceSearchSettings.other" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings.other">
|
666
|
+
<ANCHOR id="GtkSourceSearchSettings.object-hierarchy" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings.object-hierarchy">
|
667
|
+
<ANCHOR id="GtkSourceSearchSettings.includes" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings.includes">
|
668
|
+
<ANCHOR id="GtkSourceSearchSettings.description" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings.description">
|
669
|
+
<ANCHOR id="GtkSourceSearchSettings.functions_details" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings.functions_details">
|
670
|
+
<ANCHOR id="gtk-source-search-settings-new" href="gtksourceview-3.0/GtkSourceSearchSettings.html#gtk-source-search-settings-new">
|
671
|
+
<ANCHOR id="gtk-source-search-settings-get-search-text" href="gtksourceview-3.0/GtkSourceSearchSettings.html#gtk-source-search-settings-get-search-text">
|
672
|
+
<ANCHOR id="gtk-source-search-settings-set-search-text" href="gtksourceview-3.0/GtkSourceSearchSettings.html#gtk-source-search-settings-set-search-text">
|
673
|
+
<ANCHOR id="gtk-source-search-settings-get-case-sensitive" href="gtksourceview-3.0/GtkSourceSearchSettings.html#gtk-source-search-settings-get-case-sensitive">
|
674
|
+
<ANCHOR id="gtk-source-search-settings-set-case-sensitive" href="gtksourceview-3.0/GtkSourceSearchSettings.html#gtk-source-search-settings-set-case-sensitive">
|
675
|
+
<ANCHOR id="gtk-source-search-settings-get-at-word-boundaries" href="gtksourceview-3.0/GtkSourceSearchSettings.html#gtk-source-search-settings-get-at-word-boundaries">
|
676
|
+
<ANCHOR id="gtk-source-search-settings-set-at-word-boundaries" href="gtksourceview-3.0/GtkSourceSearchSettings.html#gtk-source-search-settings-set-at-word-boundaries">
|
677
|
+
<ANCHOR id="gtk-source-search-settings-get-wrap-around" href="gtksourceview-3.0/GtkSourceSearchSettings.html#gtk-source-search-settings-get-wrap-around">
|
678
|
+
<ANCHOR id="gtk-source-search-settings-set-wrap-around" href="gtksourceview-3.0/GtkSourceSearchSettings.html#gtk-source-search-settings-set-wrap-around">
|
679
|
+
<ANCHOR id="gtk-source-search-settings-get-regex-enabled" href="gtksourceview-3.0/GtkSourceSearchSettings.html#gtk-source-search-settings-get-regex-enabled">
|
680
|
+
<ANCHOR id="gtk-source-search-settings-set-regex-enabled" href="gtksourceview-3.0/GtkSourceSearchSettings.html#gtk-source-search-settings-set-regex-enabled">
|
681
|
+
<ANCHOR id="GtkSourceSearchSettings.other_details" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings.other_details">
|
682
|
+
<ANCHOR id="GtkSourceSearchSettings-struct" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings-struct">
|
683
|
+
<ANCHOR id="GtkSourceSearchSettings.property-details" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings.property-details">
|
684
|
+
<ANCHOR id="GtkSourceSearchSettings--at-word-boundaries" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings--at-word-boundaries">
|
685
|
+
<ANCHOR id="GtkSourceSearchSettings--case-sensitive" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings--case-sensitive">
|
686
|
+
<ANCHOR id="GtkSourceSearchSettings--regex-enabled" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings--regex-enabled">
|
687
|
+
<ANCHOR id="GtkSourceSearchSettings--search-text" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings--search-text">
|
688
|
+
<ANCHOR id="GtkSourceSearchSettings--wrap-around" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings--wrap-around">
|
689
|
+
<ANCHOR id="GtkSourceSearchSettings.see-also" href="gtksourceview-3.0/GtkSourceSearchSettings.html#GtkSourceSearchSettings.see-also">
|
690
|
+
<ANCHOR id="GtkSourceStyle" href="gtksourceview-3.0/GtkSourceStyle.html">
|
691
|
+
<ANCHOR id="GtkSourceStyle.functions" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle.functions">
|
692
|
+
<ANCHOR id="GtkSourceStyle.properties" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle.properties">
|
693
|
+
<ANCHOR id="GtkSourceStyle.other" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle.other">
|
694
|
+
<ANCHOR id="GtkSourceStyle.object-hierarchy" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle.object-hierarchy">
|
695
|
+
<ANCHOR id="GtkSourceStyle.includes" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle.includes">
|
696
|
+
<ANCHOR id="GtkSourceStyle.description" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle.description">
|
697
|
+
<ANCHOR id="GtkSourceStyle.functions_details" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle.functions_details">
|
698
|
+
<ANCHOR id="gtk-source-style-copy" href="gtksourceview-3.0/GtkSourceStyle.html#gtk-source-style-copy">
|
699
|
+
<ANCHOR id="GtkSourceStyle.other_details" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle.other_details">
|
700
|
+
<ANCHOR id="GtkSourceStyle-struct" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle-struct">
|
701
|
+
<ANCHOR id="GtkSourceStyle.property-details" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle.property-details">
|
702
|
+
<ANCHOR id="GtkSourceStyle--background" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--background">
|
703
|
+
<ANCHOR id="GtkSourceStyle--background-set" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--background-set">
|
704
|
+
<ANCHOR id="GtkSourceStyle--bold" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--bold">
|
705
|
+
<ANCHOR id="GtkSourceStyle--bold-set" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--bold-set">
|
706
|
+
<ANCHOR id="GtkSourceStyle--foreground" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--foreground">
|
707
|
+
<ANCHOR id="GtkSourceStyle--foreground-set" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--foreground-set">
|
708
|
+
<ANCHOR id="GtkSourceStyle--italic" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--italic">
|
709
|
+
<ANCHOR id="GtkSourceStyle--italic-set" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--italic-set">
|
710
|
+
<ANCHOR id="GtkSourceStyle--line-background" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--line-background">
|
711
|
+
<ANCHOR id="GtkSourceStyle--line-background-set" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--line-background-set">
|
712
|
+
<ANCHOR id="GtkSourceStyle--scale" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--scale">
|
713
|
+
<ANCHOR id="GtkSourceStyle--scale-set" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--scale-set">
|
714
|
+
<ANCHOR id="GtkSourceStyle--strikethrough" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--strikethrough">
|
715
|
+
<ANCHOR id="GtkSourceStyle--strikethrough-set" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--strikethrough-set">
|
716
|
+
<ANCHOR id="GtkSourceStyle--underline" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--underline">
|
717
|
+
<ANCHOR id="GtkSourceStyle--underline-set" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle--underline-set">
|
718
|
+
<ANCHOR id="GtkSourceStyle.see-also" href="gtksourceview-3.0/GtkSourceStyle.html#GtkSourceStyle.see-also">
|
719
|
+
<ANCHOR id="GtkSourceStyleScheme" href="gtksourceview-3.0/GtkSourceStyleScheme.html">
|
720
|
+
<ANCHOR id="GtkSourceStyleScheme.functions" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme.functions">
|
721
|
+
<ANCHOR id="GtkSourceStyleScheme.properties" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme.properties">
|
722
|
+
<ANCHOR id="GtkSourceStyleScheme.other" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme.other">
|
723
|
+
<ANCHOR id="GtkSourceStyleScheme.object-hierarchy" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme.object-hierarchy">
|
724
|
+
<ANCHOR id="GtkSourceStyleScheme.includes" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme.includes">
|
725
|
+
<ANCHOR id="GtkSourceStyleScheme.description" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme.description">
|
726
|
+
<ANCHOR id="GtkSourceStyleScheme.functions_details" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme.functions_details">
|
727
|
+
<ANCHOR id="gtk-source-style-scheme-get-id" href="gtksourceview-3.0/GtkSourceStyleScheme.html#gtk-source-style-scheme-get-id">
|
728
|
+
<ANCHOR id="gtk-source-style-scheme-get-name" href="gtksourceview-3.0/GtkSourceStyleScheme.html#gtk-source-style-scheme-get-name">
|
729
|
+
<ANCHOR id="gtk-source-style-scheme-get-description" href="gtksourceview-3.0/GtkSourceStyleScheme.html#gtk-source-style-scheme-get-description">
|
730
|
+
<ANCHOR id="gtk-source-style-scheme-get-authors" href="gtksourceview-3.0/GtkSourceStyleScheme.html#gtk-source-style-scheme-get-authors">
|
731
|
+
<ANCHOR id="gtk-source-style-scheme-get-filename" href="gtksourceview-3.0/GtkSourceStyleScheme.html#gtk-source-style-scheme-get-filename">
|
732
|
+
<ANCHOR id="gtk-source-style-scheme-get-style" href="gtksourceview-3.0/GtkSourceStyleScheme.html#gtk-source-style-scheme-get-style">
|
733
|
+
<ANCHOR id="GtkSourceStyleScheme.other_details" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme.other_details">
|
734
|
+
<ANCHOR id="GtkSourceStyleScheme-struct" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme-struct">
|
735
|
+
<ANCHOR id="GtkSourceStyleScheme.property-details" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme.property-details">
|
736
|
+
<ANCHOR id="GtkSourceStyleScheme--description" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme--description">
|
737
|
+
<ANCHOR id="GtkSourceStyleScheme--filename" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme--filename">
|
738
|
+
<ANCHOR id="GtkSourceStyleScheme--id" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme--id">
|
739
|
+
<ANCHOR id="GtkSourceStyleScheme--name" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme--name">
|
740
|
+
<ANCHOR id="GtkSourceStyleScheme.see-also" href="gtksourceview-3.0/GtkSourceStyleScheme.html#GtkSourceStyleScheme.see-also">
|
741
|
+
<ANCHOR id="GtkSourceStyleSchemeManager" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html">
|
742
|
+
<ANCHOR id="GtkSourceStyleSchemeManager.functions" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager.functions">
|
743
|
+
<ANCHOR id="GtkSourceStyleSchemeManager.properties" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager.properties">
|
744
|
+
<ANCHOR id="GtkSourceStyleSchemeManager.other" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager.other">
|
745
|
+
<ANCHOR id="GtkSourceStyleSchemeManager.object-hierarchy" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager.object-hierarchy">
|
746
|
+
<ANCHOR id="GtkSourceStyleSchemeManager.includes" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager.includes">
|
747
|
+
<ANCHOR id="GtkSourceStyleSchemeManager.description" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager.description">
|
748
|
+
<ANCHOR id="GtkSourceStyleSchemeManager.functions_details" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager.functions_details">
|
749
|
+
<ANCHOR id="gtk-source-style-scheme-manager-new" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-new">
|
750
|
+
<ANCHOR id="gtk-source-style-scheme-manager-get-default" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-default">
|
751
|
+
<ANCHOR id="gtk-source-style-scheme-manager-set-search-path" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-set-search-path">
|
752
|
+
<ANCHOR id="gtk-source-style-scheme-manager-append-search-path" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-append-search-path">
|
753
|
+
<ANCHOR id="gtk-source-style-scheme-manager-prepend-search-path" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-prepend-search-path">
|
754
|
+
<ANCHOR id="gtk-source-style-scheme-manager-get-search-path" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-search-path">
|
755
|
+
<ANCHOR id="gtk-source-style-scheme-manager-get-scheme-ids" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-scheme-ids">
|
756
|
+
<ANCHOR id="gtk-source-style-scheme-manager-get-scheme" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-get-scheme">
|
757
|
+
<ANCHOR id="gtk-source-style-scheme-manager-force-rescan" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#gtk-source-style-scheme-manager-force-rescan">
|
758
|
+
<ANCHOR id="GtkSourceStyleSchemeManager.other_details" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager.other_details">
|
759
|
+
<ANCHOR id="GtkSourceStyleSchemeManager-struct" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager-struct">
|
760
|
+
<ANCHOR id="GtkSourceStyleSchemeManager.property-details" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager.property-details">
|
761
|
+
<ANCHOR id="GtkSourceStyleSchemeManager--scheme-ids" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager--scheme-ids">
|
762
|
+
<ANCHOR id="GtkSourceStyleSchemeManager--search-path" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager--search-path">
|
763
|
+
<ANCHOR id="GtkSourceStyleSchemeManager.see-also" href="gtksourceview-3.0/GtkSourceStyleSchemeManager.html#GtkSourceStyleSchemeManager.see-also">
|
764
|
+
<ANCHOR id="GtkSourceUndoManager" href="gtksourceview-3.0/GtkSourceUndoManager.html">
|
765
|
+
<ANCHOR id="GtkSourceUndoManager.functions" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager.functions">
|
766
|
+
<ANCHOR id="GtkSourceUndoManager.signals" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager.signals">
|
767
|
+
<ANCHOR id="GtkSourceUndoManager.other" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager.other">
|
768
|
+
<ANCHOR id="GtkSourceUndoManager.object-hierarchy" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager.object-hierarchy">
|
769
|
+
<ANCHOR id="GtkSourceUndoManager.prerequisites" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager.prerequisites">
|
770
|
+
<ANCHOR id="GtkSourceUndoManager.includes" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager.includes">
|
771
|
+
<ANCHOR id="GtkSourceUndoManager.description" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager.description">
|
772
|
+
<ANCHOR id="GtkSourceUndoManager.functions_details" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager.functions_details">
|
773
|
+
<ANCHOR id="gtk-source-undo-manager-can-undo" href="gtksourceview-3.0/GtkSourceUndoManager.html#gtk-source-undo-manager-can-undo">
|
774
|
+
<ANCHOR id="gtk-source-undo-manager-can-redo" href="gtksourceview-3.0/GtkSourceUndoManager.html#gtk-source-undo-manager-can-redo">
|
775
|
+
<ANCHOR id="gtk-source-undo-manager-undo" href="gtksourceview-3.0/GtkSourceUndoManager.html#gtk-source-undo-manager-undo">
|
776
|
+
<ANCHOR id="gtk-source-undo-manager-redo" href="gtksourceview-3.0/GtkSourceUndoManager.html#gtk-source-undo-manager-redo">
|
777
|
+
<ANCHOR id="gtk-source-undo-manager-begin-not-undoable-action" href="gtksourceview-3.0/GtkSourceUndoManager.html#gtk-source-undo-manager-begin-not-undoable-action">
|
778
|
+
<ANCHOR id="gtk-source-undo-manager-end-not-undoable-action" href="gtksourceview-3.0/GtkSourceUndoManager.html#gtk-source-undo-manager-end-not-undoable-action">
|
779
|
+
<ANCHOR id="gtk-source-undo-manager-can-undo-changed" href="gtksourceview-3.0/GtkSourceUndoManager.html#gtk-source-undo-manager-can-undo-changed">
|
780
|
+
<ANCHOR id="gtk-source-undo-manager-can-redo-changed" href="gtksourceview-3.0/GtkSourceUndoManager.html#gtk-source-undo-manager-can-redo-changed">
|
781
|
+
<ANCHOR id="GtkSourceUndoManager.other_details" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager.other_details">
|
782
|
+
<ANCHOR id="GtkSourceUndoManager-struct" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager-struct">
|
783
|
+
<ANCHOR id="GtkSourceUndoManager.signal-details" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager.signal-details">
|
784
|
+
<ANCHOR id="GtkSourceUndoManager-can-redo-changed" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager-can-redo-changed">
|
785
|
+
<ANCHOR id="GtkSourceUndoManager-can-undo-changed" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager-can-undo-changed">
|
786
|
+
<ANCHOR id="GtkSourceUndoManager.see-also" href="gtksourceview-3.0/GtkSourceUndoManager.html#GtkSourceUndoManager.see-also">
|
787
|
+
<ANCHOR id="gtksourceview-3.0-GtkSourceUtils" href="gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html">
|
788
|
+
<ANCHOR id="gtksourceview-3.0-GtkSourceUtils.functions" href="gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html#gtksourceview-3.0-GtkSourceUtils.functions">
|
789
|
+
<ANCHOR id="gtksourceview-3.0-GtkSourceUtils.includes" href="gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html#gtksourceview-3.0-GtkSourceUtils.includes">
|
790
|
+
<ANCHOR id="gtksourceview-3.0-GtkSourceUtils.description" href="gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html#gtksourceview-3.0-GtkSourceUtils.description">
|
791
|
+
<ANCHOR id="gtksourceview-3.0-GtkSourceUtils.functions_details" href="gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html#gtksourceview-3.0-GtkSourceUtils.functions_details">
|
792
|
+
<ANCHOR id="gtk-source-utils-unescape-search-text" href="gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-unescape-search-text">
|
793
|
+
<ANCHOR id="gtk-source-utils-escape-search-text" href="gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-escape-search-text">
|
794
|
+
<ANCHOR id="gtksourceview-3.0-GtkSourceUtils.other_details" href="gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html#gtksourceview-3.0-GtkSourceUtils.other_details">
|
795
|
+
<ANCHOR id="GtkSourceView" href="gtksourceview-3.0/GtkSourceView.html">
|
796
|
+
<ANCHOR id="GtkSourceView.functions" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.functions">
|
797
|
+
<ANCHOR id="GtkSourceView.properties" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.properties">
|
798
|
+
<ANCHOR id="GtkSourceView.signals" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.signals">
|
799
|
+
<ANCHOR id="GtkSourceView.other" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.other">
|
800
|
+
<ANCHOR id="GtkSourceView.object-hierarchy" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.object-hierarchy">
|
801
|
+
<ANCHOR id="GtkSourceView.implemented-interfaces" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.implemented-interfaces">
|
802
|
+
<ANCHOR id="GtkSourceView.includes" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.includes">
|
803
|
+
<ANCHOR id="GtkSourceView.description" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.description">
|
804
|
+
<ANCHOR id="GtkSourceView.functions_details" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.functions_details">
|
805
|
+
<ANCHOR id="gtk-source-view-new" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-new">
|
806
|
+
<ANCHOR id="gtk-source-view-new-with-buffer" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-new-with-buffer">
|
807
|
+
<ANCHOR id="gtk-source-view-set-auto-indent" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-auto-indent">
|
808
|
+
<ANCHOR id="gtk-source-view-get-auto-indent" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-auto-indent">
|
809
|
+
<ANCHOR id="gtk-source-view-set-indent-on-tab" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-indent-on-tab">
|
810
|
+
<ANCHOR id="gtk-source-view-get-indent-on-tab" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-indent-on-tab">
|
811
|
+
<ANCHOR id="gtk-source-view-set-indent-width" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-indent-width">
|
812
|
+
<ANCHOR id="gtk-source-view-get-indent-width" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-indent-width">
|
813
|
+
<ANCHOR id="gtk-source-view-set-insert-spaces-instead-of-tabs" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-insert-spaces-instead-of-tabs">
|
814
|
+
<ANCHOR id="gtk-source-view-get-insert-spaces-instead-of-tabs" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-insert-spaces-instead-of-tabs">
|
815
|
+
<ANCHOR id="gtk-source-view-set-smart-home-end" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-smart-home-end">
|
816
|
+
<ANCHOR id="gtk-source-view-get-smart-home-end" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-smart-home-end">
|
817
|
+
<ANCHOR id="gtk-source-view-set-mark-attributes" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-mark-attributes">
|
818
|
+
<ANCHOR id="gtk-source-view-get-mark-attributes" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-mark-attributes">
|
819
|
+
<ANCHOR id="gtk-source-view-set-highlight-current-line" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-highlight-current-line">
|
820
|
+
<ANCHOR id="gtk-source-view-get-highlight-current-line" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-highlight-current-line">
|
821
|
+
<ANCHOR id="gtk-source-view-set-show-line-marks" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-show-line-marks">
|
822
|
+
<ANCHOR id="gtk-source-view-get-show-line-marks" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-show-line-marks">
|
823
|
+
<ANCHOR id="gtk-source-view-set-show-line-numbers" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-show-line-numbers">
|
824
|
+
<ANCHOR id="gtk-source-view-get-show-line-numbers" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-show-line-numbers">
|
825
|
+
<ANCHOR id="gtk-source-view-set-show-right-margin" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-show-right-margin">
|
826
|
+
<ANCHOR id="gtk-source-view-get-show-right-margin" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-show-right-margin">
|
827
|
+
<ANCHOR id="gtk-source-view-set-right-margin-position" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-right-margin-position">
|
828
|
+
<ANCHOR id="gtk-source-view-get-right-margin-position" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-right-margin-position">
|
829
|
+
<ANCHOR id="gtk-source-view-set-tab-width" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-tab-width">
|
830
|
+
<ANCHOR id="gtk-source-view-get-tab-width" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-tab-width">
|
831
|
+
<ANCHOR id="gtk-source-view-set-draw-spaces" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-set-draw-spaces">
|
832
|
+
<ANCHOR id="gtk-source-view-get-draw-spaces" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-draw-spaces">
|
833
|
+
<ANCHOR id="gtk-source-view-get-completion" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-completion">
|
834
|
+
<ANCHOR id="gtk-source-view-get-gutter" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-gutter">
|
835
|
+
<ANCHOR id="gtk-source-view-get-visual-column" href="gtksourceview-3.0/GtkSourceView.html#gtk-source-view-get-visual-column">
|
836
|
+
<ANCHOR id="GtkSourceView.other_details" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.other_details">
|
837
|
+
<ANCHOR id="GtkSourceView-struct" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView-struct">
|
838
|
+
<ANCHOR id="GtkSourceSmartHomeEndType" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceSmartHomeEndType">
|
839
|
+
<ANCHOR id="GtkSourceDrawSpacesFlags" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceDrawSpacesFlags">
|
840
|
+
<ANCHOR id="GtkSourceViewGutterPosition" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceViewGutterPosition">
|
841
|
+
<ANCHOR id="GtkSourceView.property-details" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.property-details">
|
842
|
+
<ANCHOR id="GtkSourceView--auto-indent" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--auto-indent">
|
843
|
+
<ANCHOR id="GtkSourceView--completion" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--completion">
|
844
|
+
<ANCHOR id="GtkSourceView--draw-spaces" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--draw-spaces">
|
845
|
+
<ANCHOR id="GtkSourceView--highlight-current-line" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--highlight-current-line">
|
846
|
+
<ANCHOR id="GtkSourceView--indent-on-tab" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--indent-on-tab">
|
847
|
+
<ANCHOR id="GtkSourceView--indent-width" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--indent-width">
|
848
|
+
<ANCHOR id="GtkSourceView--insert-spaces-instead-of-tabs" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--insert-spaces-instead-of-tabs">
|
849
|
+
<ANCHOR id="GtkSourceView--right-margin-position" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--right-margin-position">
|
850
|
+
<ANCHOR id="GtkSourceView--show-line-marks" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--show-line-marks">
|
851
|
+
<ANCHOR id="GtkSourceView--show-line-numbers" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--show-line-numbers">
|
852
|
+
<ANCHOR id="GtkSourceView--show-right-margin" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--show-right-margin">
|
853
|
+
<ANCHOR id="GtkSourceView--smart-home-end" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--smart-home-end">
|
854
|
+
<ANCHOR id="GtkSourceView--tab-width" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView--tab-width">
|
855
|
+
<ANCHOR id="GtkSourceView.signal-details" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.signal-details">
|
856
|
+
<ANCHOR id="GtkSourceView-line-mark-activated" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView-line-mark-activated">
|
857
|
+
<ANCHOR id="GtkSourceView-move-lines" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView-move-lines">
|
858
|
+
<ANCHOR id="GtkSourceView-move-words" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView-move-words">
|
859
|
+
<ANCHOR id="GtkSourceView-redo" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView-redo">
|
860
|
+
<ANCHOR id="GtkSourceView-show-completion" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView-show-completion">
|
861
|
+
<ANCHOR id="GtkSourceView-smart-home-end" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView-smart-home-end">
|
862
|
+
<ANCHOR id="GtkSourceView-undo" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView-undo">
|
863
|
+
<ANCHOR id="GtkSourceView.see-also" href="gtksourceview-3.0/GtkSourceView.html#GtkSourceView.see-also">
|
864
|
+
<ANCHOR id="lang-tutorial" href="gtksourceview-3.0/lang-tutorial.html">
|
865
|
+
<ANCHOR id="tutorial" href="gtksourceview-3.0/lang-tutorial.html#tutorial">
|
866
|
+
<ANCHOR id="lang-reference" href="gtksourceview-3.0/lang-reference.html">
|
867
|
+
<ANCHOR id="style-reference" href="gtksourceview-3.0/style-reference.html">
|
868
|
+
<ANCHOR id="annotation-glossterm-allow-none" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-allow-none">
|
869
|
+
<ANCHOR id="annotation-glossterm-array" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-array">
|
870
|
+
<ANCHOR id="annotation-glossterm-closure" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-closure">
|
871
|
+
<ANCHOR id="annotation-glossterm-element-type" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-element-type">
|
872
|
+
<ANCHOR id="annotation-glossterm-inout" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-inout">
|
873
|
+
<ANCHOR id="annotation-glossterm-nullable" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-nullable">
|
874
|
+
<ANCHOR id="annotation-glossterm-out" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-out">
|
875
|
+
<ANCHOR id="annotation-glossterm-out caller-allocates" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-out caller-allocates">
|
876
|
+
<ANCHOR id="annotation-glossterm-scope async" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-scope async">
|
877
|
+
<ANCHOR id="annotation-glossterm-scope notified" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-scope notified">
|
878
|
+
<ANCHOR id="annotation-glossterm-transfer container" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-transfer container">
|
879
|
+
<ANCHOR id="annotation-glossterm-transfer floating" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-transfer floating">
|
880
|
+
<ANCHOR id="annotation-glossterm-transfer full" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-transfer full">
|
881
|
+
<ANCHOR id="annotation-glossterm-transfer none" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-transfer none">
|
882
|
+
<ANCHOR id="annotation-glossterm-type" href="gtksourceview-3.0/annotation-glossary.html#annotation-glossterm-type">
|