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
@@ -0,0 +1,81 @@
|
|
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: Annotation Glossary</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="up" href="index.html" title="GtkSourceView 3 Reference Manual">
|
9
|
+
<link rel="prev" href="api-index-3-14.html" title="Index of new symbols in 3.14">
|
10
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
11
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
12
|
+
</head>
|
13
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
14
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
15
|
+
<td width="100%" align="left" class="shortcuts"><span id="nav_glossary"><a class="shortcut" href="#glsA">A</a>
|
16
|
+
<span class="dim">|</span>
|
17
|
+
<a class="shortcut" href="#glsC">C</a>
|
18
|
+
<span class="dim">|</span>
|
19
|
+
<a class="shortcut" href="#glsE">E</a>
|
20
|
+
<span class="dim">|</span>
|
21
|
+
<a class="shortcut" href="#glsI">I</a>
|
22
|
+
<span class="dim">|</span>
|
23
|
+
<a class="shortcut" href="#glsN">N</a>
|
24
|
+
<span class="dim">|</span>
|
25
|
+
<a class="shortcut" href="#glsO">O</a>
|
26
|
+
<span class="dim">|</span>
|
27
|
+
<a class="shortcut" href="#glsS">S</a>
|
28
|
+
<span class="dim">|</span>
|
29
|
+
<a class="shortcut" href="#glsT">T</a></span></td>
|
30
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
31
|
+
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
32
|
+
<td><a accesskey="p" href="api-index-3-14.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
33
|
+
<td><img src="right-insensitive.png" width="16" height="16" border="0"></td>
|
34
|
+
</tr></table>
|
35
|
+
<div class="glossary">
|
36
|
+
<div class="titlepage"><div><div><h1 class="title">
|
37
|
+
<a name="annotation-glossary"></a>Annotation Glossary</h1></div></div></div>
|
38
|
+
<a name="glsA"></a><h3 class="title">A</h3>
|
39
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-allow-none"></a>allow-none</span></dt>
|
40
|
+
<dd class="glossdef"><p>NULL is OK, both for passing and for returning.</p></dd>
|
41
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-array"></a>array</span></dt>
|
42
|
+
<dd class="glossdef"><p>Parameter points to an array of items.</p></dd>
|
43
|
+
<a name="glsC"></a><h3 class="title">C</h3>
|
44
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-closure"></a>closure</span></dt>
|
45
|
+
<dd class="glossdef"><p>This parameter is a 'user_data', for callbacks; many bindings can pass NULL here.</p></dd>
|
46
|
+
<a name="glsE"></a><h3 class="title">E</h3>
|
47
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-element-type"></a>element-type</span></dt>
|
48
|
+
<dd class="glossdef"><p>Generics and defining elements of containers and arrays.</p></dd>
|
49
|
+
<a name="glsI"></a><h3 class="title">I</h3>
|
50
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-inout"></a>inout</span></dt>
|
51
|
+
<dd class="glossdef"><p>Parameter for input and for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
|
52
|
+
<a name="glsN"></a><h3 class="title">N</h3>
|
53
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-nullable"></a>nullable</span></dt>
|
54
|
+
<dd class="glossdef"><p>NULL may be passed as the value in, out, in-out; or as a return value.</p></dd>
|
55
|
+
<a name="glsO"></a><h3 class="title">O</h3>
|
56
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-out"></a>out</span></dt>
|
57
|
+
<dd class="glossdef"><p>Parameter for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
|
58
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-out%20caller-allocates"></a>out caller-allocates</span></dt>
|
59
|
+
<dd class="glossdef"><p>Out parameter, where caller must allocate storage.</p></dd>
|
60
|
+
<a name="glsS"></a><h3 class="title">S</h3>
|
61
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-scope%20async"></a>scope async</span></dt>
|
62
|
+
<dd class="glossdef"><p>The callback is valid until first called.</p></dd>
|
63
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-scope%20notified"></a>scope notified</span></dt>
|
64
|
+
<dd class="glossdef"><p>The callback is valid until the GDestroyNotify argument is called.</p></dd>
|
65
|
+
<a name="glsT"></a><h3 class="title">T</h3>
|
66
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20container"></a>transfer container</span></dt>
|
67
|
+
<dd class="glossdef"><p>Free data container after the code is done.</p></dd>
|
68
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20floating"></a>transfer floating</span></dt>
|
69
|
+
<dd class="glossdef"><p>Alias for <acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>, used for objects with floating refs.</p></dd>
|
70
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20full"></a>transfer full</span></dt>
|
71
|
+
<dd class="glossdef"><p>Free data after the code is done.</p></dd>
|
72
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20none"></a>transfer none</span></dt>
|
73
|
+
<dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
|
74
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-type"></a>type</span></dt>
|
75
|
+
<dd class="glossdef"><p>Override the parsed C type with given type.</p></dd>
|
76
|
+
</div>
|
77
|
+
<div class="footer">
|
78
|
+
<hr>
|
79
|
+
Generated by GTK-Doc V1.21.1</div>
|
80
|
+
</body>
|
81
|
+
</html>
|
@@ -0,0 +1,43 @@
|
|
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: Index of new symbols in 3.0</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="up" href="index.html" title="GtkSourceView 3 Reference Manual">
|
9
|
+
<link rel="prev" href="api-index-deprecated.html" title="Index of deprecated symbols">
|
10
|
+
<link rel="next" href="api-index-3-4.html" title="Index of new symbols in 3.4">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxS">S</a></span></td>
|
17
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
18
|
+
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
19
|
+
<td><a accesskey="p" href="api-index-deprecated.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
20
|
+
<td><a accesskey="n" href="api-index-3-4.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="index">
|
23
|
+
<div class="titlepage"><div><div><h1 class="title">
|
24
|
+
<a name="api-index-3-0"></a>Index of new symbols in 3.0</h1></div></div></div>
|
25
|
+
<a name="idx"></a><a name="idxS"></a><h3 class="title">S</h3>
|
26
|
+
<dt>
|
27
|
+
<a class="link" href="GtkSourceView.html#GtkSourceView-move-words" title="The “move-words” signal">GtkSourceView::move-words</a>, object signal in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
|
28
|
+
</dt>
|
29
|
+
<dd></dd>
|
30
|
+
<dt>
|
31
|
+
<a class="link" href="GtkSourceView.html#GtkSourceView-smart-home-end" title="The “smart-home-end” signal">GtkSourceView::smart-home-end</a>, object signal in <a class="link" href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a>
|
32
|
+
</dt>
|
33
|
+
<dd></dd>
|
34
|
+
<dt>
|
35
|
+
<a class="link" href="GtkSourceGutter.html#gtk-source-gutter-insert" title="gtk_source_gutter_insert ()">gtk_source_gutter_insert</a>, function in <a class="link" href="GtkSourceGutter.html" title="GtkSourceGutter">GtkSourceGutter</a>
|
36
|
+
</dt>
|
37
|
+
<dd></dd>
|
38
|
+
</div>
|
39
|
+
<div class="footer">
|
40
|
+
<hr>
|
41
|
+
Generated by GTK-Doc V1.21.1</div>
|
42
|
+
</body>
|
43
|
+
</html>
|
@@ -0,0 +1,195 @@
|
|
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: Index of new symbols in 3.10</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="up" href="index.html" title="GtkSourceView 3 Reference Manual">
|
9
|
+
<link rel="prev" href="api-index-3-4.html" title="Index of new symbols in 3.4">
|
10
|
+
<link rel="next" href="api-index-3-12.html" title="Index of new symbols in 3.12">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxS">S</a></span></td>
|
17
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
18
|
+
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
19
|
+
<td><a accesskey="p" href="api-index-3-4.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
20
|
+
<td><a accesskey="n" href="api-index-3-12.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="index">
|
23
|
+
<div class="titlepage"><div><div><h1 class="title">
|
24
|
+
<a name="api-index-3-10"></a>Index of new symbols in 3.10</h1></div></div></div>
|
25
|
+
<a name="idx"></a><a name="idxS"></a><h3 class="title">S</h3>
|
26
|
+
<dt>
|
27
|
+
<a class="link" href="GtkSourceCompletionWords.html#GtkSourceCompletionWords--activation" title="The “activation” property">GtkSourceCompletionWords:activation</a>, object property in <a class="link" href="GtkSourceCompletionWords.html" title="GtkSourceCompletionWords">GtkSourceCompletionWords</a>
|
28
|
+
</dt>
|
29
|
+
<dd></dd>
|
30
|
+
<dt>
|
31
|
+
<a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--buffer" title="The “buffer” property">GtkSourceSearchContext:buffer</a>, object property in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
32
|
+
</dt>
|
33
|
+
<dd></dd>
|
34
|
+
<dt>
|
35
|
+
<a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--highlight" title="The “highlight” property">GtkSourceSearchContext:highlight</a>, object property in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
36
|
+
</dt>
|
37
|
+
<dd></dd>
|
38
|
+
<dt>
|
39
|
+
<a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--occurrences-count" title="The “occurrences-count” property">GtkSourceSearchContext:occurrences-count</a>, object property in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
40
|
+
</dt>
|
41
|
+
<dd></dd>
|
42
|
+
<dt>
|
43
|
+
<a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--regex-error" title="The “regex-error” property">GtkSourceSearchContext:regex-error</a>, object property in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
44
|
+
</dt>
|
45
|
+
<dd></dd>
|
46
|
+
<dt>
|
47
|
+
<a class="link" href="GtkSourceSearchContext.html#GtkSourceSearchContext--settings" title="The “settings” property">GtkSourceSearchContext:settings</a>, object property in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
48
|
+
</dt>
|
49
|
+
<dd></dd>
|
50
|
+
<dt>
|
51
|
+
<a class="link" href="GtkSourceSearchSettings.html#GtkSourceSearchSettings--at-word-boundaries" title="The “at-word-boundaries” property">GtkSourceSearchSettings:at-word-boundaries</a>, object property in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
52
|
+
</dt>
|
53
|
+
<dd></dd>
|
54
|
+
<dt>
|
55
|
+
<a class="link" href="GtkSourceSearchSettings.html#GtkSourceSearchSettings--case-sensitive" title="The “case-sensitive” property">GtkSourceSearchSettings:case-sensitive</a>, object property in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
56
|
+
</dt>
|
57
|
+
<dd></dd>
|
58
|
+
<dt>
|
59
|
+
<a class="link" href="GtkSourceSearchSettings.html#GtkSourceSearchSettings--regex-enabled" title="The “regex-enabled” property">GtkSourceSearchSettings:regex-enabled</a>, object property in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
60
|
+
</dt>
|
61
|
+
<dd></dd>
|
62
|
+
<dt>
|
63
|
+
<a class="link" href="GtkSourceSearchSettings.html#GtkSourceSearchSettings--search-text" title="The “search-text” property">GtkSourceSearchSettings:search-text</a>, object property in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
64
|
+
</dt>
|
65
|
+
<dd></dd>
|
66
|
+
<dt>
|
67
|
+
<a class="link" href="GtkSourceSearchSettings.html#GtkSourceSearchSettings--wrap-around" title="The “wrap-around” property">GtkSourceSearchSettings:wrap-around</a>, object property in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
68
|
+
</dt>
|
69
|
+
<dd></dd>
|
70
|
+
<dt>
|
71
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-backward" title="gtk_source_search_context_backward ()">gtk_source_search_context_backward</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
72
|
+
</dt>
|
73
|
+
<dd></dd>
|
74
|
+
<dt>
|
75
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-backward-async" title="gtk_source_search_context_backward_async ()">gtk_source_search_context_backward_async</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
76
|
+
</dt>
|
77
|
+
<dd></dd>
|
78
|
+
<dt>
|
79
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-backward-finish" title="gtk_source_search_context_backward_finish ()">gtk_source_search_context_backward_finish</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
80
|
+
</dt>
|
81
|
+
<dd></dd>
|
82
|
+
<dt>
|
83
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-forward" title="gtk_source_search_context_forward ()">gtk_source_search_context_forward</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
84
|
+
</dt>
|
85
|
+
<dd></dd>
|
86
|
+
<dt>
|
87
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-forward-async" title="gtk_source_search_context_forward_async ()">gtk_source_search_context_forward_async</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
88
|
+
</dt>
|
89
|
+
<dd></dd>
|
90
|
+
<dt>
|
91
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-forward-finish" title="gtk_source_search_context_forward_finish ()">gtk_source_search_context_forward_finish</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
92
|
+
</dt>
|
93
|
+
<dd></dd>
|
94
|
+
<dt>
|
95
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-buffer" title="gtk_source_search_context_get_buffer ()">gtk_source_search_context_get_buffer</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
96
|
+
</dt>
|
97
|
+
<dd></dd>
|
98
|
+
<dt>
|
99
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-highlight" title="gtk_source_search_context_get_highlight ()">gtk_source_search_context_get_highlight</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
100
|
+
</dt>
|
101
|
+
<dd></dd>
|
102
|
+
<dt>
|
103
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-occurrences-count" title="gtk_source_search_context_get_occurrences_count ()">gtk_source_search_context_get_occurrences_count</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
104
|
+
</dt>
|
105
|
+
<dd></dd>
|
106
|
+
<dt>
|
107
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-occurrence-position" title="gtk_source_search_context_get_occurrence_position ()">gtk_source_search_context_get_occurrence_position</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
108
|
+
</dt>
|
109
|
+
<dd></dd>
|
110
|
+
<dt>
|
111
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-regex-error" title="gtk_source_search_context_get_regex_error ()">gtk_source_search_context_get_regex_error</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
112
|
+
</dt>
|
113
|
+
<dd></dd>
|
114
|
+
<dt>
|
115
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-get-settings" title="gtk_source_search_context_get_settings ()">gtk_source_search_context_get_settings</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
116
|
+
</dt>
|
117
|
+
<dd></dd>
|
118
|
+
<dt>
|
119
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-new" title="gtk_source_search_context_new ()">gtk_source_search_context_new</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
120
|
+
</dt>
|
121
|
+
<dd></dd>
|
122
|
+
<dt>
|
123
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-replace" title="gtk_source_search_context_replace ()">gtk_source_search_context_replace</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
124
|
+
</dt>
|
125
|
+
<dd></dd>
|
126
|
+
<dt>
|
127
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-replace-all" title="gtk_source_search_context_replace_all ()">gtk_source_search_context_replace_all</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
128
|
+
</dt>
|
129
|
+
<dd></dd>
|
130
|
+
<dt>
|
131
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-set-highlight" title="gtk_source_search_context_set_highlight ()">gtk_source_search_context_set_highlight</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
132
|
+
</dt>
|
133
|
+
<dd></dd>
|
134
|
+
<dt>
|
135
|
+
<a class="link" href="GtkSourceSearchContext.html#gtk-source-search-context-set-settings" title="gtk_source_search_context_set_settings ()">gtk_source_search_context_set_settings</a>, function in <a class="link" href="GtkSourceSearchContext.html" title="GtkSourceSearchContext">GtkSourceSearchContext</a>
|
136
|
+
</dt>
|
137
|
+
<dd></dd>
|
138
|
+
<dt>
|
139
|
+
<a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-get-at-word-boundaries" title="gtk_source_search_settings_get_at_word_boundaries ()">gtk_source_search_settings_get_at_word_boundaries</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
140
|
+
</dt>
|
141
|
+
<dd></dd>
|
142
|
+
<dt>
|
143
|
+
<a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-get-case-sensitive" title="gtk_source_search_settings_get_case_sensitive ()">gtk_source_search_settings_get_case_sensitive</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
144
|
+
</dt>
|
145
|
+
<dd></dd>
|
146
|
+
<dt>
|
147
|
+
<a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-get-regex-enabled" title="gtk_source_search_settings_get_regex_enabled ()">gtk_source_search_settings_get_regex_enabled</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
148
|
+
</dt>
|
149
|
+
<dd></dd>
|
150
|
+
<dt>
|
151
|
+
<a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-get-search-text" title="gtk_source_search_settings_get_search_text ()">gtk_source_search_settings_get_search_text</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
152
|
+
</dt>
|
153
|
+
<dd></dd>
|
154
|
+
<dt>
|
155
|
+
<a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-get-wrap-around" title="gtk_source_search_settings_get_wrap_around ()">gtk_source_search_settings_get_wrap_around</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
156
|
+
</dt>
|
157
|
+
<dd></dd>
|
158
|
+
<dt>
|
159
|
+
<a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-new" title="gtk_source_search_settings_new ()">gtk_source_search_settings_new</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
160
|
+
</dt>
|
161
|
+
<dd></dd>
|
162
|
+
<dt>
|
163
|
+
<a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-set-at-word-boundaries" title="gtk_source_search_settings_set_at_word_boundaries ()">gtk_source_search_settings_set_at_word_boundaries</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
164
|
+
</dt>
|
165
|
+
<dd></dd>
|
166
|
+
<dt>
|
167
|
+
<a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-set-case-sensitive" title="gtk_source_search_settings_set_case_sensitive ()">gtk_source_search_settings_set_case_sensitive</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
168
|
+
</dt>
|
169
|
+
<dd></dd>
|
170
|
+
<dt>
|
171
|
+
<a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-set-regex-enabled" title="gtk_source_search_settings_set_regex_enabled ()">gtk_source_search_settings_set_regex_enabled</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
172
|
+
</dt>
|
173
|
+
<dd></dd>
|
174
|
+
<dt>
|
175
|
+
<a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-set-search-text" title="gtk_source_search_settings_set_search_text ()">gtk_source_search_settings_set_search_text</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
176
|
+
</dt>
|
177
|
+
<dd></dd>
|
178
|
+
<dt>
|
179
|
+
<a class="link" href="GtkSourceSearchSettings.html#gtk-source-search-settings-set-wrap-around" title="gtk_source_search_settings_set_wrap_around ()">gtk_source_search_settings_set_wrap_around</a>, function in <a class="link" href="GtkSourceSearchSettings.html" title="GtkSourceSearchSettings">GtkSourceSearchSettings</a>
|
180
|
+
</dt>
|
181
|
+
<dd></dd>
|
182
|
+
<dt>
|
183
|
+
<a class="link" href="gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-escape-search-text" title="gtk_source_utils_escape_search_text ()">gtk_source_utils_escape_search_text</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceUtils.html" title="GtkSourceUtils">GtkSourceUtils</a>
|
184
|
+
</dt>
|
185
|
+
<dd></dd>
|
186
|
+
<dt>
|
187
|
+
<a class="link" href="gtksourceview-3.0-GtkSourceUtils.html#gtk-source-utils-unescape-search-text" title="gtk_source_utils_unescape_search_text ()">gtk_source_utils_unescape_search_text</a>, function in <a class="link" href="gtksourceview-3.0-GtkSourceUtils.html" title="GtkSourceUtils">GtkSourceUtils</a>
|
188
|
+
</dt>
|
189
|
+
<dd></dd>
|
190
|
+
</div>
|
191
|
+
<div class="footer">
|
192
|
+
<hr>
|
193
|
+
Generated by GTK-Doc V1.21.1</div>
|
194
|
+
</body>
|
195
|
+
</html>
|
@@ -0,0 +1,39 @@
|
|
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: Index of new symbols in 3.12</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="up" href="index.html" title="GtkSourceView 3 Reference Manual">
|
9
|
+
<link rel="prev" href="api-index-3-10.html" title="Index of new symbols in 3.10">
|
10
|
+
<link rel="next" href="api-index-3-14.html" title="Index of new symbols in 3.14">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxS">S</a></span></td>
|
17
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
18
|
+
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
19
|
+
<td><a accesskey="p" href="api-index-3-10.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
20
|
+
<td><a accesskey="n" href="api-index-3-14.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="index">
|
23
|
+
<div class="titlepage"><div><div><h1 class="title">
|
24
|
+
<a name="api-index-3-12"></a>Index of new symbols in 3.12</h1></div></div></div>
|
25
|
+
<a name="idx"></a><a name="idxS"></a><h3 class="title">S</h3>
|
26
|
+
<dt>
|
27
|
+
<a class="link" href="GtkSourceBuffer.html#GtkSourceChangeCaseType" title="enum GtkSourceChangeCaseType">GtkSourceChangeCaseType</a>, enum in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
|
28
|
+
</dt>
|
29
|
+
<dd></dd>
|
30
|
+
<dt>
|
31
|
+
<a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-change-case" title="gtk_source_buffer_change_case ()">gtk_source_buffer_change_case</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
|
32
|
+
</dt>
|
33
|
+
<dd></dd>
|
34
|
+
</div>
|
35
|
+
<div class="footer">
|
36
|
+
<hr>
|
37
|
+
Generated by GTK-Doc V1.21.1</div>
|
38
|
+
</body>
|
39
|
+
</html>
|
@@ -0,0 +1,299 @@
|
|
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: Index of new symbols in 3.14</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="up" href="index.html" title="GtkSourceView 3 Reference Manual">
|
9
|
+
<link rel="prev" href="api-index-3-12.html" title="Index of new symbols in 3.12">
|
10
|
+
<link rel="next" href="annotation-glossary.html" title="Annotation Glossary">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxS">S</a></span></td>
|
17
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
18
|
+
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
19
|
+
<td><a accesskey="p" href="api-index-3-12.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
20
|
+
<td><a accesskey="n" href="annotation-glossary.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
21
|
+
</tr></table>
|
22
|
+
<div class="index">
|
23
|
+
<div class="titlepage"><div><div><h1 class="title">
|
24
|
+
<a name="api-index-3-14"></a>Index of new symbols in 3.14</h1></div></div></div>
|
25
|
+
<a name="idx"></a><a name="idxS"></a><h3 class="title">S</h3>
|
26
|
+
<dt>
|
27
|
+
<a class="link" href="GtkSourceBuffer.html#GtkSourceBuffer--implicit-trailing-newline" title="The “implicit-trailing-newline” property">GtkSourceBuffer:implicit-trailing-newline</a>, object property in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
|
28
|
+
</dt>
|
29
|
+
<dd></dd>
|
30
|
+
<dt>
|
31
|
+
<a class="link" href="GtkSourceFile.html#GtkSourceCompressionType" title="enum GtkSourceCompressionType">GtkSourceCompressionType</a>, enum in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
32
|
+
</dt>
|
33
|
+
<dd></dd>
|
34
|
+
<dt>
|
35
|
+
<a class="link" href="GtkSourceFile.html#GtkSourceFile--compression-type" title="The “compression-type” property">GtkSourceFile:compression-type</a>, object property in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
36
|
+
</dt>
|
37
|
+
<dd></dd>
|
38
|
+
<dt>
|
39
|
+
<a class="link" href="GtkSourceFile.html#GtkSourceFile--encoding" title="The “encoding” property">GtkSourceFile:encoding</a>, object property in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
40
|
+
</dt>
|
41
|
+
<dd></dd>
|
42
|
+
<dt>
|
43
|
+
<a class="link" href="GtkSourceFile.html#GtkSourceFile--location" title="The “location” property">GtkSourceFile:location</a>, object property in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
44
|
+
</dt>
|
45
|
+
<dd></dd>
|
46
|
+
<dt>
|
47
|
+
<a class="link" href="GtkSourceFile.html#GtkSourceFile--newline-type" title="The “newline-type” property">GtkSourceFile:newline-type</a>, object property in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
48
|
+
</dt>
|
49
|
+
<dd></dd>
|
50
|
+
<dt>
|
51
|
+
<a class="link" href="GtkSourceFileLoader.html#GtkSourceFileLoader--buffer" title="The “buffer” property">GtkSourceFileLoader:buffer</a>, object property in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
52
|
+
</dt>
|
53
|
+
<dd></dd>
|
54
|
+
<dt>
|
55
|
+
<a class="link" href="GtkSourceFileLoader.html#GtkSourceFileLoader--file" title="The “file” property">GtkSourceFileLoader:file</a>, object property in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
56
|
+
</dt>
|
57
|
+
<dd></dd>
|
58
|
+
<dt>
|
59
|
+
<a class="link" href="GtkSourceFileLoader.html#GtkSourceFileLoader--input-stream" title="The “input-stream” property">GtkSourceFileLoader:input-stream</a>, object property in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
60
|
+
</dt>
|
61
|
+
<dd></dd>
|
62
|
+
<dt>
|
63
|
+
<a class="link" href="GtkSourceFileLoader.html#GtkSourceFileLoader--location" title="The “location” property">GtkSourceFileLoader:location</a>, object property in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
64
|
+
</dt>
|
65
|
+
<dd></dd>
|
66
|
+
<dt>
|
67
|
+
<a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--buffer" title="The “buffer” property">GtkSourceFileSaver:buffer</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
68
|
+
</dt>
|
69
|
+
<dd></dd>
|
70
|
+
<dt>
|
71
|
+
<a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--compression-type" title="The “compression-type” property">GtkSourceFileSaver:compression-type</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
72
|
+
</dt>
|
73
|
+
<dd></dd>
|
74
|
+
<dt>
|
75
|
+
<a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--encoding" title="The “encoding” property">GtkSourceFileSaver:encoding</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
76
|
+
</dt>
|
77
|
+
<dd></dd>
|
78
|
+
<dt>
|
79
|
+
<a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--file" title="The “file” property">GtkSourceFileSaver:file</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
80
|
+
</dt>
|
81
|
+
<dd></dd>
|
82
|
+
<dt>
|
83
|
+
<a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--flags" title="The “flags” property">GtkSourceFileSaver:flags</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
84
|
+
</dt>
|
85
|
+
<dd></dd>
|
86
|
+
<dt>
|
87
|
+
<a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--location" title="The “location” property">GtkSourceFileSaver:location</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
88
|
+
</dt>
|
89
|
+
<dd></dd>
|
90
|
+
<dt>
|
91
|
+
<a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaver--newline-type" title="The “newline-type” property">GtkSourceFileSaver:newline-type</a>, object property in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
92
|
+
</dt>
|
93
|
+
<dd></dd>
|
94
|
+
<dt>
|
95
|
+
<a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaverError" title="enum GtkSourceFileSaverError">GtkSourceFileSaverError</a>, enum in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
96
|
+
</dt>
|
97
|
+
<dd></dd>
|
98
|
+
<dt>
|
99
|
+
<a class="link" href="GtkSourceFileSaver.html#GtkSourceFileSaverFlags" title="enum GtkSourceFileSaverFlags">GtkSourceFileSaverFlags</a>, enum in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
100
|
+
</dt>
|
101
|
+
<dd></dd>
|
102
|
+
<dt>
|
103
|
+
<a class="link" href="GtkSourceFile.html#GtkSourceMountOperationFactory" title="GtkSourceMountOperationFactory ()">GtkSourceMountOperationFactory</a>, user_function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
104
|
+
</dt>
|
105
|
+
<dd></dd>
|
106
|
+
<dt>
|
107
|
+
<a class="link" href="GtkSourceFile.html#GtkSourceNewlineType" title="enum GtkSourceNewlineType">GtkSourceNewlineType</a>, enum in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
108
|
+
</dt>
|
109
|
+
<dd></dd>
|
110
|
+
<dt>
|
111
|
+
<a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-get-implicit-trailing-newline" title="gtk_source_buffer_get_implicit_trailing_newline ()">gtk_source_buffer_get_implicit_trailing_newline</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
|
112
|
+
</dt>
|
113
|
+
<dd></dd>
|
114
|
+
<dt>
|
115
|
+
<a class="link" href="GtkSourceBuffer.html#gtk-source-buffer-set-implicit-trailing-newline" title="gtk_source_buffer_set_implicit_trailing_newline ()">gtk_source_buffer_set_implicit_trailing_newline</a>, function in <a class="link" href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>
|
116
|
+
</dt>
|
117
|
+
<dd></dd>
|
118
|
+
<dt>
|
119
|
+
<a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-copy" title="gtk_source_encoding_copy ()">gtk_source_encoding_copy</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
|
120
|
+
</dt>
|
121
|
+
<dd></dd>
|
122
|
+
<dt>
|
123
|
+
<a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-free" title="gtk_source_encoding_free ()">gtk_source_encoding_free</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
|
124
|
+
</dt>
|
125
|
+
<dd></dd>
|
126
|
+
<dt>
|
127
|
+
<a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-all" title="gtk_source_encoding_get_all ()">gtk_source_encoding_get_all</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
|
128
|
+
</dt>
|
129
|
+
<dd></dd>
|
130
|
+
<dt>
|
131
|
+
<a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-charset" title="gtk_source_encoding_get_charset ()">gtk_source_encoding_get_charset</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
|
132
|
+
</dt>
|
133
|
+
<dd></dd>
|
134
|
+
<dt>
|
135
|
+
<a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-current" title="gtk_source_encoding_get_current ()">gtk_source_encoding_get_current</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
|
136
|
+
</dt>
|
137
|
+
<dd></dd>
|
138
|
+
<dt>
|
139
|
+
<a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-from-charset" title="gtk_source_encoding_get_from_charset ()">gtk_source_encoding_get_from_charset</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
|
140
|
+
</dt>
|
141
|
+
<dd></dd>
|
142
|
+
<dt>
|
143
|
+
<a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-name" title="gtk_source_encoding_get_name ()">gtk_source_encoding_get_name</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
|
144
|
+
</dt>
|
145
|
+
<dd></dd>
|
146
|
+
<dt>
|
147
|
+
<a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-get-utf8" title="gtk_source_encoding_get_utf8 ()">gtk_source_encoding_get_utf8</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
|
148
|
+
</dt>
|
149
|
+
<dd></dd>
|
150
|
+
<dt>
|
151
|
+
<a class="link" href="GtkSourceEncoding.html#gtk-source-encoding-to-string" title="gtk_source_encoding_to_string ()">gtk_source_encoding_to_string</a>, function in <a class="link" href="GtkSourceEncoding.html" title="GtkSourceEncoding">GtkSourceEncoding</a>
|
152
|
+
</dt>
|
153
|
+
<dd></dd>
|
154
|
+
<dt>
|
155
|
+
<a class="link" href="GtkSourceFile.html#gtk-source-file-get-compression-type" title="gtk_source_file_get_compression_type ()">gtk_source_file_get_compression_type</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
156
|
+
</dt>
|
157
|
+
<dd></dd>
|
158
|
+
<dt>
|
159
|
+
<a class="link" href="GtkSourceFile.html#gtk-source-file-get-encoding" title="gtk_source_file_get_encoding ()">gtk_source_file_get_encoding</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
160
|
+
</dt>
|
161
|
+
<dd></dd>
|
162
|
+
<dt>
|
163
|
+
<a class="link" href="GtkSourceFile.html#gtk-source-file-get-location" title="gtk_source_file_get_location ()">gtk_source_file_get_location</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
164
|
+
</dt>
|
165
|
+
<dd></dd>
|
166
|
+
<dt>
|
167
|
+
<a class="link" href="GtkSourceFile.html#gtk-source-file-get-newline-type" title="gtk_source_file_get_newline_type ()">gtk_source_file_get_newline_type</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
168
|
+
</dt>
|
169
|
+
<dd></dd>
|
170
|
+
<dt>
|
171
|
+
<a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-buffer" title="gtk_source_file_loader_get_buffer ()">gtk_source_file_loader_get_buffer</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
172
|
+
</dt>
|
173
|
+
<dd></dd>
|
174
|
+
<dt>
|
175
|
+
<a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-compression-type" title="gtk_source_file_loader_get_compression_type ()">gtk_source_file_loader_get_compression_type</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
176
|
+
</dt>
|
177
|
+
<dd></dd>
|
178
|
+
<dt>
|
179
|
+
<a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-encoding" title="gtk_source_file_loader_get_encoding ()">gtk_source_file_loader_get_encoding</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
180
|
+
</dt>
|
181
|
+
<dd></dd>
|
182
|
+
<dt>
|
183
|
+
<a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-file" title="gtk_source_file_loader_get_file ()">gtk_source_file_loader_get_file</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
184
|
+
</dt>
|
185
|
+
<dd></dd>
|
186
|
+
<dt>
|
187
|
+
<a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-input-stream" title="gtk_source_file_loader_get_input_stream ()">gtk_source_file_loader_get_input_stream</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
188
|
+
</dt>
|
189
|
+
<dd></dd>
|
190
|
+
<dt>
|
191
|
+
<a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-location" title="gtk_source_file_loader_get_location ()">gtk_source_file_loader_get_location</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
192
|
+
</dt>
|
193
|
+
<dd></dd>
|
194
|
+
<dt>
|
195
|
+
<a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-get-newline-type" title="gtk_source_file_loader_get_newline_type ()">gtk_source_file_loader_get_newline_type</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
196
|
+
</dt>
|
197
|
+
<dd></dd>
|
198
|
+
<dt>
|
199
|
+
<a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-load-async" title="gtk_source_file_loader_load_async ()">gtk_source_file_loader_load_async</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
200
|
+
</dt>
|
201
|
+
<dd></dd>
|
202
|
+
<dt>
|
203
|
+
<a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-load-finish" title="gtk_source_file_loader_load_finish ()">gtk_source_file_loader_load_finish</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
204
|
+
</dt>
|
205
|
+
<dd></dd>
|
206
|
+
<dt>
|
207
|
+
<a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-new" title="gtk_source_file_loader_new ()">gtk_source_file_loader_new</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
208
|
+
</dt>
|
209
|
+
<dd></dd>
|
210
|
+
<dt>
|
211
|
+
<a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-new-from-stream" title="gtk_source_file_loader_new_from_stream ()">gtk_source_file_loader_new_from_stream</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
212
|
+
</dt>
|
213
|
+
<dd></dd>
|
214
|
+
<dt>
|
215
|
+
<a class="link" href="GtkSourceFileLoader.html#gtk-source-file-loader-set-candidate-encodings" title="gtk_source_file_loader_set_candidate_encodings ()">gtk_source_file_loader_set_candidate_encodings</a>, function in <a class="link" href="GtkSourceFileLoader.html" title="GtkSourceFileLoader">GtkSourceFileLoader</a>
|
216
|
+
</dt>
|
217
|
+
<dd></dd>
|
218
|
+
<dt>
|
219
|
+
<a class="link" href="GtkSourceFile.html#gtk-source-file-new" title="gtk_source_file_new ()">gtk_source_file_new</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
220
|
+
</dt>
|
221
|
+
<dd></dd>
|
222
|
+
<dt>
|
223
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-buffer" title="gtk_source_file_saver_get_buffer ()">gtk_source_file_saver_get_buffer</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
224
|
+
</dt>
|
225
|
+
<dd></dd>
|
226
|
+
<dt>
|
227
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-compression-type" title="gtk_source_file_saver_get_compression_type ()">gtk_source_file_saver_get_compression_type</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
228
|
+
</dt>
|
229
|
+
<dd></dd>
|
230
|
+
<dt>
|
231
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-encoding" title="gtk_source_file_saver_get_encoding ()">gtk_source_file_saver_get_encoding</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
232
|
+
</dt>
|
233
|
+
<dd></dd>
|
234
|
+
<dt>
|
235
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-file" title="gtk_source_file_saver_get_file ()">gtk_source_file_saver_get_file</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
236
|
+
</dt>
|
237
|
+
<dd></dd>
|
238
|
+
<dt>
|
239
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-flags" title="gtk_source_file_saver_get_flags ()">gtk_source_file_saver_get_flags</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
240
|
+
</dt>
|
241
|
+
<dd></dd>
|
242
|
+
<dt>
|
243
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-location" title="gtk_source_file_saver_get_location ()">gtk_source_file_saver_get_location</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
244
|
+
</dt>
|
245
|
+
<dd></dd>
|
246
|
+
<dt>
|
247
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-get-newline-type" title="gtk_source_file_saver_get_newline_type ()">gtk_source_file_saver_get_newline_type</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
248
|
+
</dt>
|
249
|
+
<dd></dd>
|
250
|
+
<dt>
|
251
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-new" title="gtk_source_file_saver_new ()">gtk_source_file_saver_new</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
252
|
+
</dt>
|
253
|
+
<dd></dd>
|
254
|
+
<dt>
|
255
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-new-with-target" title="gtk_source_file_saver_new_with_target ()">gtk_source_file_saver_new_with_target</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
256
|
+
</dt>
|
257
|
+
<dd></dd>
|
258
|
+
<dt>
|
259
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-save-async" title="gtk_source_file_saver_save_async ()">gtk_source_file_saver_save_async</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
260
|
+
</dt>
|
261
|
+
<dd></dd>
|
262
|
+
<dt>
|
263
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-save-finish" title="gtk_source_file_saver_save_finish ()">gtk_source_file_saver_save_finish</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
264
|
+
</dt>
|
265
|
+
<dd></dd>
|
266
|
+
<dt>
|
267
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-set-compression-type" title="gtk_source_file_saver_set_compression_type ()">gtk_source_file_saver_set_compression_type</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
268
|
+
</dt>
|
269
|
+
<dd></dd>
|
270
|
+
<dt>
|
271
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-set-encoding" title="gtk_source_file_saver_set_encoding ()">gtk_source_file_saver_set_encoding</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
272
|
+
</dt>
|
273
|
+
<dd></dd>
|
274
|
+
<dt>
|
275
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-set-flags" title="gtk_source_file_saver_set_flags ()">gtk_source_file_saver_set_flags</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
276
|
+
</dt>
|
277
|
+
<dd></dd>
|
278
|
+
<dt>
|
279
|
+
<a class="link" href="GtkSourceFileSaver.html#gtk-source-file-saver-set-newline-type" title="gtk_source_file_saver_set_newline_type ()">gtk_source_file_saver_set_newline_type</a>, function in <a class="link" href="GtkSourceFileSaver.html" title="GtkSourceFileSaver">GtkSourceFileSaver</a>
|
280
|
+
</dt>
|
281
|
+
<dd></dd>
|
282
|
+
<dt>
|
283
|
+
<a class="link" href="GtkSourceFile.html#gtk-source-file-set-location" title="gtk_source_file_set_location ()">gtk_source_file_set_location</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
284
|
+
</dt>
|
285
|
+
<dd></dd>
|
286
|
+
<dt>
|
287
|
+
<a class="link" href="GtkSourceFile.html#gtk-source-file-set-mount-operation-factory" title="gtk_source_file_set_mount_operation_factory ()">gtk_source_file_set_mount_operation_factory</a>, function in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
288
|
+
</dt>
|
289
|
+
<dd></dd>
|
290
|
+
<dt>
|
291
|
+
<a class="link" href="GtkSourceFile.html#GTK-SOURCE-NEWLINE-TYPE-DEFAULT:CAPS" title="GTK_SOURCE_NEWLINE_TYPE_DEFAULT">GTK_SOURCE_NEWLINE_TYPE_DEFAULT</a>, macro in <a class="link" href="GtkSourceFile.html" title="GtkSourceFile">GtkSourceFile</a>
|
292
|
+
</dt>
|
293
|
+
<dd></dd>
|
294
|
+
</div>
|
295
|
+
<div class="footer">
|
296
|
+
<hr>
|
297
|
+
Generated by GTK-Doc V1.21.1</div>
|
298
|
+
</body>
|
299
|
+
</html>
|