gitextract_stnjarzb/ ├── .github/ │ └── workflows/ │ └── cmake.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE.md ├── NEWS.md ├── README.md ├── THIRDPARTY.md ├── cli/ │ ├── CMakeLists.txt │ ├── README.md │ └── main_cli.cpp ├── cmakefind/ │ └── FindSqlite.cmake ├── doc/ │ ├── HOWTO-LINUX.md │ ├── INSTALL-LINUX.md │ └── workflow.dia ├── gui/ │ ├── CMakeLists.txt │ ├── aboutdialog.cpp │ ├── aboutdialog.h │ ├── cqimages.qrc │ ├── cqtrans.qrc.template │ ├── cqwin32.rc │ ├── cqwin64.rc │ ├── fileviewer.cpp │ ├── fileviewer.h │ ├── fileviewsettingsdialog.cpp │ ├── fileviewsettingsdialog.h │ ├── graphdialog.cpp │ ├── graphdialog.h │ ├── images/ │ │ └── axialisReadMe.txt │ ├── langtable.cpp │ ├── langtable.h │ ├── listhandler.cpp │ ├── listhandler.h │ ├── main_gui.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── searchhandler.cpp │ ├── searchhandler.h │ ├── themes/ │ │ ├── Bespin.xml │ │ ├── Black_board.xml │ │ ├── Choco.xml │ │ ├── Deep_Black.xml │ │ ├── Eclipse_Default.xml │ │ ├── Hello_Kitty.xml │ │ ├── HotFudgeSundae.xml │ │ ├── Mono_Industrial.xml │ │ ├── Monokai.xml │ │ ├── MossyLawn.xml │ │ ├── Navajo.xml │ │ ├── NotepadPlusPlus.xml │ │ ├── Obsidian.xml │ │ ├── Plastic_Code_Wrap.xml │ │ ├── Ruby_Blue.xml │ │ ├── Solarized.xml │ │ ├── Solarized_light.xml │ │ ├── Twilight.xml │ │ ├── Vibrant_Ink.xml │ │ ├── Zenburn.xml │ │ ├── khaki.xml │ │ ├── parse_themes.pl │ │ └── vim_Dark_Blue.xml │ ├── themes.cpp │ ├── themes.h │ ├── themes_gen.cpp │ ├── translations/ │ │ ├── codequery_de.ts │ │ ├── codequery_en.ts │ │ ├── codequery_es.ts │ │ ├── codequery_fr.ts │ │ ├── codequery_id.ts │ │ ├── codequery_it.ts │ │ ├── codequery_ja.ts │ │ ├── codequery_ko.ts │ │ ├── codequery_zh-CHS.ts │ │ ├── codequery_zh-CHT.ts │ │ ├── dolupdate.pl │ │ ├── dowebtranslate.pl │ │ └── tslist.txt │ ├── ui/ │ │ ├── aboutDialog.ui │ │ ├── fileViewSettingsDialog.ui │ │ ├── graphDialog.ui │ │ └── mainWindow.ui │ └── winmain.cpp ├── lexilla/ │ ├── .gitattributes │ ├── .github/ │ │ └── workflows/ │ │ ├── build-check-macos.yml │ │ ├── build-check-win32.yml │ │ └── build-check.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── CONTRIBUTING │ ├── License.txt │ ├── README │ ├── access/ │ │ ├── LexillaAccess.cxx │ │ ├── LexillaAccess.h │ │ └── README │ ├── cppcheck.suppress │ ├── delbin.bat │ ├── doc/ │ │ ├── Lexilla.html │ │ ├── LexillaDoc.html │ │ ├── LexillaDownload.html │ │ └── LexillaHistory.html │ ├── examples/ │ │ ├── CheckLexilla/ │ │ │ ├── CheckLexilla.c │ │ │ └── makefile │ │ └── SimpleLexer/ │ │ ├── SimpleLexer.cxx │ │ └── makefile │ ├── include/ │ │ ├── LexicalStyles.iface │ │ ├── Lexilla.h │ │ └── SciLexer.h │ ├── lexers/ │ │ ├── LexA68k.cxx │ │ ├── LexAPDL.cxx │ │ ├── LexASY.cxx │ │ ├── LexAU3.cxx │ │ ├── LexAVE.cxx │ │ ├── LexAVS.cxx │ │ ├── LexAbaqus.cxx │ │ ├── LexAda.cxx │ │ ├── LexAsciidoc.cxx │ │ ├── LexAsm.cxx │ │ ├── LexAsn1.cxx │ │ ├── LexBaan.cxx │ │ ├── LexBash.cxx │ │ ├── LexBasic.cxx │ │ ├── LexBatch.cxx │ │ ├── LexBibTeX.cxx │ │ ├── LexBullant.cxx │ │ ├── LexCIL.cxx │ │ ├── LexCLW.cxx │ │ ├── LexCOBOL.cxx │ │ ├── LexCPP.cxx │ │ ├── LexCSS.cxx │ │ ├── LexCaml.cxx │ │ ├── LexCmake.cxx │ │ ├── LexCoffeeScript.cxx │ │ ├── LexConf.cxx │ │ ├── LexCrontab.cxx │ │ ├── LexCsound.cxx │ │ ├── LexD.cxx │ │ ├── LexDMAP.cxx │ │ ├── LexDMIS.cxx │ │ ├── LexDataflex.cxx │ │ ├── LexDiff.cxx │ │ ├── LexECL.cxx │ │ ├── LexEDIFACT.cxx │ │ ├── LexEScript.cxx │ │ ├── LexEiffel.cxx │ │ ├── LexErlang.cxx │ │ ├── LexErrorList.cxx │ │ ├── LexFSharp.cxx │ │ ├── LexFlagship.cxx │ │ ├── LexForth.cxx │ │ ├── LexFortran.cxx │ │ ├── LexGAP.cxx │ │ ├── LexGDScript.cxx │ │ ├── LexGui4Cli.cxx │ │ ├── LexHTML.cxx │ │ ├── LexHaskell.cxx │ │ ├── LexHex.cxx │ │ ├── LexHollywood.cxx │ │ ├── LexIndent.cxx │ │ ├── LexInno.cxx │ │ ├── LexJSON.cxx │ │ ├── LexJulia.cxx │ │ ├── LexKVIrc.cxx │ │ ├── LexKix.cxx │ │ ├── LexLaTeX.cxx │ │ ├── LexLisp.cxx │ │ ├── LexLout.cxx │ │ ├── LexLua.cxx │ │ ├── LexMMIXAL.cxx │ │ ├── LexMPT.cxx │ │ ├── LexMSSQL.cxx │ │ ├── LexMagik.cxx │ │ ├── LexMake.cxx │ │ ├── LexMarkdown.cxx │ │ ├── LexMatlab.cxx │ │ ├── LexMaxima.cxx │ │ ├── LexMetapost.cxx │ │ ├── LexModula.cxx │ │ ├── LexMySQL.cxx │ │ ├── LexNim.cxx │ │ ├── LexNimrod.cxx │ │ ├── LexNsis.cxx │ │ ├── LexNull.cxx │ │ ├── LexOScript.cxx │ │ ├── LexOpal.cxx │ │ ├── LexPB.cxx │ │ ├── LexPLM.cxx │ │ ├── LexPO.cxx │ │ ├── LexPOV.cxx │ │ ├── LexPS.cxx │ │ ├── LexPascal.cxx │ │ ├── LexPerl.cxx │ │ ├── LexPowerPro.cxx │ │ ├── LexPowerShell.cxx │ │ ├── LexProgress.cxx │ │ ├── LexProps.cxx │ │ ├── LexPython.cxx │ │ ├── LexR.cxx │ │ ├── LexRaku.cxx │ │ ├── LexRebol.cxx │ │ ├── LexRegistry.cxx │ │ ├── LexRuby.cxx │ │ ├── LexRust.cxx │ │ ├── LexSAS.cxx │ │ ├── LexSML.cxx │ │ ├── LexSQL.cxx │ │ ├── LexSTTXT.cxx │ │ ├── LexScriptol.cxx │ │ ├── LexSmalltalk.cxx │ │ ├── LexSorcus.cxx │ │ ├── LexSpecman.cxx │ │ ├── LexSpice.cxx │ │ ├── LexStata.cxx │ │ ├── LexTACL.cxx │ │ ├── LexTADS3.cxx │ │ ├── LexTAL.cxx │ │ ├── LexTCL.cxx │ │ ├── LexTCMD.cxx │ │ ├── LexTeX.cxx │ │ ├── LexTxt2tags.cxx │ │ ├── LexVB.cxx │ │ ├── LexVHDL.cxx │ │ ├── LexVerilog.cxx │ │ ├── LexVisualProlog.cxx │ │ ├── LexX12.cxx │ │ └── LexYAML.cxx │ ├── lexlib/ │ │ ├── Accessor.cxx │ │ ├── Accessor.h │ │ ├── CatalogueModules.h │ │ ├── CharacterCategory.cxx │ │ ├── CharacterCategory.h │ │ ├── CharacterSet.cxx │ │ ├── CharacterSet.h │ │ ├── DefaultLexer.cxx │ │ ├── DefaultLexer.h │ │ ├── InList.cxx │ │ ├── InList.h │ │ ├── LexAccessor.cxx │ │ ├── LexAccessor.h │ │ ├── LexerBase.cxx │ │ ├── LexerBase.h │ │ ├── LexerModule.cxx │ │ ├── LexerModule.h │ │ ├── LexerNoExceptions.cxx │ │ ├── LexerNoExceptions.h │ │ ├── LexerSimple.cxx │ │ ├── LexerSimple.h │ │ ├── OptionSet.h │ │ ├── PropSetSimple.cxx │ │ ├── PropSetSimple.h │ │ ├── SparseState.h │ │ ├── StringCopy.h │ │ ├── StyleContext.cxx │ │ ├── StyleContext.h │ │ ├── SubStyles.h │ │ ├── WordList.cxx │ │ └── WordList.h │ ├── scripts/ │ │ ├── HeaderOrder.txt │ │ ├── LexFacer.py │ │ ├── LexillaData.py │ │ ├── LexillaGen.py │ │ ├── LexillaLogo.py │ │ ├── PromoteNew.bat │ │ ├── RunTest.bat │ │ └── RunTest.sh │ ├── src/ │ │ ├── DepGen.py │ │ ├── Lexilla/ │ │ │ ├── Info.plist │ │ │ └── Lexilla.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ ├── Lexilla.cxx │ │ ├── Lexilla.def │ │ ├── Lexilla.pro │ │ ├── Lexilla.ruleset │ │ ├── Lexilla.vcxproj │ │ ├── LexillaVersion.rc │ │ ├── deps.mak │ │ ├── lexilla.mak │ │ ├── makefile │ │ └── nmdeps.mak │ ├── test/ │ │ ├── README │ │ ├── TestDocument.cxx │ │ ├── TestDocument.h │ │ ├── TestLexers.cxx │ │ ├── TestLexers.vcxproj │ │ ├── examples/ │ │ │ ├── asciidoc/ │ │ │ │ ├── AllStyles.adoc │ │ │ │ ├── AllStyles.adoc.folded │ │ │ │ ├── AllStyles.adoc.styled │ │ │ │ └── SciTE.properties │ │ │ ├── asm/ │ │ │ │ ├── AllStyles.asm │ │ │ │ ├── AllStyles.asm.folded │ │ │ │ ├── AllStyles.asm.styled │ │ │ │ └── SciTE.properties │ │ │ ├── bash/ │ │ │ │ ├── 197ArithmeticOperator.bsh │ │ │ │ ├── 197ArithmeticOperator.bsh.folded │ │ │ │ ├── 197ArithmeticOperator.bsh.styled │ │ │ │ ├── 199Numbers.bsh │ │ │ │ ├── 199Numbers.bsh.folded │ │ │ │ ├── 199Numbers.bsh.styled │ │ │ │ ├── 202LineStartOption.bsh │ │ │ │ ├── 202LineStartOption.bsh.folded │ │ │ │ ├── 202LineStartOption.bsh.styled │ │ │ │ ├── 203TestOption.bsh │ │ │ │ ├── 203TestOption.bsh.folded │ │ │ │ ├── 203TestOption.bsh.styled │ │ │ │ ├── AllStyles.bsh │ │ │ │ ├── AllStyles.bsh.folded │ │ │ │ ├── AllStyles.bsh.styled │ │ │ │ ├── Issue180.bsh │ │ │ │ ├── Issue180.bsh.folded │ │ │ │ ├── Issue180.bsh.styled │ │ │ │ ├── Issue182.bsh │ │ │ │ ├── Issue182.bsh.folded │ │ │ │ ├── Issue182.bsh.styled │ │ │ │ ├── Issue184.bsh │ │ │ │ ├── Issue184.bsh.folded │ │ │ │ ├── Issue184.bsh.styled │ │ │ │ ├── Issue184Copy.bsh │ │ │ │ ├── Issue184Copy.bsh.folded │ │ │ │ ├── Issue184Copy.bsh.styled │ │ │ │ ├── Nested.bsh │ │ │ │ ├── Nested.bsh.folded │ │ │ │ ├── Nested.bsh.styled │ │ │ │ ├── NestedRich.bsh │ │ │ │ ├── NestedRich.bsh.folded │ │ │ │ ├── NestedRich.bsh.styled │ │ │ │ ├── NestedStyledInside.bsh │ │ │ │ ├── NestedStyledInside.bsh.folded │ │ │ │ ├── NestedStyledInside.bsh.styled │ │ │ │ ├── SciTE.properties │ │ │ │ ├── continuation.bsh │ │ │ │ ├── continuation.bsh.folded │ │ │ │ ├── continuation.bsh.styled │ │ │ │ ├── hash.zsh │ │ │ │ ├── hash.zsh.folded │ │ │ │ ├── hash.zsh.styled │ │ │ │ ├── x.bsh │ │ │ │ ├── x.bsh.folded │ │ │ │ └── x.bsh.styled │ │ │ ├── batch/ │ │ │ │ ├── Issue115.bat │ │ │ │ ├── Issue115.bat.folded │ │ │ │ ├── Issue115.bat.styled │ │ │ │ ├── Issue222.bat │ │ │ │ ├── Issue222.bat.folded │ │ │ │ ├── Issue222.bat.styled │ │ │ │ ├── SciTE.properties │ │ │ │ ├── x.bat │ │ │ │ ├── x.bat.folded │ │ │ │ └── x.bat.styled │ │ │ ├── caml/ │ │ │ │ ├── AllStyles.ml │ │ │ │ ├── AllStyles.ml.folded │ │ │ │ ├── AllStyles.ml.styled │ │ │ │ └── SciTE.properties │ │ │ ├── cmake/ │ │ │ │ ├── Bug77_0.cmake │ │ │ │ ├── Bug77_0.cmake.folded │ │ │ │ ├── Bug77_0.cmake.styled │ │ │ │ ├── Bug77_1.cmake │ │ │ │ ├── Bug77_1.cmake.folded │ │ │ │ ├── Bug77_1.cmake.styled │ │ │ │ └── SciTE.properties │ │ │ ├── cobol/ │ │ │ │ ├── 229.cob │ │ │ │ ├── 229.cob.folded │ │ │ │ ├── 229.cob.styled │ │ │ │ ├── 230.cob │ │ │ │ ├── 230.cob.folded │ │ │ │ ├── 230.cob.styled │ │ │ │ ├── 231.cob │ │ │ │ ├── 231.cob.folded │ │ │ │ ├── 231.cob.styled │ │ │ │ ├── AllStyles.cob │ │ │ │ ├── AllStyles.cob.folded │ │ │ │ ├── AllStyles.cob.styled │ │ │ │ └── SciTE.properties │ │ │ ├── cpp/ │ │ │ │ ├── 130NonAsciiKeyword.cxx │ │ │ │ ├── 130NonAsciiKeyword.cxx.folded │ │ │ │ ├── 130NonAsciiKeyword.cxx.styled │ │ │ │ ├── 149KeywordCase.cxx │ │ │ │ ├── 149KeywordCase.cxx.folded │ │ │ │ ├── 149KeywordCase.cxx.styled │ │ │ │ ├── 94Template.cxx │ │ │ │ ├── 94Template.cxx.folded │ │ │ │ ├── 94Template.cxx.styled │ │ │ │ ├── AllStyles.cxx │ │ │ │ ├── AllStyles.cxx.folded │ │ │ │ ├── AllStyles.cxx.styled │ │ │ │ ├── Bug2245.cxx │ │ │ │ ├── Bug2245.cxx.folded │ │ │ │ ├── Bug2245.cxx.styled │ │ │ │ ├── SciTE.properties │ │ │ │ ├── x.cxx │ │ │ │ ├── x.cxx.folded │ │ │ │ └── x.cxx.styled │ │ │ ├── css/ │ │ │ │ ├── AllStyles.css │ │ │ │ ├── AllStyles.css.folded │ │ │ │ ├── AllStyles.css.styled │ │ │ │ └── SciTE.properties │ │ │ ├── d/ │ │ │ │ ├── SciTE.properties │ │ │ │ ├── x.d │ │ │ │ ├── x.d.folded │ │ │ │ └── x.d.styled │ │ │ ├── diff/ │ │ │ │ ├── AllStyles.diff │ │ │ │ ├── AllStyles.diff.folded │ │ │ │ ├── AllStyles.diff.styled │ │ │ │ ├── LongLine.diff │ │ │ │ ├── LongLine.diff.folded │ │ │ │ ├── LongLine.diff.styled │ │ │ │ └── SciTE.properties │ │ │ ├── erlang/ │ │ │ │ ├── AllStyles.erl │ │ │ │ ├── AllStyles.erl.folded │ │ │ │ ├── AllStyles.erl.styled │ │ │ │ └── SciTE.properties │ │ │ ├── errorlist/ │ │ │ │ ├── AllStyles.err │ │ │ │ ├── AllStyles.err.folded │ │ │ │ ├── AllStyles.err.styled │ │ │ │ └── SciTE.properties │ │ │ ├── fortran/ │ │ │ │ ├── AllStyles.f │ │ │ │ ├── AllStyles.f.folded │ │ │ │ ├── AllStyles.f.styled │ │ │ │ └── SciTE.properties │ │ │ ├── fsharp/ │ │ │ │ ├── FmtSpecs.fs │ │ │ │ ├── FmtSpecs.fs.folded │ │ │ │ ├── FmtSpecs.fs.styled │ │ │ │ ├── Issue56.fs │ │ │ │ ├── Issue56.fs.folded │ │ │ │ ├── Issue56.fs.styled │ │ │ │ ├── Issue93.fs │ │ │ │ ├── Issue93.fs.folded │ │ │ │ ├── Issue93.fs.styled │ │ │ │ ├── Literals.fs │ │ │ │ ├── Literals.fs.folded │ │ │ │ ├── Literals.fs.styled │ │ │ │ ├── SciTE.properties │ │ │ │ ├── x.fs │ │ │ │ ├── x.fs.folded │ │ │ │ └── x.fs.styled │ │ │ ├── gdscript/ │ │ │ │ ├── AllStyles.gd │ │ │ │ ├── AllStyles.gd.folded │ │ │ │ ├── AllStyles.gd.styled │ │ │ │ ├── NodePath.gd │ │ │ │ ├── NodePath.gd.folded │ │ │ │ ├── NodePath.gd.styled │ │ │ │ └── SciTE.properties │ │ │ ├── gui4cli/ │ │ │ │ ├── AllStyles.gui │ │ │ │ ├── AllStyles.gui.folded │ │ │ │ ├── AllStyles.gui.styled │ │ │ │ └── SciTE.properties │ │ │ ├── hypertext/ │ │ │ │ ├── Bug2207.html │ │ │ │ ├── Bug2207.html.folded │ │ │ │ ├── Bug2207.html.styled │ │ │ │ ├── Bug2219.html │ │ │ │ ├── Bug2219.html.folded │ │ │ │ ├── Bug2219.html.styled │ │ │ │ ├── Issue19.php │ │ │ │ ├── Issue19.php.folded │ │ │ │ ├── Issue19.php.styled │ │ │ │ ├── Issue192.html │ │ │ │ ├── Issue192.html.folded │ │ │ │ ├── Issue192.html.styled │ │ │ │ ├── Issue20Numbers.php │ │ │ │ ├── Issue20Numbers.php.folded │ │ │ │ ├── Issue20Numbers.php.styled │ │ │ │ ├── Issue47.html │ │ │ │ ├── Issue47.html.folded │ │ │ │ ├── Issue47.html.styled │ │ │ │ ├── Issue53.html │ │ │ │ ├── Issue53.html.folded │ │ │ │ ├── Issue53.html.styled │ │ │ │ ├── SciTE.properties │ │ │ │ ├── ServerBasic.aspx │ │ │ │ ├── ServerBasic.aspx.folded │ │ │ │ ├── ServerBasic.aspx.styled │ │ │ │ ├── ServerJavaScript.aspx │ │ │ │ ├── ServerJavaScript.aspx.folded │ │ │ │ ├── ServerJavaScript.aspx.styled │ │ │ │ ├── apostophe.php │ │ │ │ ├── apostophe.php.folded │ │ │ │ ├── apostophe.php.styled │ │ │ │ ├── comment.html │ │ │ │ ├── comment.html.folded │ │ │ │ ├── comment.html.styled │ │ │ │ ├── mako.html │ │ │ │ ├── mako.html.folded │ │ │ │ ├── mako.html.styled │ │ │ │ ├── x.asp │ │ │ │ ├── x.asp.folded │ │ │ │ ├── x.asp.styled │ │ │ │ ├── x.html │ │ │ │ ├── x.html.folded │ │ │ │ ├── x.html.styled │ │ │ │ ├── x.php │ │ │ │ ├── x.php.folded │ │ │ │ └── x.php.styled │ │ │ ├── inno/ │ │ │ │ ├── SciTE.properties │ │ │ │ ├── x.iss │ │ │ │ ├── x.iss.folded │ │ │ │ └── x.iss.styled │ │ │ ├── json/ │ │ │ │ ├── AllStyles.json │ │ │ │ ├── AllStyles.json.folded │ │ │ │ ├── AllStyles.json.styled │ │ │ │ └── SciTE.properties │ │ │ ├── julia/ │ │ │ │ ├── SciTE.properties │ │ │ │ ├── x.jl │ │ │ │ ├── x.jl.folded │ │ │ │ └── x.jl.styled │ │ │ ├── latex/ │ │ │ │ ├── AllStyles.tex │ │ │ │ ├── AllStyles.tex.folded │ │ │ │ ├── AllStyles.tex.styled │ │ │ │ ├── Feature1358.tex │ │ │ │ ├── Feature1358.tex.folded │ │ │ │ ├── Feature1358.tex.styled │ │ │ │ └── SciTE.properties │ │ │ ├── lua/ │ │ │ │ ├── AllStyles.lua │ │ │ │ ├── AllStyles.lua.folded │ │ │ │ ├── AllStyles.lua.styled │ │ │ │ ├── Bug2205.lua │ │ │ │ ├── Bug2205.lua.folded │ │ │ │ ├── Bug2205.lua.styled │ │ │ │ ├── SciTE.properties │ │ │ │ ├── folding.lua │ │ │ │ ├── folding.lua.folded │ │ │ │ ├── folding.lua.styled │ │ │ │ ├── x.lua │ │ │ │ ├── x.lua.folded │ │ │ │ └── x.lua.styled │ │ │ ├── makefile/ │ │ │ │ ├── SciTE.properties │ │ │ │ ├── longline.mak │ │ │ │ ├── longline.mak.folded │ │ │ │ ├── longline.mak.styled │ │ │ │ ├── x.mak │ │ │ │ ├── x.mak.folded │ │ │ │ └── x.mak.styled │ │ │ ├── markdown/ │ │ │ │ ├── AllStyles.md │ │ │ │ ├── AllStyles.md.folded │ │ │ │ ├── AllStyles.md.styled │ │ │ │ ├── Bug1216.md │ │ │ │ ├── Bug1216.md.folded │ │ │ │ ├── Bug1216.md.styled │ │ │ │ ├── Bug2235.md │ │ │ │ ├── Bug2235.md.folded │ │ │ │ ├── Bug2235.md.styled │ │ │ │ ├── Bug2247.md │ │ │ │ ├── Bug2247.md.folded │ │ │ │ ├── Bug2247.md.styled │ │ │ │ ├── HeaderEOLFill_0.md │ │ │ │ ├── HeaderEOLFill_0.md.folded │ │ │ │ ├── HeaderEOLFill_0.md.styled │ │ │ │ ├── HeaderEOLFill_1.md │ │ │ │ ├── HeaderEOLFill_1.md.folded │ │ │ │ ├── HeaderEOLFill_1.md.styled │ │ │ │ ├── Issue117.md │ │ │ │ ├── Issue117.md.folded │ │ │ │ ├── Issue117.md.styled │ │ │ │ └── SciTE.properties │ │ │ ├── matlab/ │ │ │ │ ├── AllStyles.m.matlab │ │ │ │ ├── AllStyles.m.matlab.folded │ │ │ │ ├── AllStyles.m.matlab.styled │ │ │ │ ├── AllStyles.m.octave │ │ │ │ ├── AllStyles.m.octave.folded │ │ │ │ ├── AllStyles.m.octave.styled │ │ │ │ ├── ArgumentsBlock.m.matlab │ │ │ │ ├── ArgumentsBlock.m.matlab.folded │ │ │ │ ├── ArgumentsBlock.m.matlab.styled │ │ │ │ ├── ClassDefinition.m.matlab │ │ │ │ ├── ClassDefinition.m.matlab.folded │ │ │ │ ├── ClassDefinition.m.matlab.styled │ │ │ │ ├── FoldPoints.m.matlab │ │ │ │ ├── FoldPoints.m.matlab.folded │ │ │ │ ├── FoldPoints.m.matlab.styled │ │ │ │ ├── Issue18_EscapeSequence.m.matlab │ │ │ │ ├── Issue18_EscapeSequence.m.matlab.folded │ │ │ │ ├── Issue18_EscapeSequence.m.matlab.styled │ │ │ │ ├── Issue18_EscapeSequence.m.octave │ │ │ │ ├── Issue18_EscapeSequence.m.octave.folded │ │ │ │ ├── Issue18_EscapeSequence.m.octave.styled │ │ │ │ ├── NumericLiterals.m.matlab │ │ │ │ ├── NumericLiterals.m.matlab.folded │ │ │ │ ├── NumericLiterals.m.matlab.styled │ │ │ │ └── SciTE.properties │ │ │ ├── mmixal/ │ │ │ │ ├── AllStyles.mms │ │ │ │ ├── AllStyles.mms.folded │ │ │ │ ├── AllStyles.mms.styled │ │ │ │ ├── SciTE.properties │ │ │ │ ├── references.mms │ │ │ │ ├── references.mms.folded │ │ │ │ ├── references.mms.styled │ │ │ │ ├── x.mms │ │ │ │ ├── x.mms.folded │ │ │ │ └── x.mms.styled │ │ │ ├── modula/ │ │ │ │ ├── 128Endless.m3 │ │ │ │ ├── 128Endless.m3.folded │ │ │ │ ├── 128Endless.m3.styled │ │ │ │ ├── Issue129.m3 │ │ │ │ ├── Issue129.m3.folded │ │ │ │ ├── Issue129.m3.styled │ │ │ │ └── SciTE.properties │ │ │ ├── mssql/ │ │ │ │ ├── AllStyles.tsql │ │ │ │ ├── AllStyles.tsql.folded │ │ │ │ ├── AllStyles.tsql.styled │ │ │ │ ├── Issue87.tsql │ │ │ │ ├── Issue87.tsql.folded │ │ │ │ ├── Issue87.tsql.styled │ │ │ │ ├── Issue90.tsql │ │ │ │ ├── Issue90.tsql.folded │ │ │ │ ├── Issue90.tsql.styled │ │ │ │ ├── SciTE.properties │ │ │ │ ├── Various.tsql │ │ │ │ ├── Various.tsql.folded │ │ │ │ └── Various.tsql.styled │ │ │ ├── mysql/ │ │ │ │ ├── AllStyles.sql │ │ │ │ ├── AllStyles.sql.folded │ │ │ │ ├── AllStyles.sql.styled │ │ │ │ └── SciTE.properties │ │ │ ├── nim/ │ │ │ │ ├── SciTE.properties │ │ │ │ ├── x.nim │ │ │ │ ├── x.nim.folded │ │ │ │ └── x.nim.styled │ │ │ ├── perl/ │ │ │ │ ├── SciTE.properties │ │ │ │ ├── perl-test-5220delta.pl │ │ │ │ ├── perl-test-5220delta.pl.folded │ │ │ │ ├── perl-test-5220delta.pl.styled │ │ │ │ ├── perl-test-sub-prototypes.pl │ │ │ │ ├── perl-test-sub-prototypes.pl.folded │ │ │ │ ├── perl-test-sub-prototypes.pl.styled │ │ │ │ ├── x.pl │ │ │ │ ├── x.pl.folded │ │ │ │ └── x.pl.styled │ │ │ ├── powershell/ │ │ │ │ ├── AllStyles.ps1 │ │ │ │ ├── AllStyles.ps1.folded │ │ │ │ ├── AllStyles.ps1.styled │ │ │ │ ├── CharacterTruncation.ps1 │ │ │ │ ├── CharacterTruncation.ps1.folded │ │ │ │ ├── CharacterTruncation.ps1.styled │ │ │ │ ├── NumericLiterals.ps1 │ │ │ │ ├── NumericLiterals.ps1.folded │ │ │ │ ├── NumericLiterals.ps1.styled │ │ │ │ ├── Pull92.ps1 │ │ │ │ ├── Pull92.ps1.folded │ │ │ │ ├── Pull92.ps1.styled │ │ │ │ ├── Pull99Comment.ps1 │ │ │ │ ├── Pull99Comment.ps1.folded │ │ │ │ ├── Pull99Comment.ps1.styled │ │ │ │ └── SciTE.properties │ │ │ ├── props/ │ │ │ │ ├── Issue96Folding.props │ │ │ │ ├── Issue96Folding.props.folded │ │ │ │ ├── Issue96Folding.props.styled │ │ │ │ ├── SciTE.properties │ │ │ │ ├── example.session │ │ │ │ ├── example.session.folded │ │ │ │ └── example.session.styled │ │ │ ├── python/ │ │ │ │ ├── AllStyles.py │ │ │ │ ├── AllStyles.py.folded │ │ │ │ ├── AllStyles.py.styled │ │ │ │ ├── SciTE.properties │ │ │ │ ├── attributes/ │ │ │ │ │ ├── SciTE.properties │ │ │ │ │ ├── attributes.py │ │ │ │ │ ├── attributes.py.folded │ │ │ │ │ └── attributes.py.styled │ │ │ │ ├── f-strings.py │ │ │ │ ├── f-strings.py.folded │ │ │ │ ├── f-strings.py.styled │ │ │ │ ├── matchcase.py │ │ │ │ ├── matchcase.py.folded │ │ │ │ ├── matchcase.py.styled │ │ │ │ ├── strings.py │ │ │ │ ├── strings.py.folded │ │ │ │ ├── strings.py.styled │ │ │ │ ├── x.py │ │ │ │ ├── x.py.folded │ │ │ │ └── x.py.styled │ │ │ ├── r/ │ │ │ │ ├── 102Backticks.r │ │ │ │ ├── 102Backticks.r.folded │ │ │ │ ├── 102Backticks.r.styled │ │ │ │ ├── AllStyles.r │ │ │ │ ├── AllStyles.r.folded │ │ │ │ ├── AllStyles.r.styled │ │ │ │ └── SciTE.properties │ │ │ ├── raku/ │ │ │ │ ├── SciTE.properties │ │ │ │ ├── x.p6 │ │ │ │ ├── x.p6.folded │ │ │ │ └── x.p6.styled │ │ │ ├── ruby/ │ │ │ │ ├── 225NumberDotMethod.rb │ │ │ │ ├── 225NumberDotMethod.rb.folded │ │ │ │ ├── 225NumberDotMethod.rb.styled │ │ │ │ ├── 234HereDoc.rb │ │ │ │ ├── 234HereDoc.rb.folded │ │ │ │ ├── 234HereDoc.rb.styled │ │ │ │ ├── AllStyles.rb │ │ │ │ ├── AllStyles.rb.folded │ │ │ │ ├── AllStyles.rb.styled │ │ │ │ ├── Issue132.rb │ │ │ │ ├── Issue132.rb.folded │ │ │ │ ├── Issue132.rb.styled │ │ │ │ ├── Issue135.rb │ │ │ │ ├── Issue135.rb.folded │ │ │ │ ├── Issue135.rb.styled │ │ │ │ ├── Issue136.rb │ │ │ │ ├── Issue136.rb.folded │ │ │ │ ├── Issue136.rb.styled │ │ │ │ ├── Issue140.rb │ │ │ │ ├── Issue140.rb.folded │ │ │ │ ├── Issue140.rb.styled │ │ │ │ ├── Issue65.rb │ │ │ │ ├── Issue65.rb.folded │ │ │ │ ├── Issue65.rb.styled │ │ │ │ ├── Issue66.rb │ │ │ │ ├── Issue66.rb.folded │ │ │ │ ├── Issue66.rb.styled │ │ │ │ ├── Issue67.rb │ │ │ │ ├── Issue67.rb.folded │ │ │ │ ├── Issue67.rb.styled │ │ │ │ ├── Issue69.rb │ │ │ │ ├── Issue69.rb.folded │ │ │ │ ├── Issue69.rb.styled │ │ │ │ ├── PercentEquals124.rb │ │ │ │ ├── PercentEquals124.rb.folded │ │ │ │ ├── PercentEquals124.rb.styled │ │ │ │ ├── SciTE.properties │ │ │ │ ├── x.rb │ │ │ │ ├── x.rb.folded │ │ │ │ └── x.rb.styled │ │ │ ├── rust/ │ │ │ │ ├── Issue239.rs │ │ │ │ ├── Issue239.rs.folded │ │ │ │ ├── Issue239.rs.styled │ │ │ │ ├── Issue33.rs │ │ │ │ ├── Issue33.rs.folded │ │ │ │ ├── Issue33.rs.styled │ │ │ │ ├── Issue34.rs │ │ │ │ ├── Issue34.rs.folded │ │ │ │ ├── Issue34.rs.styled │ │ │ │ ├── Issue35.rs │ │ │ │ ├── Issue35.rs.folded │ │ │ │ ├── Issue35.rs.styled │ │ │ │ └── SciTE.properties │ │ │ ├── sql/ │ │ │ │ ├── AllStyles.sql │ │ │ │ ├── AllStyles.sql.folded │ │ │ │ ├── AllStyles.sql.styled │ │ │ │ └── SciTE.properties │ │ │ ├── tcl/ │ │ │ │ ├── SciTE.properties │ │ │ │ ├── x.tcl │ │ │ │ ├── x.tcl.folded │ │ │ │ └── x.tcl.styled │ │ │ ├── vb/ │ │ │ │ ├── SciTE.properties │ │ │ │ ├── x.vb │ │ │ │ ├── x.vb.folded │ │ │ │ └── x.vb.styled │ │ │ ├── verilog/ │ │ │ │ ├── AllStyles.vh │ │ │ │ ├── AllStyles.vh.folded │ │ │ │ ├── AllStyles.vh.styled │ │ │ │ └── SciTE.properties │ │ │ ├── vhdl/ │ │ │ │ ├── SciTE.properties │ │ │ │ ├── x.vhd │ │ │ │ ├── x.vhd.folded │ │ │ │ └── x.vhd.styled │ │ │ ├── visualprolog/ │ │ │ │ ├── AllStyles.pl │ │ │ │ ├── AllStyles.pl.folded │ │ │ │ ├── AllStyles.pl.styled │ │ │ │ ├── AllStyles.pro │ │ │ │ ├── AllStyles.pro.folded │ │ │ │ ├── AllStyles.pro.styled │ │ │ │ └── SciTE.properties │ │ │ ├── x12/ │ │ │ │ ├── SciTE.properties │ │ │ │ ├── empty.x12 │ │ │ │ ├── empty.x12.folded │ │ │ │ ├── empty.x12.styled │ │ │ │ ├── x.x12 │ │ │ │ ├── x.x12.folded │ │ │ │ └── x.x12.styled │ │ │ └── yaml/ │ │ │ ├── SciTE.properties │ │ │ ├── longline.yaml │ │ │ ├── longline.yaml.folded │ │ │ ├── longline.yaml.styled │ │ │ ├── x.yaml │ │ │ ├── x.yaml.folded │ │ │ └── x.yaml.styled │ │ ├── makefile │ │ ├── testlexers.mak │ │ └── unit/ │ │ ├── LICENSE_1_0.txt │ │ ├── README │ │ ├── Sci.natvis │ │ ├── SciTE.properties │ │ ├── UnitTester.cxx │ │ ├── UnitTester.vcxproj │ │ ├── catch.hpp │ │ ├── makefile │ │ ├── test.mak │ │ ├── testCharacterSet.cxx │ │ ├── testInList.cxx │ │ ├── testLexerSimple.cxx │ │ ├── testOptionSet.cxx │ │ ├── testPropSetSimple.cxx │ │ ├── testSparseState.cxx │ │ ├── testWordList.cxx │ │ └── unitTest.cxx │ ├── tgzsrc │ ├── version.txt │ └── zipsrc.bat ├── makedb/ │ ├── CMakeLists.txt │ ├── cs2sq.cpp │ ├── cs2sq.h │ ├── cscommon.h │ ├── csdbheader.cpp │ ├── csdbheader.h │ ├── csdbparser.cpp │ ├── csdbparser.h │ ├── ctagread.cpp │ ├── ctagread.h │ ├── main.cpp │ ├── sqlbase.cpp │ ├── sqlbase.h │ └── swver.h ├── querylib/ │ ├── CMakeLists.txt │ ├── README.txt │ ├── getopt2.cpp │ ├── getopt2.h │ ├── small_lib.cpp │ ├── small_lib.h │ ├── sqlquery.cpp │ └── sqlquery.h ├── release.json ├── scintilla/ │ ├── .editorconfig │ ├── .hg_archival.txt │ ├── .hgeol │ ├── .hgignore │ ├── .hgtags │ ├── CONTRIBUTING │ ├── License.txt │ ├── README │ ├── call/ │ │ └── ScintillaCall.cxx │ ├── cocoa/ │ │ ├── InfoBar.h │ │ ├── InfoBar.mm │ │ ├── InfoBarCommunicator.h │ │ ├── PlatCocoa.h │ │ ├── PlatCocoa.mm │ │ ├── QuartzTextLayout.h │ │ ├── QuartzTextStyle.h │ │ ├── QuartzTextStyleAttribute.h │ │ ├── Scintilla/ │ │ │ ├── Info.plist │ │ │ ├── Scintilla.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── module.modulemap │ │ ├── ScintillaCocoa.h │ │ ├── ScintillaCocoa.mm │ │ ├── ScintillaTest/ │ │ │ ├── AppController.h │ │ │ ├── AppController.mm │ │ │ ├── Info.plist │ │ │ ├── Scintilla-Info.plist │ │ │ ├── ScintillaTest.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── ScintillaTest_Prefix.pch │ │ │ ├── TestData.sql │ │ │ ├── en.lproj/ │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ ├── ScintillaView.h │ │ ├── ScintillaView.mm │ │ └── checkbuildosx.sh │ ├── cppcheck.suppress │ ├── delbin.bat │ ├── doc/ │ │ ├── AddSource.txt │ │ ├── Design.html │ │ ├── Icons.html │ │ ├── Lexer.txt │ │ ├── Privacy.html │ │ ├── SciCoding.html │ │ ├── Scintilla5Migration.html │ │ ├── ScintillaDoc.html │ │ ├── ScintillaDownload.html │ │ ├── ScintillaHistory.html │ │ ├── ScintillaRelated.html │ │ ├── ScintillaToDo.html │ │ ├── ScintillaUsage.html │ │ ├── Steps.html │ │ ├── StyleMetadata.html │ │ └── index.html │ ├── gtk/ │ │ ├── Converter.h │ │ ├── DepGen.py │ │ ├── PlatGTK.cxx │ │ ├── ScintillaGTK.cxx │ │ ├── ScintillaGTK.h │ │ ├── ScintillaGTKAccessible.cxx │ │ ├── ScintillaGTKAccessible.h │ │ ├── Wrappers.h │ │ ├── deps.mak │ │ ├── makefile │ │ ├── scintilla-marshal.c │ │ ├── scintilla-marshal.h │ │ └── scintilla-marshal.list │ ├── include/ │ │ ├── ILexer.h │ │ ├── ILoader.h │ │ ├── Sci_Position.h │ │ ├── Scintilla.h │ │ ├── Scintilla.iface │ │ ├── ScintillaCall.h │ │ ├── ScintillaMessages.h │ │ ├── ScintillaStructures.h │ │ ├── ScintillaTypes.h │ │ └── ScintillaWidget.h │ ├── qt/ │ │ ├── README │ │ ├── ScintillaEdit/ │ │ │ ├── CMakeLists.txt │ │ │ ├── ScintillaDocument.cpp │ │ │ ├── ScintillaDocument.h │ │ │ ├── ScintillaEdit.cpp │ │ │ ├── ScintillaEdit.cpp.template │ │ │ ├── ScintillaEdit.h │ │ │ ├── ScintillaEdit.h.template │ │ │ ├── ScintillaEdit.pro │ │ │ └── WidgetGen.py │ │ └── ScintillaEditBase/ │ │ ├── Notes.txt │ │ ├── PlatQt.cpp │ │ ├── PlatQt.h │ │ ├── ScintillaEditBase.cpp │ │ ├── ScintillaEditBase.h │ │ ├── ScintillaEditBase.pro │ │ ├── ScintillaQt.cpp │ │ └── ScintillaQt.h │ ├── scripts/ │ │ ├── CheckMentioned.py │ │ ├── Dependencies.py │ │ ├── Face.py │ │ ├── FileGenerator.py │ │ ├── GenerateCaseConvert.py │ │ ├── GenerateCharacterCategory.py │ │ ├── HFacer.py │ │ ├── HeaderCheck.py │ │ ├── HeaderOrder.txt │ │ ├── LexGen.py │ │ ├── ScintillaAPIFacer.py │ │ ├── ScintillaData.py │ │ ├── __init__.py │ │ └── archive.sh │ ├── src/ │ │ ├── AutoComplete.cxx │ │ ├── AutoComplete.h │ │ ├── CallTip.cxx │ │ ├── CallTip.h │ │ ├── CaseConvert.cxx │ │ ├── CaseConvert.h │ │ ├── CaseFolder.cxx │ │ ├── CaseFolder.h │ │ ├── CellBuffer.cxx │ │ ├── CellBuffer.h │ │ ├── ChangeHistory.cxx │ │ ├── ChangeHistory.h │ │ ├── CharClassify.cxx │ │ ├── CharClassify.h │ │ ├── CharacterCategoryMap.cxx │ │ ├── CharacterCategoryMap.h │ │ ├── CharacterType.cxx │ │ ├── CharacterType.h │ │ ├── ContractionState.cxx │ │ ├── ContractionState.h │ │ ├── DBCS.cxx │ │ ├── DBCS.h │ │ ├── Debugging.h │ │ ├── Decoration.cxx │ │ ├── Decoration.h │ │ ├── Document.cxx │ │ ├── Document.h │ │ ├── EditModel.cxx │ │ ├── EditModel.h │ │ ├── EditView.cxx │ │ ├── EditView.h │ │ ├── Editor.cxx │ │ ├── Editor.h │ │ ├── ElapsedPeriod.h │ │ ├── Geometry.cxx │ │ ├── Geometry.h │ │ ├── Indicator.cxx │ │ ├── Indicator.h │ │ ├── KeyMap.cxx │ │ ├── KeyMap.h │ │ ├── LineMarker.cxx │ │ ├── LineMarker.h │ │ ├── MarginView.cxx │ │ ├── MarginView.h │ │ ├── Partitioning.h │ │ ├── PerLine.cxx │ │ ├── PerLine.h │ │ ├── Platform.h │ │ ├── Position.h │ │ ├── PositionCache.cxx │ │ ├── PositionCache.h │ │ ├── RESearch.cxx │ │ ├── RESearch.h │ │ ├── RunStyles.cxx │ │ ├── RunStyles.h │ │ ├── SciTE.properties │ │ ├── ScintillaBase.cxx │ │ ├── ScintillaBase.h │ │ ├── Selection.cxx │ │ ├── Selection.h │ │ ├── SparseVector.h │ │ ├── SplitVector.h │ │ ├── Style.cxx │ │ ├── Style.h │ │ ├── UndoHistory.cxx │ │ ├── UndoHistory.h │ │ ├── UniConversion.cxx │ │ ├── UniConversion.h │ │ ├── UniqueString.cxx │ │ ├── UniqueString.h │ │ ├── ViewStyle.cxx │ │ ├── ViewStyle.h │ │ ├── XPM.cxx │ │ └── XPM.h │ ├── test/ │ │ ├── MessageNumbers.py │ │ ├── README │ │ ├── ScintillaCallable.py │ │ ├── XiteMenu.py │ │ ├── XiteWin.py │ │ ├── gi/ │ │ │ ├── Scintilla-0.1.gir.good │ │ │ ├── filter-scintilla-h.py │ │ │ ├── gi-test.py │ │ │ └── makefile │ │ ├── performanceTests.py │ │ ├── simpleTests.py │ │ ├── unit/ │ │ │ ├── LICENSE_1_0.txt │ │ │ ├── README │ │ │ ├── Sci.natvis │ │ │ ├── SciTE.properties │ │ │ ├── UnitTester.cxx │ │ │ ├── UnitTester.vcxproj │ │ │ ├── catch.hpp │ │ │ ├── makefile │ │ │ ├── test.mak │ │ │ ├── testCellBuffer.cxx │ │ │ ├── testCharClassify.cxx │ │ │ ├── testCharacterCategoryMap.cxx │ │ │ ├── testContractionState.cxx │ │ │ ├── testDecoration.cxx │ │ │ ├── testDocument.cxx │ │ │ ├── testGeometry.cxx │ │ │ ├── testPartitioning.cxx │ │ │ ├── testPerLine.cxx │ │ │ ├── testRESearch.cxx │ │ │ ├── testRunStyles.cxx │ │ │ ├── testSparseVector.cxx │ │ │ ├── testSplitVector.cxx │ │ │ ├── testUniConversion.cxx │ │ │ └── unitTest.cxx │ │ ├── win32Tests.py │ │ └── xite.py │ ├── tgzsrc │ ├── version.txt │ ├── win32/ │ │ ├── DepGen.py │ │ ├── HanjaDic.cxx │ │ ├── HanjaDic.h │ │ ├── PlatWin.cxx │ │ ├── PlatWin.h │ │ ├── SciTE.properties │ │ ├── ScintRes.rc │ │ ├── Scintilla.def │ │ ├── Scintilla.vcxproj │ │ ├── ScintillaDLL.cxx │ │ ├── ScintillaWin.cxx │ │ ├── ScintillaWin.h │ │ ├── WinTypes.h │ │ ├── deps.mak │ │ ├── makefile │ │ ├── nmdeps.mak │ │ └── scintilla.mak │ └── zipsrc.bat ├── showgraph/ │ ├── CMakeLists.txt │ ├── Graph/ │ │ ├── README.txt │ │ ├── agraph.h │ │ ├── edge.cpp │ │ ├── edge.h │ │ ├── edge_inline.h │ │ ├── graph.cpp │ │ ├── graph.h │ │ ├── graph_iface.h │ │ ├── graph_inline.h │ │ ├── marker.h │ │ ├── node.cpp │ │ ├── node.h │ │ ├── node_inline.h │ │ ├── node_iter.h │ │ ├── num.h │ │ └── predecls.h │ ├── GraphView/ │ │ ├── edge_helper.cpp │ │ ├── edge_helper.h │ │ ├── edge_item.cpp │ │ ├── edge_item.h │ │ ├── graph_view.cpp │ │ ├── graph_view.h │ │ ├── gstyle.h │ │ ├── gview_iface.h │ │ ├── gview_impl.h │ │ ├── navigation.cpp │ │ ├── navigation.h │ │ ├── node_item.cpp │ │ ├── node_item.h │ │ ├── style_edit.cpp │ │ ├── style_edit.h │ │ ├── visible_edge.cpp │ │ └── visible_edge.h │ ├── LICENSE.txt │ ├── Layout/ │ │ ├── aux_edge.h │ │ ├── aux_graph.cpp │ │ ├── aux_graph.h │ │ ├── aux_node.h │ │ ├── layout.cpp │ │ ├── layout_iface.h │ │ ├── node_group.cpp │ │ └── node_group.h │ ├── README.txt │ ├── Utils/ │ │ ├── asrt.h │ │ ├── conf.cpp │ │ ├── conf.h │ │ ├── conf_utest.cpp │ │ ├── list.h │ │ ├── list_utest.cpp │ │ ├── mem.h │ │ ├── mem_chunk.h │ │ ├── mem_entry.h │ │ ├── mem_fixed_pool.h │ │ ├── mem_mgr.cpp │ │ ├── mem_mgr.h │ │ ├── mem_obj.h │ │ ├── mem_pool.cpp │ │ ├── mem_pool.h │ │ ├── mem_ref.h │ │ ├── mem_utest.cpp │ │ ├── misc.h │ │ ├── print.h │ │ ├── singleton.h │ │ ├── ulist.h │ │ ├── utils.cpp │ │ ├── utils_iface.h │ │ └── utils_utest.cpp │ ├── core_iface.h │ ├── showgraph.cpp │ └── showgraph.h └── windows-install/ ├── qt5/ │ ├── buildqt5.bat │ ├── buildqt5_github.bat │ ├── codequeryqt5.wxs │ ├── packqt5_github.bat │ └── testqt5_github.bat ├── qt6/ │ ├── buildqt6.bat │ ├── buildqt6_github.bat │ ├── codequeryqt661.wxs │ ├── codequeryqt671.wxs │ ├── codequeryqt690.wxs │ ├── packqt6_github.bat │ └── testqt6_github.bat └── wincommon/ ├── HOWTO-WINDOWS.txt ├── LICENSE.rtf ├── LICENSE.txt ├── README.txt └── uninstall.bat