gtksourceview4 3.2.9-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/COPYING.LIB +502 -0
- data/README.md +24 -0
- data/Rakefile +61 -0
- data/dependency-check/Rakefile +43 -0
- data/gtksourceview4.gemspec +45 -0
- data/lib/gtksourceview4.rb +56 -0
- data/lib/gtksourceview4/deprecated.rb +49 -0
- data/lib/gtksourceview4/loader.rb +49 -0
- data/lib/gtksourceview4/mark-attributes.rb +29 -0
- data/test/run-test.rb +62 -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 +55 -0
- data/vendor/local/bin/libgtksourceview-4-0.dll +0 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +72 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksource-enumtypes.h +107 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksource.h +67 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceautocleanups.h +63 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcebuffer.h +279 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcecompletion.h +156 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcecompletioncontext.h +102 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcecompletioninfo.h +77 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcecompletionitem.h +92 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcecompletionproposal.h +126 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcecompletionprovider.h +166 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceencoding.h +74 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcefile.h +195 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcefileloader.h +140 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcefilesaver.h +168 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcegutter.h +93 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcegutterrenderer.h +272 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcegutterrendererpixbuf.h +91 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcegutterrenderertext.h +92 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceinit.h +40 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcelanguage.h +98 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcelanguagemanager.h +92 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcemap.h +70 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcemark.h +79 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcemarkattributes.h +112 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceprintcompositor.h +223 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceregion.h +127 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcesearchcontext.h +161 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcesearchsettings.h +100 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcespacedrawer.h +144 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcestyle.h +54 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcestylescheme.h +119 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcestyleschemechooser.h +66 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcestyleschemechooserbutton.h +64 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcestyleschemechooserwidget.h +64 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcestyleschememanager.h +100 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcetag.h +54 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourcetypes.h +73 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceundomanager.h +90 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceutils.h +41 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceversion.h +578 -0
- data/vendor/local/include/gtksourceview-4/gtksourceview/gtksourceview.h +266 -0
- data/vendor/local/lib/girepository-1.0/GtkSource-4.typelib +0 -0
- data/vendor/local/lib/libgtksourceview-4.dll.a +0 -0
- data/vendor/local/lib/libgtksourceview-4.la +41 -0
- data/vendor/local/lib/pkgconfig/gtksourceview-4.pc +12 -0
- data/vendor/local/share/gir-1.0/GtkSource-4.gir +12999 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceBuffer.html +2421 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletion.html +1087 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletionContext.html +402 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletionInfo.html +207 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletionItem.html +497 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletionProposal.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletionProvider.html +837 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceCompletionWords.html +343 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceEncoding.html +391 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceFile.html +769 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceFileLoader.html +780 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceFileSaver.html +965 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceGutter.html +438 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceGutterRenderer.html +1708 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceGutterRendererPixbuf.html +369 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceGutterRendererText.html +299 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceLanguage.html +579 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceLanguageManager.html +473 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceMap.html +254 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceMark.html +307 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceMarkAttributes.html +788 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourcePrintCompositor.html +2121 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceRegion.html +870 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceSearchContext.html +1216 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceSearchSettings.html +603 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceSpaceDrawer.html +671 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceStyle.html +433 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceStyleScheme.html +396 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceStyleSchemeChooser.html +214 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceStyleSchemeChooserButton.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceStyleSchemeChooserWidget.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceStyleSchemeManager.html +460 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceTag.html +179 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceUndoManager.html +460 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/GtkSourceView.html +2369 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/annexes.html +55 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/annotation-glossary.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-2-0.html +62 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-2-10.html +86 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-2-12.html +34 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-2-2.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-2-4.html +34 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-2-8.html +46 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-0.html +42 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-10.html +170 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-12.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-14.html +298 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-16.html +106 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-18.html +114 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-20.html +130 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-22.html +106 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-24.html +126 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-3-4.html +34 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-4-0.html +65 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-deprecated.html +30 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-index-full.html +2586 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/api-reference.html +174 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/completion.html +52 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/file-loading-and-saving.html +43 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/general.html +32 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/gtksourceview-4.0-GtkSourceUtils.html +151 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/gtksourceview-4.0-GtkSourceView-Initialization-and-Finalization.html +100 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/gtksourceview-4.0-Version-Information.html +511 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/gtksourceview-4.0.devhelp2 +819 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/gutter.html +49 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/index.html +215 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/intro.html +56 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/lang-reference.html +946 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/lang-tutorial.html +652 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/main-classes.html +37 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/misc.html +52 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/object-tree.html +98 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/porting-guide-3-to-4.html +152 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/porting-guide.html +33 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/printing.html +32 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/search-and-replace.html +37 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/style-reference.html +305 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/style.css +483 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/styling.html +49 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/syntax-highlighting-reference.html +49 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/syntax-highlighting.html +37 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/up.png +0 -0
- data/vendor/local/share/gtksourceview-4/language-specs/R.lang +2198 -0
- data/vendor/local/share/gtksourceview-4/language-specs/abnf.lang +109 -0
- data/vendor/local/share/gtksourceview-4/language-specs/actionscript.lang +267 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ada.lang +220 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ansforth94.lang +728 -0
- data/vendor/local/share/gtksourceview-4/language-specs/asp.lang +1096 -0
- data/vendor/local/share/gtksourceview-4/language-specs/automake.lang +329 -0
- data/vendor/local/share/gtksourceview-4/language-specs/awk.lang +137 -0
- data/vendor/local/share/gtksourceview-4/language-specs/bennugd.lang +266 -0
- data/vendor/local/share/gtksourceview-4/language-specs/bibtex.lang +120 -0
- data/vendor/local/share/gtksourceview-4/language-specs/bluespec.lang +187 -0
- data/vendor/local/share/gtksourceview-4/language-specs/boo.lang +256 -0
- data/vendor/local/share/gtksourceview-4/language-specs/c.lang +343 -0
- data/vendor/local/share/gtksourceview-4/language-specs/cg.lang +231 -0
- data/vendor/local/share/gtksourceview-4/language-specs/changelog.lang +91 -0
- data/vendor/local/share/gtksourceview-4/language-specs/chdr.lang +50 -0
- data/vendor/local/share/gtksourceview-4/language-specs/cmake.lang +817 -0
- data/vendor/local/share/gtksourceview-4/language-specs/cobol.lang +646 -0
- data/vendor/local/share/gtksourceview-4/language-specs/cpp.lang +119 -0
- data/vendor/local/share/gtksourceview-4/language-specs/cpphdr.lang +41 -0
- data/vendor/local/share/gtksourceview-4/language-specs/csharp.lang +285 -0
- data/vendor/local/share/gtksourceview-4/language-specs/css.lang +2411 -0
- data/vendor/local/share/gtksourceview-4/language-specs/csv.lang +73 -0
- data/vendor/local/share/gtksourceview-4/language-specs/cuda.lang +281 -0
- data/vendor/local/share/gtksourceview-4/language-specs/d.lang +317 -0
- data/vendor/local/share/gtksourceview-4/language-specs/def.lang +261 -0
- data/vendor/local/share/gtksourceview-4/language-specs/desktop.lang +297 -0
- data/vendor/local/share/gtksourceview-4/language-specs/diff.lang +84 -0
- data/vendor/local/share/gtksourceview-4/language-specs/docbook.lang +475 -0
- data/vendor/local/share/gtksourceview-4/language-specs/dosbatch.lang +166 -0
- data/vendor/local/share/gtksourceview-4/language-specs/dot.lang +139 -0
- data/vendor/local/share/gtksourceview-4/language-specs/dpatch.lang +47 -0
- data/vendor/local/share/gtksourceview-4/language-specs/dtd.lang +139 -0
- data/vendor/local/share/gtksourceview-4/language-specs/dtl.lang +297 -0
- data/vendor/local/share/gtksourceview-4/language-specs/eiffel.lang +238 -0
- data/vendor/local/share/gtksourceview-4/language-specs/erlang.lang +262 -0
- data/vendor/local/share/gtksourceview-4/language-specs/fcl.lang +113 -0
- data/vendor/local/share/gtksourceview-4/language-specs/forth.lang +234 -0
- data/vendor/local/share/gtksourceview-4/language-specs/fortran.lang +710 -0
- data/vendor/local/share/gtksourceview-4/language-specs/fsharp.lang +324 -0
- data/vendor/local/share/gtksourceview-4/language-specs/gap.lang +84 -0
- data/vendor/local/share/gtksourceview-4/language-specs/gdb-log.lang +151 -0
- data/vendor/local/share/gtksourceview-4/language-specs/genie.lang +237 -0
- data/vendor/local/share/gtksourceview-4/language-specs/glsl.lang +482 -0
- data/vendor/local/share/gtksourceview-4/language-specs/go.lang +274 -0
- data/vendor/local/share/gtksourceview-4/language-specs/groovy.lang +330 -0
- data/vendor/local/share/gtksourceview-4/language-specs/gtk-doc.lang +90 -0
- data/vendor/local/share/gtksourceview-4/language-specs/gtkrc.lang +115 -0
- data/vendor/local/share/gtksourceview-4/language-specs/haddock.lang +161 -0
- data/vendor/local/share/gtksourceview-4/language-specs/haskell-literate.lang +58 -0
- data/vendor/local/share/gtksourceview-4/language-specs/haskell.lang +227 -0
- data/vendor/local/share/gtksourceview-4/language-specs/haxe.lang +237 -0
- data/vendor/local/share/gtksourceview-4/language-specs/html.lang +286 -0
- data/vendor/local/share/gtksourceview-4/language-specs/idl-exelis.lang +619 -0
- data/vendor/local/share/gtksourceview-4/language-specs/idl.lang +153 -0
- data/vendor/local/share/gtksourceview-4/language-specs/imagej.lang +783 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ini.lang +94 -0
- data/vendor/local/share/gtksourceview-4/language-specs/j.lang +239 -0
- data/vendor/local/share/gtksourceview-4/language-specs/jade.lang +248 -0
- data/vendor/local/share/gtksourceview-4/language-specs/java.lang +188 -0
- data/vendor/local/share/gtksourceview-4/language-specs/javascript.lang +354 -0
- data/vendor/local/share/gtksourceview-4/language-specs/json.lang +124 -0
- data/vendor/local/share/gtksourceview-4/language-specs/julia.lang +376 -0
- data/vendor/local/share/gtksourceview-4/language-specs/kotlin.lang +389 -0
- data/vendor/local/share/gtksourceview-4/language-specs/language.dtd +72 -0
- data/vendor/local/share/gtksourceview-4/language-specs/language.rng +372 -0
- data/vendor/local/share/gtksourceview-4/language-specs/language2.rng +481 -0
- data/vendor/local/share/gtksourceview-4/language-specs/latex.lang +636 -0
- data/vendor/local/share/gtksourceview-4/language-specs/less.lang +793 -0
- data/vendor/local/share/gtksourceview-4/language-specs/lex.lang +208 -0
- data/vendor/local/share/gtksourceview-4/language-specs/libtool.lang +55 -0
- data/vendor/local/share/gtksourceview-4/language-specs/llvm.lang +314 -0
- data/vendor/local/share/gtksourceview-4/language-specs/logcat.lang +107 -0
- data/vendor/local/share/gtksourceview-4/language-specs/lua.lang +301 -0
- data/vendor/local/share/gtksourceview-4/language-specs/m4.lang +1374 -0
- data/vendor/local/share/gtksourceview-4/language-specs/makefile.lang +190 -0
- data/vendor/local/share/gtksourceview-4/language-specs/mallard.lang +123 -0
- data/vendor/local/share/gtksourceview-4/language-specs/markdown.lang +401 -0
- data/vendor/local/share/gtksourceview-4/language-specs/matlab.lang +148 -0
- data/vendor/local/share/gtksourceview-4/language-specs/maxima.lang +1864 -0
- data/vendor/local/share/gtksourceview-4/language-specs/mediawiki.lang +326 -0
- data/vendor/local/share/gtksourceview-4/language-specs/meson.lang +132 -0
- data/vendor/local/share/gtksourceview-4/language-specs/modelica.lang +261 -0
- data/vendor/local/share/gtksourceview-4/language-specs/mxml.lang +64 -0
- data/vendor/local/share/gtksourceview-4/language-specs/nemerle.lang +262 -0
- data/vendor/local/share/gtksourceview-4/language-specs/netrexx.lang +318 -0
- data/vendor/local/share/gtksourceview-4/language-specs/nsis.lang +87 -0
- data/vendor/local/share/gtksourceview-4/language-specs/objc.lang +119 -0
- data/vendor/local/share/gtksourceview-4/language-specs/objj.lang +127 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ocaml.lang +301 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ocl.lang +138 -0
- data/vendor/local/share/gtksourceview-4/language-specs/octave.lang +1757 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ooc.lang +264 -0
- data/vendor/local/share/gtksourceview-4/language-specs/opal.lang +342 -0
- data/vendor/local/share/gtksourceview-4/language-specs/opencl.lang +599 -0
- data/vendor/local/share/gtksourceview-4/language-specs/pascal.lang +267 -0
- data/vendor/local/share/gtksourceview-4/language-specs/perl.lang +1044 -0
- data/vendor/local/share/gtksourceview-4/language-specs/php.lang +362 -0
- data/vendor/local/share/gtksourceview-4/language-specs/pig.lang +292 -0
- data/vendor/local/share/gtksourceview-4/language-specs/pkgconfig.lang +61 -0
- data/vendor/local/share/gtksourceview-4/language-specs/po.lang +93 -0
- data/vendor/local/share/gtksourceview-4/language-specs/prolog.lang +248 -0
- data/vendor/local/share/gtksourceview-4/language-specs/protobuf.lang +134 -0
- data/vendor/local/share/gtksourceview-4/language-specs/puppet.lang +696 -0
- data/vendor/local/share/gtksourceview-4/language-specs/python.lang +475 -0
- data/vendor/local/share/gtksourceview-4/language-specs/python3.lang +198 -0
- data/vendor/local/share/gtksourceview-4/language-specs/rpmspec.lang +215 -0
- data/vendor/local/share/gtksourceview-4/language-specs/rst.lang +141 -0
- data/vendor/local/share/gtksourceview-4/language-specs/ruby.lang +748 -0
- data/vendor/local/share/gtksourceview-4/language-specs/rust.lang +334 -0
- data/vendor/local/share/gtksourceview-4/language-specs/scala.lang +383 -0
- data/vendor/local/share/gtksourceview-4/language-specs/scheme.lang +301 -0
- data/vendor/local/share/gtksourceview-4/language-specs/scilab.lang +208 -0
- data/vendor/local/share/gtksourceview-4/language-specs/scss.lang +878 -0
- data/vendor/local/share/gtksourceview-4/language-specs/sh.lang +516 -0
- data/vendor/local/share/gtksourceview-4/language-specs/sml.lang +200 -0
- data/vendor/local/share/gtksourceview-4/language-specs/sparql.lang +451 -0
- data/vendor/local/share/gtksourceview-4/language-specs/sql.lang +617 -0
- data/vendor/local/share/gtksourceview-4/language-specs/sweave.lang +66 -0
- data/vendor/local/share/gtksourceview-4/language-specs/swift.lang +440 -0
- data/vendor/local/share/gtksourceview-4/language-specs/systemverilog.lang +262 -0
- data/vendor/local/share/gtksourceview-4/language-specs/t2t.lang +149 -0
- data/vendor/local/share/gtksourceview-4/language-specs/tcl.lang +145 -0
- data/vendor/local/share/gtksourceview-4/language-specs/tera.lang +142 -0
- data/vendor/local/share/gtksourceview-4/language-specs/texinfo.lang +447 -0
- data/vendor/local/share/gtksourceview-4/language-specs/thrift.lang +266 -0
- data/vendor/local/share/gtksourceview-4/language-specs/toml.lang +282 -0
- data/vendor/local/share/gtksourceview-4/language-specs/vala.lang +411 -0
- data/vendor/local/share/gtksourceview-4/language-specs/vbnet.lang +247 -0
- data/vendor/local/share/gtksourceview-4/language-specs/verilog.lang +475 -0
- data/vendor/local/share/gtksourceview-4/language-specs/vhdl.lang +247 -0
- data/vendor/local/share/gtksourceview-4/language-specs/xml.lang +219 -0
- data/vendor/local/share/gtksourceview-4/language-specs/xslt.lang +120 -0
- data/vendor/local/share/gtksourceview-4/language-specs/yacc.lang +176 -0
- data/vendor/local/share/gtksourceview-4/language-specs/yaml.lang +213 -0
- data/vendor/local/share/gtksourceview-4/styles/classic.xml +122 -0
- data/vendor/local/share/gtksourceview-4/styles/cobalt.xml +150 -0
- data/vendor/local/share/gtksourceview-4/styles/kate.xml +171 -0
- data/vendor/local/share/gtksourceview-4/styles/oblivion.xml +133 -0
- data/vendor/local/share/gtksourceview-4/styles/solarized-dark.xml +103 -0
- data/vendor/local/share/gtksourceview-4/styles/solarized-light.xml +102 -0
- data/vendor/local/share/gtksourceview-4/styles/styles.rng +139 -0
- data/vendor/local/share/gtksourceview-4/styles/tango.xml +130 -0
- data/vendor/local/share/license/gtksourceview/AUTHORS +15 -0
- data/vendor/local/share/license/gtksourceview/COPYING +504 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/fur/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/mg/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtksourceview-4.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtksourceview-4.mo +0 -0
- metadata +437 -0
@@ -0,0 +1,100 @@
|
|
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 Initialization and Finalization: GtkSourceView 4 Reference Manual</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
|
+
<link rel="home" href="index.html" title="GtkSourceView 4 Reference Manual">
|
8
|
+
<link rel="up" href="general.html" title="General">
|
9
|
+
<link rel="prev" href="general.html" title="General">
|
10
|
+
<link rel="next" href="main-classes.html" title="Main Classes">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.28.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">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#gtksourceview-4.0-GtkSourceView-Initialization-and-Finalization.description" class="shortcut">Description</a></span>
|
19
|
+
</td>
|
20
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
21
|
+
<td><a accesskey="u" href="general.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
22
|
+
<td><a accesskey="p" href="general.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
23
|
+
<td><a accesskey="n" href="main-classes.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
24
|
+
</tr></table>
|
25
|
+
<div class="refentry">
|
26
|
+
<a name="gtksourceview-4.0-GtkSourceView-Initialization-and-Finalization"></a><div class="titlepage"></div>
|
27
|
+
<div class="refnamediv"><table width="100%"><tr>
|
28
|
+
<td valign="top">
|
29
|
+
<h2><span class="refentrytitle"><a name="gtksourceview-4.0-GtkSourceView-Initialization-and-Finalization.top_of_page"></a>GtkSourceView Initialization and Finalization</span></h2>
|
30
|
+
<p>GtkSourceView Initialization and Finalization</p>
|
31
|
+
</td>
|
32
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
33
|
+
</tr></table></div>
|
34
|
+
<div class="refsect1">
|
35
|
+
<a name="gtksourceview-4.0-GtkSourceView-Initialization-and-Finalization.functions"></a><h2>Functions</h2>
|
36
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
37
|
+
<colgroup>
|
38
|
+
<col width="150px" class="functions_return">
|
39
|
+
<col class="functions_name">
|
40
|
+
</colgroup>
|
41
|
+
<tbody>
|
42
|
+
<tr>
|
43
|
+
<td class="function_type">
|
44
|
+
<span class="returnvalue">void</span>
|
45
|
+
</td>
|
46
|
+
<td class="function_name">
|
47
|
+
<a class="link" href="gtksourceview-4.0-GtkSourceView-Initialization-and-Finalization.html#gtk-source-init" title="gtk_source_init ()">gtk_source_init</a> <span class="c_punctuation">()</span>
|
48
|
+
</td>
|
49
|
+
</tr>
|
50
|
+
<tr>
|
51
|
+
<td class="function_type">
|
52
|
+
<span class="returnvalue">void</span>
|
53
|
+
</td>
|
54
|
+
<td class="function_name">
|
55
|
+
<a class="link" href="gtksourceview-4.0-GtkSourceView-Initialization-and-Finalization.html#gtk-source-finalize" title="gtk_source_finalize ()">gtk_source_finalize</a> <span class="c_punctuation">()</span>
|
56
|
+
</td>
|
57
|
+
</tr>
|
58
|
+
</tbody>
|
59
|
+
</table></div>
|
60
|
+
</div>
|
61
|
+
<div class="refsect1">
|
62
|
+
<a name="gtksourceview-4.0-GtkSourceView-Initialization-and-Finalization.includes"></a><h2>Includes</h2>
|
63
|
+
<pre class="synopsis">#include <gtksourceview/gtksource.h>
|
64
|
+
</pre>
|
65
|
+
</div>
|
66
|
+
<div class="refsect1">
|
67
|
+
<a name="gtksourceview-4.0-GtkSourceView-Initialization-and-Finalization.description"></a><h2>Description</h2>
|
68
|
+
</div>
|
69
|
+
<div class="refsect1">
|
70
|
+
<a name="gtksourceview-4.0-GtkSourceView-Initialization-and-Finalization.functions_details"></a><h2>Functions</h2>
|
71
|
+
<div class="refsect2">
|
72
|
+
<a name="gtk-source-init"></a><h3>gtk_source_init ()</h3>
|
73
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
74
|
+
gtk_source_init (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
75
|
+
<p>Initializes the GtkSourceView library (e.g. for the internationalization).</p>
|
76
|
+
<p>This function can be called several times, but is meant to be called at the
|
77
|
+
beginning of <code class="function">main()</code>, before any other GtkSourceView function call.</p>
|
78
|
+
<p class="since">Since: <a class="link" href="api-index-4-0.html#api-index-4.0">4.0</a></p>
|
79
|
+
</div>
|
80
|
+
<hr>
|
81
|
+
<div class="refsect2">
|
82
|
+
<a name="gtk-source-finalize"></a><h3>gtk_source_finalize ()</h3>
|
83
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
84
|
+
gtk_source_finalize (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
85
|
+
<p>Free the resources allocated by GtkSourceView. For example it unrefs the
|
86
|
+
singleton objects.</p>
|
87
|
+
<p>It is not mandatory to call this function, it's just to be friendlier to
|
88
|
+
memory debugging tools. This function is meant to be called at the end of
|
89
|
+
<code class="function">main()</code>. It can be called several times.</p>
|
90
|
+
<p class="since">Since: <a class="link" href="api-index-4-0.html#api-index-4.0">4.0</a></p>
|
91
|
+
</div>
|
92
|
+
</div>
|
93
|
+
<div class="refsect1">
|
94
|
+
<a name="gtksourceview-4.0-GtkSourceView-Initialization-and-Finalization.other_details"></a><h2>Types and Values</h2>
|
95
|
+
</div>
|
96
|
+
</div>
|
97
|
+
<div class="footer">
|
98
|
+
<hr>Generated by GTK-Doc V1.28.1</div>
|
99
|
+
</body>
|
100
|
+
</html>
|
data/vendor/local/share/gtk-doc/html/gtksourceview-4.0/gtksourceview-4.0-Version-Information.html
ADDED
@@ -0,0 +1,511 @@
|
|
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>Version Information: GtkSourceView 4 Reference Manual</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
7
|
+
<link rel="home" href="index.html" title="GtkSourceView 4 Reference Manual">
|
8
|
+
<link rel="up" href="misc.html" title="Misc">
|
9
|
+
<link rel="prev" href="gtksourceview-4.0-GtkSourceUtils.html" title="GtkSourceUtils">
|
10
|
+
<link rel="next" href="syntax-highlighting-reference.html" title="Part III. Syntax highlighting reference">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.28.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">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#gtksourceview-4.0-Version-Information.description" class="shortcut">Description</a></span>
|
19
|
+
</td>
|
20
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
21
|
+
<td><a accesskey="u" href="misc.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
22
|
+
<td><a accesskey="p" href="gtksourceview-4.0-GtkSourceUtils.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
23
|
+
<td><a accesskey="n" href="syntax-highlighting-reference.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
24
|
+
</tr></table>
|
25
|
+
<div class="refentry">
|
26
|
+
<a name="gtksourceview-4.0-Version-Information"></a><div class="titlepage"></div>
|
27
|
+
<div class="refnamediv"><table width="100%"><tr>
|
28
|
+
<td valign="top">
|
29
|
+
<h2><span class="refentrytitle"><a name="gtksourceview-4.0-Version-Information.top_of_page"></a>Version Information</span></h2>
|
30
|
+
<p>Version Information — Macros and functions to check the GtkSourceView version</p>
|
31
|
+
</td>
|
32
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
33
|
+
</tr></table></div>
|
34
|
+
<div class="refsect1">
|
35
|
+
<a name="gtksourceview-4.0-Version-Information.functions"></a><h2>Functions</h2>
|
36
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
37
|
+
<colgroup>
|
38
|
+
<col width="150px" class="functions_return">
|
39
|
+
<col class="functions_name">
|
40
|
+
</colgroup>
|
41
|
+
<tbody>
|
42
|
+
<tr>
|
43
|
+
<td class="function_type">
|
44
|
+
<a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
45
|
+
</td>
|
46
|
+
<td class="function_name">
|
47
|
+
<a class="link" href="gtksourceview-4.0-Version-Information.html#gtk-source-get-major-version" title="gtk_source_get_major_version ()">gtk_source_get_major_version</a> <span class="c_punctuation">()</span>
|
48
|
+
</td>
|
49
|
+
</tr>
|
50
|
+
<tr>
|
51
|
+
<td class="function_type">
|
52
|
+
<a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
53
|
+
</td>
|
54
|
+
<td class="function_name">
|
55
|
+
<a class="link" href="gtksourceview-4.0-Version-Information.html#gtk-source-get-minor-version" title="gtk_source_get_minor_version ()">gtk_source_get_minor_version</a> <span class="c_punctuation">()</span>
|
56
|
+
</td>
|
57
|
+
</tr>
|
58
|
+
<tr>
|
59
|
+
<td class="function_type">
|
60
|
+
<a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
61
|
+
</td>
|
62
|
+
<td class="function_name">
|
63
|
+
<a class="link" href="gtksourceview-4.0-Version-Information.html#gtk-source-get-micro-version" title="gtk_source_get_micro_version ()">gtk_source_get_micro_version</a> <span class="c_punctuation">()</span>
|
64
|
+
</td>
|
65
|
+
</tr>
|
66
|
+
<tr>
|
67
|
+
<td class="function_type">
|
68
|
+
<a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
69
|
+
</td>
|
70
|
+
<td class="function_name">
|
71
|
+
<a class="link" href="gtksourceview-4.0-Version-Information.html#gtk-source-check-version" title="gtk_source_check_version ()">gtk_source_check_version</a> <span class="c_punctuation">()</span>
|
72
|
+
</td>
|
73
|
+
</tr>
|
74
|
+
<tr>
|
75
|
+
<td class="define_keyword">#define</td>
|
76
|
+
<td class="function_name">
|
77
|
+
<a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-CHECK-VERSION:CAPS" title="GTK_SOURCE_CHECK_VERSION()">GTK_SOURCE_CHECK_VERSION</a><span class="c_punctuation">()</span>
|
78
|
+
</td>
|
79
|
+
</tr>
|
80
|
+
</tbody>
|
81
|
+
</table></div>
|
82
|
+
</div>
|
83
|
+
<div class="refsect1">
|
84
|
+
<a name="gtksourceview-4.0-Version-Information.other"></a><h2>Types and Values</h2>
|
85
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
86
|
+
<colgroup>
|
87
|
+
<col width="150px" class="name">
|
88
|
+
<col class="description">
|
89
|
+
</colgroup>
|
90
|
+
<tbody>
|
91
|
+
<tr>
|
92
|
+
<td class="define_keyword">#define</td>
|
93
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-MAJOR-VERSION:CAPS" title="GTK_SOURCE_MAJOR_VERSION">GTK_SOURCE_MAJOR_VERSION</a></td>
|
94
|
+
</tr>
|
95
|
+
<tr>
|
96
|
+
<td class="define_keyword">#define</td>
|
97
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-MINOR-VERSION:CAPS" title="GTK_SOURCE_MINOR_VERSION">GTK_SOURCE_MINOR_VERSION</a></td>
|
98
|
+
</tr>
|
99
|
+
<tr>
|
100
|
+
<td class="define_keyword">#define</td>
|
101
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-MICRO-VERSION:CAPS" title="GTK_SOURCE_MICRO_VERSION">GTK_SOURCE_MICRO_VERSION</a></td>
|
102
|
+
</tr>
|
103
|
+
<tr>
|
104
|
+
<td class="define_keyword">#define</td>
|
105
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-0:CAPS" title="GTK_SOURCE_VERSION_3_0">GTK_SOURCE_VERSION_3_0</a></td>
|
106
|
+
</tr>
|
107
|
+
<tr>
|
108
|
+
<td class="define_keyword">#define</td>
|
109
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-2:CAPS" title="GTK_SOURCE_VERSION_3_2">GTK_SOURCE_VERSION_3_2</a></td>
|
110
|
+
</tr>
|
111
|
+
<tr>
|
112
|
+
<td class="define_keyword">#define</td>
|
113
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-4:CAPS" title="GTK_SOURCE_VERSION_3_4">GTK_SOURCE_VERSION_3_4</a></td>
|
114
|
+
</tr>
|
115
|
+
<tr>
|
116
|
+
<td class="define_keyword">#define</td>
|
117
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-6:CAPS" title="GTK_SOURCE_VERSION_3_6">GTK_SOURCE_VERSION_3_6</a></td>
|
118
|
+
</tr>
|
119
|
+
<tr>
|
120
|
+
<td class="define_keyword">#define</td>
|
121
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-8:CAPS" title="GTK_SOURCE_VERSION_3_8">GTK_SOURCE_VERSION_3_8</a></td>
|
122
|
+
</tr>
|
123
|
+
<tr>
|
124
|
+
<td class="define_keyword">#define</td>
|
125
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-10:CAPS" title="GTK_SOURCE_VERSION_3_10">GTK_SOURCE_VERSION_3_10</a></td>
|
126
|
+
</tr>
|
127
|
+
<tr>
|
128
|
+
<td class="define_keyword">#define</td>
|
129
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-12:CAPS" title="GTK_SOURCE_VERSION_3_12">GTK_SOURCE_VERSION_3_12</a></td>
|
130
|
+
</tr>
|
131
|
+
<tr>
|
132
|
+
<td class="define_keyword">#define</td>
|
133
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-14:CAPS" title="GTK_SOURCE_VERSION_3_14">GTK_SOURCE_VERSION_3_14</a></td>
|
134
|
+
</tr>
|
135
|
+
<tr>
|
136
|
+
<td class="define_keyword">#define</td>
|
137
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-16:CAPS" title="GTK_SOURCE_VERSION_3_16">GTK_SOURCE_VERSION_3_16</a></td>
|
138
|
+
</tr>
|
139
|
+
<tr>
|
140
|
+
<td class="define_keyword">#define</td>
|
141
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-18:CAPS" title="GTK_SOURCE_VERSION_3_18">GTK_SOURCE_VERSION_3_18</a></td>
|
142
|
+
</tr>
|
143
|
+
<tr>
|
144
|
+
<td class="define_keyword">#define</td>
|
145
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-20:CAPS" title="GTK_SOURCE_VERSION_3_20">GTK_SOURCE_VERSION_3_20</a></td>
|
146
|
+
</tr>
|
147
|
+
<tr>
|
148
|
+
<td class="define_keyword">#define</td>
|
149
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-22:CAPS" title="GTK_SOURCE_VERSION_3_22">GTK_SOURCE_VERSION_3_22</a></td>
|
150
|
+
</tr>
|
151
|
+
<tr>
|
152
|
+
<td class="define_keyword">#define</td>
|
153
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-24:CAPS" title="GTK_SOURCE_VERSION_3_24">GTK_SOURCE_VERSION_3_24</a></td>
|
154
|
+
</tr>
|
155
|
+
<tr>
|
156
|
+
<td class="define_keyword">#define</td>
|
157
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-4-0:CAPS" title="GTK_SOURCE_VERSION_4_0">GTK_SOURCE_VERSION_4_0</a></td>
|
158
|
+
</tr>
|
159
|
+
<tr>
|
160
|
+
<td class="define_keyword">#define</td>
|
161
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-MIN-REQUIRED:CAPS" title="GTK_SOURCE_VERSION_MIN_REQUIRED">GTK_SOURCE_VERSION_MIN_REQUIRED</a></td>
|
162
|
+
</tr>
|
163
|
+
<tr>
|
164
|
+
<td class="define_keyword">#define</td>
|
165
|
+
<td class="function_name"><a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-MAX-ALLOWED:CAPS" title="GTK_SOURCE_VERSION_MAX_ALLOWED">GTK_SOURCE_VERSION_MAX_ALLOWED</a></td>
|
166
|
+
</tr>
|
167
|
+
</tbody>
|
168
|
+
</table></div>
|
169
|
+
</div>
|
170
|
+
<div class="refsect1">
|
171
|
+
<a name="gtksourceview-4.0-Version-Information.includes"></a><h2>Includes</h2>
|
172
|
+
<pre class="synopsis">#include <gtksourceview/gtksource.h>
|
173
|
+
</pre>
|
174
|
+
</div>
|
175
|
+
<div class="refsect1">
|
176
|
+
<a name="gtksourceview-4.0-Version-Information.description"></a><h2>Description</h2>
|
177
|
+
</div>
|
178
|
+
<div class="refsect1">
|
179
|
+
<a name="gtksourceview-4.0-Version-Information.functions_details"></a><h2>Functions</h2>
|
180
|
+
<div class="refsect2">
|
181
|
+
<a name="gtk-source-get-major-version"></a><h3>gtk_source_get_major_version ()</h3>
|
182
|
+
<pre class="programlisting"><a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
183
|
+
gtk_source_get_major_version (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
184
|
+
<p>Returns the major version number of the GtkSourceView library.
|
185
|
+
(e.g. in GtkSourceView version 3.20.0 this is 3.)</p>
|
186
|
+
<p>This function is in the library, so it represents the GtkSourceView library
|
187
|
+
your code is running against. Contrast with the <a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-MAJOR-VERSION:CAPS" title="GTK_SOURCE_MAJOR_VERSION"><span class="type">GTK_SOURCE_MAJOR_VERSION</span></a>
|
188
|
+
macro, which represents the major version of the GtkSourceView headers you
|
189
|
+
have included when compiling your code.</p>
|
190
|
+
<div class="refsect3">
|
191
|
+
<a name="gtk-source-get-major-version.returns"></a><h4>Returns</h4>
|
192
|
+
<p> the major version number of the GtkSourceView library</p>
|
193
|
+
</div>
|
194
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
195
|
+
</div>
|
196
|
+
<hr>
|
197
|
+
<div class="refsect2">
|
198
|
+
<a name="gtk-source-get-minor-version"></a><h3>gtk_source_get_minor_version ()</h3>
|
199
|
+
<pre class="programlisting"><a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
200
|
+
gtk_source_get_minor_version (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
201
|
+
<p>Returns the minor version number of the GtkSourceView library.
|
202
|
+
(e.g. in GtkSourceView version 3.20.0 this is 20.)</p>
|
203
|
+
<p>This function is in the library, so it represents the GtkSourceView library
|
204
|
+
your code is running against. Contrast with the <a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-MINOR-VERSION:CAPS" title="GTK_SOURCE_MINOR_VERSION"><span class="type">GTK_SOURCE_MINOR_VERSION</span></a>
|
205
|
+
macro, which represents the minor version of the GtkSourceView headers you
|
206
|
+
have included when compiling your code.</p>
|
207
|
+
<div class="refsect3">
|
208
|
+
<a name="gtk-source-get-minor-version.returns"></a><h4>Returns</h4>
|
209
|
+
<p> the minor version number of the GtkSourceView library</p>
|
210
|
+
</div>
|
211
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
212
|
+
</div>
|
213
|
+
<hr>
|
214
|
+
<div class="refsect2">
|
215
|
+
<a name="gtk-source-get-micro-version"></a><h3>gtk_source_get_micro_version ()</h3>
|
216
|
+
<pre class="programlisting"><a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
217
|
+
gtk_source_get_micro_version (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
218
|
+
<p>Returns the micro version number of the GtkSourceView library.
|
219
|
+
(e.g. in GtkSourceView version 3.20.0 this is 0.)</p>
|
220
|
+
<p>This function is in the library, so it represents the GtkSourceView library
|
221
|
+
your code is running against. Contrast with the <a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-MICRO-VERSION:CAPS" title="GTK_SOURCE_MICRO_VERSION"><span class="type">GTK_SOURCE_MICRO_VERSION</span></a>
|
222
|
+
macro, which represents the micro version of the GtkSourceView headers you
|
223
|
+
have included when compiling your code.</p>
|
224
|
+
<div class="refsect3">
|
225
|
+
<a name="gtk-source-get-micro-version.returns"></a><h4>Returns</h4>
|
226
|
+
<p> the micro version number of the GtkSourceView library</p>
|
227
|
+
</div>
|
228
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
229
|
+
</div>
|
230
|
+
<hr>
|
231
|
+
<div class="refsect2">
|
232
|
+
<a name="gtk-source-check-version"></a><h3>gtk_source_check_version ()</h3>
|
233
|
+
<pre class="programlisting"><a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
234
|
+
gtk_source_check_version (<em class="parameter"><code><a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> major</code></em>,
|
235
|
+
<em class="parameter"><code><a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> minor</code></em>,
|
236
|
+
<em class="parameter"><code><a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> micro</code></em>);</pre>
|
237
|
+
<p>Like GTK_SOURCE_CHECK_VERSION, but the check for gtk_source_check_version is
|
238
|
+
at runtime instead of compile time. This is useful for compiling
|
239
|
+
against older versions of GtkSourceView, but using features from newer
|
240
|
+
versions.</p>
|
241
|
+
<div class="refsect3">
|
242
|
+
<a name="gtk-source-check-version.parameters"></a><h4>Parameters</h4>
|
243
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
244
|
+
<colgroup>
|
245
|
+
<col width="150px" class="parameters_name">
|
246
|
+
<col class="parameters_description">
|
247
|
+
<col width="200px" class="parameters_annotations">
|
248
|
+
</colgroup>
|
249
|
+
<tbody>
|
250
|
+
<tr>
|
251
|
+
<td class="parameter_name"><p>major</p></td>
|
252
|
+
<td class="parameter_description"><p>the major version to check</p></td>
|
253
|
+
<td class="parameter_annotations"> </td>
|
254
|
+
</tr>
|
255
|
+
<tr>
|
256
|
+
<td class="parameter_name"><p>minor</p></td>
|
257
|
+
<td class="parameter_description"><p>the minor version to check</p></td>
|
258
|
+
<td class="parameter_annotations"> </td>
|
259
|
+
</tr>
|
260
|
+
<tr>
|
261
|
+
<td class="parameter_name"><p>micro</p></td>
|
262
|
+
<td class="parameter_description"><p>the micro version to check</p></td>
|
263
|
+
<td class="parameter_annotations"> </td>
|
264
|
+
</tr>
|
265
|
+
</tbody>
|
266
|
+
</table></div>
|
267
|
+
</div>
|
268
|
+
<div class="refsect3">
|
269
|
+
<a name="gtk-source-check-version.returns"></a><h4>Returns</h4>
|
270
|
+
<p> <a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the version of the GtkSourceView currently loaded
|
271
|
+
is the same as or newer than the passed-in version.</p>
|
272
|
+
</div>
|
273
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
274
|
+
</div>
|
275
|
+
<hr>
|
276
|
+
<div class="refsect2">
|
277
|
+
<a name="GTK-SOURCE-CHECK-VERSION:CAPS"></a><h3>GTK_SOURCE_CHECK_VERSION()</h3>
|
278
|
+
<pre class="programlisting">#define GTK_SOURCE_CHECK_VERSION(major, minor, micro)</pre>
|
279
|
+
<p>Macro to test the version of GtkSourceView being compiled against.</p>
|
280
|
+
<div class="refsect3">
|
281
|
+
<a name="GTK-SOURCE-CHECK-VERSION.parameters"></a><h4>Parameters</h4>
|
282
|
+
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
283
|
+
<colgroup>
|
284
|
+
<col width="150px" class="parameters_name">
|
285
|
+
<col class="parameters_description">
|
286
|
+
<col width="200px" class="parameters_annotations">
|
287
|
+
</colgroup>
|
288
|
+
<tbody>
|
289
|
+
<tr>
|
290
|
+
<td class="parameter_name"><p>major</p></td>
|
291
|
+
<td class="parameter_description"><p>major version (e.g. 3 for version 3.20.0)</p></td>
|
292
|
+
<td class="parameter_annotations"> </td>
|
293
|
+
</tr>
|
294
|
+
<tr>
|
295
|
+
<td class="parameter_name"><p>minor</p></td>
|
296
|
+
<td class="parameter_description"><p>minor version (e.g. 20 for version 3.20.0)</p></td>
|
297
|
+
<td class="parameter_annotations"> </td>
|
298
|
+
</tr>
|
299
|
+
<tr>
|
300
|
+
<td class="parameter_name"><p>micro</p></td>
|
301
|
+
<td class="parameter_description"><p>micro version (e.g. 0 for version 3.20.0)</p></td>
|
302
|
+
<td class="parameter_annotations"> </td>
|
303
|
+
</tr>
|
304
|
+
</tbody>
|
305
|
+
</table></div>
|
306
|
+
</div>
|
307
|
+
<div class="refsect3">
|
308
|
+
<a name="GTK-SOURCE-CHECK-VERSION.returns"></a><h4>Returns</h4>
|
309
|
+
<p> <a href="/home/seb/jhbuild/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the version of the GtkSourceView header files
|
310
|
+
is the same as or newer than the passed-in version.</p>
|
311
|
+
</div>
|
312
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
313
|
+
</div>
|
314
|
+
</div>
|
315
|
+
<div class="refsect1">
|
316
|
+
<a name="gtksourceview-4.0-Version-Information.other_details"></a><h2>Types and Values</h2>
|
317
|
+
<div class="refsect2">
|
318
|
+
<a name="GTK-SOURCE-MAJOR-VERSION:CAPS"></a><h3>GTK_SOURCE_MAJOR_VERSION</h3>
|
319
|
+
<pre class="programlisting">#define GTK_SOURCE_MAJOR_VERSION (4)
|
320
|
+
</pre>
|
321
|
+
<p>Like <a class="link" href="gtksourceview-4.0-Version-Information.html#gtk-source-get-major-version" title="gtk_source_get_major_version ()"><code class="function">gtk_source_get_major_version()</code></a>, but from the headers used at
|
322
|
+
application compile time, rather than from the library linked
|
323
|
+
against at application run time.</p>
|
324
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
325
|
+
</div>
|
326
|
+
<hr>
|
327
|
+
<div class="refsect2">
|
328
|
+
<a name="GTK-SOURCE-MINOR-VERSION:CAPS"></a><h3>GTK_SOURCE_MINOR_VERSION</h3>
|
329
|
+
<pre class="programlisting">#define GTK_SOURCE_MINOR_VERSION (0)
|
330
|
+
</pre>
|
331
|
+
<p>Like <a class="link" href="gtksourceview-4.0-Version-Information.html#gtk-source-get-minor-version" title="gtk_source_get_minor_version ()"><code class="function">gtk_source_get_minor_version()</code></a>, but from the headers used at
|
332
|
+
application compile time, rather than from the library linked
|
333
|
+
against at application run time.</p>
|
334
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
335
|
+
</div>
|
336
|
+
<hr>
|
337
|
+
<div class="refsect2">
|
338
|
+
<a name="GTK-SOURCE-MICRO-VERSION:CAPS"></a><h3>GTK_SOURCE_MICRO_VERSION</h3>
|
339
|
+
<pre class="programlisting">#define GTK_SOURCE_MICRO_VERSION (2)
|
340
|
+
</pre>
|
341
|
+
<p>Like <a class="link" href="gtksourceview-4.0-Version-Information.html#gtk-source-get-micro-version" title="gtk_source_get_micro_version ()"><code class="function">gtk_source_get_micro_version()</code></a>, but from the headers used at
|
342
|
+
application compile time, rather than from the library linked
|
343
|
+
against at application run time.</p>
|
344
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
345
|
+
</div>
|
346
|
+
<hr>
|
347
|
+
<div class="refsect2">
|
348
|
+
<a name="GTK-SOURCE-VERSION-3-0:CAPS"></a><h3>GTK_SOURCE_VERSION_3_0</h3>
|
349
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_0 (G_ENCODE_VERSION (3, 0))
|
350
|
+
</pre>
|
351
|
+
<p>A macro that evaluates to the 3.0 version of GtkSourceView,
|
352
|
+
in a format that can be used by the C pre-processor.</p>
|
353
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
354
|
+
</div>
|
355
|
+
<hr>
|
356
|
+
<div class="refsect2">
|
357
|
+
<a name="GTK-SOURCE-VERSION-3-2:CAPS"></a><h3>GTK_SOURCE_VERSION_3_2</h3>
|
358
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_2 (G_ENCODE_VERSION (3, 2))
|
359
|
+
</pre>
|
360
|
+
<p>A macro that evaluates to the 3.2 version of GtkSourceView,
|
361
|
+
in a format that can be used by the C pre-processor.</p>
|
362
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
363
|
+
</div>
|
364
|
+
<hr>
|
365
|
+
<div class="refsect2">
|
366
|
+
<a name="GTK-SOURCE-VERSION-3-4:CAPS"></a><h3>GTK_SOURCE_VERSION_3_4</h3>
|
367
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_4 (G_ENCODE_VERSION (3, 4))
|
368
|
+
</pre>
|
369
|
+
<p>A macro that evaluates to the 3.4 version of GtkSourceView,
|
370
|
+
in a format that can be used by the C pre-processor.</p>
|
371
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
372
|
+
</div>
|
373
|
+
<hr>
|
374
|
+
<div class="refsect2">
|
375
|
+
<a name="GTK-SOURCE-VERSION-3-6:CAPS"></a><h3>GTK_SOURCE_VERSION_3_6</h3>
|
376
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_6 (G_ENCODE_VERSION (3, 6))
|
377
|
+
</pre>
|
378
|
+
<p>A macro that evaluates to the 3.6 version of GtkSourceView,
|
379
|
+
in a format that can be used by the C pre-processor.</p>
|
380
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
381
|
+
</div>
|
382
|
+
<hr>
|
383
|
+
<div class="refsect2">
|
384
|
+
<a name="GTK-SOURCE-VERSION-3-8:CAPS"></a><h3>GTK_SOURCE_VERSION_3_8</h3>
|
385
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_8 (G_ENCODE_VERSION (3, 8))
|
386
|
+
</pre>
|
387
|
+
<p>A macro that evaluates to the 3.8 version of GtkSourceView,
|
388
|
+
in a format that can be used by the C pre-processor.</p>
|
389
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
390
|
+
</div>
|
391
|
+
<hr>
|
392
|
+
<div class="refsect2">
|
393
|
+
<a name="GTK-SOURCE-VERSION-3-10:CAPS"></a><h3>GTK_SOURCE_VERSION_3_10</h3>
|
394
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_10 (G_ENCODE_VERSION (3, 10))
|
395
|
+
</pre>
|
396
|
+
<p>A macro that evaluates to the 3.10 version of GtkSourceView,
|
397
|
+
in a format that can be used by the C pre-processor.</p>
|
398
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
399
|
+
</div>
|
400
|
+
<hr>
|
401
|
+
<div class="refsect2">
|
402
|
+
<a name="GTK-SOURCE-VERSION-3-12:CAPS"></a><h3>GTK_SOURCE_VERSION_3_12</h3>
|
403
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_12 (G_ENCODE_VERSION (3, 12))
|
404
|
+
</pre>
|
405
|
+
<p>A macro that evaluates to the 3.12 version of GtkSourceView,
|
406
|
+
in a format that can be used by the C pre-processor.</p>
|
407
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
408
|
+
</div>
|
409
|
+
<hr>
|
410
|
+
<div class="refsect2">
|
411
|
+
<a name="GTK-SOURCE-VERSION-3-14:CAPS"></a><h3>GTK_SOURCE_VERSION_3_14</h3>
|
412
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_14 (G_ENCODE_VERSION (3, 14))
|
413
|
+
</pre>
|
414
|
+
<p>A macro that evaluates to the 3.14 version of GtkSourceView,
|
415
|
+
in a format that can be used by the C pre-processor.</p>
|
416
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
417
|
+
</div>
|
418
|
+
<hr>
|
419
|
+
<div class="refsect2">
|
420
|
+
<a name="GTK-SOURCE-VERSION-3-16:CAPS"></a><h3>GTK_SOURCE_VERSION_3_16</h3>
|
421
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_16 (G_ENCODE_VERSION (3, 16))
|
422
|
+
</pre>
|
423
|
+
<p>A macro that evaluates to the 3.16 version of GtkSourceView,
|
424
|
+
in a format that can be used by the C pre-processor.</p>
|
425
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
426
|
+
</div>
|
427
|
+
<hr>
|
428
|
+
<div class="refsect2">
|
429
|
+
<a name="GTK-SOURCE-VERSION-3-18:CAPS"></a><h3>GTK_SOURCE_VERSION_3_18</h3>
|
430
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_18 (G_ENCODE_VERSION (3, 18))
|
431
|
+
</pre>
|
432
|
+
<p>A macro that evaluates to the 3.18 version of GtkSourceView,
|
433
|
+
in a format that can be used by the C pre-processor.</p>
|
434
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
435
|
+
</div>
|
436
|
+
<hr>
|
437
|
+
<div class="refsect2">
|
438
|
+
<a name="GTK-SOURCE-VERSION-3-20:CAPS"></a><h3>GTK_SOURCE_VERSION_3_20</h3>
|
439
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_20 (G_ENCODE_VERSION (3, 20))
|
440
|
+
</pre>
|
441
|
+
<p>A macro that evaluates to the 3.20 version of GtkSourceView,
|
442
|
+
in a format that can be used by the C pre-processor.</p>
|
443
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
444
|
+
</div>
|
445
|
+
<hr>
|
446
|
+
<div class="refsect2">
|
447
|
+
<a name="GTK-SOURCE-VERSION-3-22:CAPS"></a><h3>GTK_SOURCE_VERSION_3_22</h3>
|
448
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_22 (G_ENCODE_VERSION (3, 22))
|
449
|
+
</pre>
|
450
|
+
<p>A macro that evaluates to the 3.22 version of GtkSourceView,
|
451
|
+
in a format that can be used by the C pre-processor.</p>
|
452
|
+
<p class="since">Since: <a class="link" href="api-index-3-22.html#api-index-3.22">3.22</a></p>
|
453
|
+
</div>
|
454
|
+
<hr>
|
455
|
+
<div class="refsect2">
|
456
|
+
<a name="GTK-SOURCE-VERSION-3-24:CAPS"></a><h3>GTK_SOURCE_VERSION_3_24</h3>
|
457
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_3_24 (G_ENCODE_VERSION (3, 24))
|
458
|
+
</pre>
|
459
|
+
<p>A macro that evaluates to the 3.24 version of GtkSourceView,
|
460
|
+
in a format that can be used by the C pre-processor.</p>
|
461
|
+
<p class="since">Since: <a class="link" href="api-index-3-24.html#api-index-3.24">3.24</a></p>
|
462
|
+
</div>
|
463
|
+
<hr>
|
464
|
+
<div class="refsect2">
|
465
|
+
<a name="GTK-SOURCE-VERSION-4-0:CAPS"></a><h3>GTK_SOURCE_VERSION_4_0</h3>
|
466
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_4_0 (G_ENCODE_VERSION (4, 0))
|
467
|
+
</pre>
|
468
|
+
<p>A macro that evaluates to the 4.0 version of GtkSourceView,
|
469
|
+
in a format that can be used by the C pre-processor.</p>
|
470
|
+
<p class="since">Since: <a class="link" href="api-index-4-0.html#api-index-4.0">4.0</a></p>
|
471
|
+
</div>
|
472
|
+
<hr>
|
473
|
+
<div class="refsect2">
|
474
|
+
<a name="GTK-SOURCE-VERSION-MIN-REQUIRED:CAPS"></a><h3>GTK_SOURCE_VERSION_MIN_REQUIRED</h3>
|
475
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_MIN_REQUIRED (GTK_SOURCE_VERSION_CUR_STABLE)
|
476
|
+
</pre>
|
477
|
+
<p>A macro that should be defined by the user prior to including
|
478
|
+
the gtksource.h header.
|
479
|
+
The definition should be one of the predefined version
|
480
|
+
macros: <a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-0:CAPS" title="GTK_SOURCE_VERSION_3_0"><code class="literal">GTK_SOURCE_VERSION_3_0</code></a>, <a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-2:CAPS" title="GTK_SOURCE_VERSION_3_2"><code class="literal">GTK_SOURCE_VERSION_3_2</code></a>, ...</p>
|
481
|
+
<p>This macro defines the lower bound for the GtkSourceView API to use.</p>
|
482
|
+
<p>If a function has been deprecated in a newer version of GtkSourceView,
|
483
|
+
defining this symbol hides the compiler warnings for those functions
|
484
|
+
without disabling warnings for the other deprecated functions.</p>
|
485
|
+
<div class="warning">
|
486
|
+
Warning: if you define this macro, do not forget to update it! Especially
|
487
|
+
when writing new code. Otherwise you can miss the new deprecations.
|
488
|
+
</div>
|
489
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
490
|
+
</div>
|
491
|
+
<hr>
|
492
|
+
<div class="refsect2">
|
493
|
+
<a name="GTK-SOURCE-VERSION-MAX-ALLOWED:CAPS"></a><h3>GTK_SOURCE_VERSION_MAX_ALLOWED</h3>
|
494
|
+
<pre class="programlisting">#define GTK_SOURCE_VERSION_MAX_ALLOWED GTK_SOURCE_VERSION_MIN_REQUIRED
|
495
|
+
</pre>
|
496
|
+
<p>A macro that should be defined by the user prior to including
|
497
|
+
the gtksource.h header.
|
498
|
+
The definition should be one of the predefined version
|
499
|
+
macros: <a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-0:CAPS" title="GTK_SOURCE_VERSION_3_0"><code class="literal">GTK_SOURCE_VERSION_3_0</code></a>, <a class="link" href="gtksourceview-4.0-Version-Information.html#GTK-SOURCE-VERSION-3-2:CAPS" title="GTK_SOURCE_VERSION_3_2"><code class="literal">GTK_SOURCE_VERSION_3_2</code></a>, ...</p>
|
500
|
+
<p>This macro defines the upper bound for the GtkSourceView API to use.</p>
|
501
|
+
<p>If a function has been introduced in a newer version of GtkSourceView,
|
502
|
+
it is possible to use this symbol to get compiler warnings when
|
503
|
+
trying to use that function.</p>
|
504
|
+
<p class="since">Since: <a class="link" href="api-index-3-20.html#api-index-3.20">3.20</a></p>
|
505
|
+
</div>
|
506
|
+
</div>
|
507
|
+
</div>
|
508
|
+
<div class="footer">
|
509
|
+
<hr>Generated by GTK-Doc V1.28.1</div>
|
510
|
+
</body>
|
511
|
+
</html>
|