├── .gitignore ├── .travis.yml ├── AUTHORS ├── BUGS ├── BUILD ├── COMPILERS ├── COPYING ├── ChangeLog ├── ChangeLog.xsl ├── Makefile.am ├── NEWS ├── README ├── README.debian ├── README.release ├── TODO ├── bootstrap ├── bundle.sh.in ├── codeblocks-contrib.metainfo.xml ├── codeblocks.appdata.xml ├── codeblocks.pc.in ├── codeblocks.plist.in ├── codeblocks.spec.fedora.in ├── codeblocks.spec.in ├── configure.ac ├── debian ├── changelog ├── codeblocks-common.install ├── codeblocks-contrib-common.install ├── codeblocks-contrib.install ├── codeblocks-contrib.postinst ├── codeblocks-dev.install ├── codeblocks-libwxcontrib0.install ├── codeblocks-wxcontrib-dev.install ├── codeblocks-wxcontrib-headers.install ├── codeblocks.install ├── codeblocks.menu ├── codeblocks.package ├── codeblocks.postinst ├── codeblocks.sharedmime ├── compat ├── control.in ├── copyright ├── docs ├── get-orig-source ├── get-orig-source-from-svn ├── libcodeblocks0.install ├── libwxsmithlib0.install ├── lintian │ ├── codeblocks │ ├── codeblocks-common │ └── codeblocks-contrib ├── rules ├── setup_control.sh ├── source │ └── format ├── wxsmith-dev.install └── wxsmith-headers.install ├── m4 ├── acinclude.m4 ├── ax_boost_base.m4 ├── ax_boost_system.m4 └── ax_cxx_compile_stdcxx.m4 ├── src ├── CodeBlocks_wx30-unix.cbp ├── CodeBlocks_wx30-unix.workspace ├── CodeBlocks_wx31.cbp ├── CodeBlocks_wx31.workspace ├── CodeBlocks_wx31_64.cbp ├── CodeBlocks_wx31_64.workspace ├── ContribPlugins_wx30-unix.workspace ├── ContribPlugins_wx31.workspace ├── ContribPlugins_wx31_64.workspace ├── Makefile.am ├── base │ ├── Makefile.am │ └── tinyxml │ │ ├── Makefile.am │ │ ├── tinystr.cpp │ │ ├── tinyxml.cpp │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp ├── batch_build_all ├── batch_build_all_31.bat ├── batch_build_all_31_64.bat ├── batch_build_core ├── batch_build_core_31.bat ├── batch_build_core_31_64.bat ├── batch_build_plugins.bat ├── build_tools │ ├── Info.plist │ ├── Makefile.am │ ├── autorevision │ │ ├── Makefile.am │ │ └── autorevision.cpp │ └── scrooge │ │ └── scrooge.cpp ├── exchndl │ ├── win32 │ │ ├── bin │ │ │ ├── addr2line.exe │ │ │ ├── dbgcore.dll │ │ │ ├── dbghelp.dll │ │ │ ├── exchndl.dll │ │ │ ├── mgwhelp.dll │ │ │ ├── symsrv.dll │ │ │ └── symsrv.yes │ │ ├── include │ │ │ └── exchndl.h │ │ └── lib │ │ │ ├── libexchndl.a │ │ │ └── libmgwhelp.a │ └── win64 │ │ ├── bin │ │ ├── addr2line.exe │ │ ├── dbgcore.dll │ │ ├── dbghelp.dll │ │ ├── exchndl.dll │ │ ├── mgwhelp.dll │ │ ├── symsrv.dll │ │ └── symsrv.yes │ │ ├── include │ │ └── exchndl.h │ │ └── lib │ │ ├── libexchndl.a │ │ └── libmgwhelp.a ├── i18n │ ├── byogames.pot │ ├── cb_koders.pot │ ├── codeblocks.pot │ ├── codesnippets.pot │ ├── codestat.pot │ ├── copystrings.pot │ ├── coreplugins.pot │ ├── devpak_plugin.pot │ ├── dragscroll.pot │ ├── extract.bash │ ├── extract.bat │ ├── extract_win.bat │ ├── help_plugin.pot │ ├── keybinder.pot │ ├── profiler.pot │ ├── source_exporter.pot │ └── wxsmith.pot ├── include │ ├── Makefile.am │ ├── annoyingdialog.h │ ├── autodetectcompilers.h │ ├── autorevision.h.in │ ├── backgroundthread.h │ ├── base64.h │ ├── blockallocated.h │ ├── cbart_provider.h │ ├── cbauibook.h │ ├── cbcolourmanager.h │ ├── cbdebugger_interfaces.h │ ├── cbeditor.h │ ├── cbeditorprintout.h │ ├── cbexception.h │ ├── cbexecute.h │ ├── cbfunctor.h │ ├── cbplugin.h │ ├── cbproject.h │ ├── cbstatusbar.h │ ├── cbstyledtextctrl.h │ ├── cbthreadedtask.h │ ├── cbthreadpool.h │ ├── cbtool.h │ ├── cbtreectrl.h │ ├── cbworkspace.h │ ├── ccmanager.h │ ├── compileoptionsbase.h │ ├── compiler.h │ ├── compilercommandgenerator.h │ ├── compilerfactory.h │ ├── compileroptions.h │ ├── compiletargetbase.h │ ├── configmanager.h │ ├── configurationpanel.h │ ├── configuretoolsdlg.h │ ├── confirmreplacedlg.h │ ├── crc32.h │ ├── cygwin.h │ ├── debuggermanager.h │ ├── editarrayfiledlg.h │ ├── editarrayorderdlg.h │ ├── editarraystringdlg.h │ ├── editor_hooks.h │ ├── editor_utils.h │ ├── editorbase.h │ ├── editorcolourset.h │ ├── editorlexerloader.h │ ├── editormanager.h │ ├── editpairdlg.h │ ├── editpathdlg.h │ ├── edittooldlg.h │ ├── encodingdetector.h │ ├── externaldepsdlg.h │ ├── filefilters.h │ ├── filegroupsandmasks.h │ ├── filemanager.h │ ├── findreplacebase.h │ ├── findreplacedlg.h │ ├── genericmultilinenotesdlg.h │ ├── globals.h │ ├── ibaseloader.h │ ├── ibaseworkspaceloader.h │ ├── id.h │ ├── importers_globals.h │ ├── incremental_select_helper.h │ ├── infowindow.h │ ├── licenses.h │ ├── logger.h │ ├── loggers.h │ ├── logmanager.h │ ├── macrosmanager.h │ ├── manager.h │ ├── menuitemsmanager.h │ ├── misctreeitemdata.h │ ├── multiselectdlg.h │ ├── newfromtemplatedlg.h │ ├── personalitymanager.h │ ├── pipedprocess.h │ ├── pluginmanager.h │ ├── pluginsconfigurationdlg.h │ ├── prep.h │ ├── printing_types.h │ ├── projectbuildtarget.h │ ├── projectfile.h │ ├── projectfileoptionsdlg.h │ ├── projectlayoutloader.h │ ├── projectloader.h │ ├── projectloader_hooks.h │ ├── projectmanager.h │ ├── projectsfilemasksdlg.h │ ├── projecttemplateloader.h │ ├── safedelete.h │ ├── scripting │ │ ├── Makefile.am │ │ ├── bindings │ │ │ ├── Makefile.am │ │ │ ├── sc_plugin.h │ │ │ ├── sc_typeinfo_all.h │ │ │ └── sc_utils.h │ │ └── include │ │ │ ├── Makefile.am │ │ │ ├── sqconfig.h │ │ │ ├── sqstdaux.h │ │ │ ├── sqstdblob.h │ │ │ ├── sqstdio.h │ │ │ ├── sqstdmath.h │ │ │ ├── sqstdstring.h │ │ │ ├── sqstdsystem.h │ │ │ └── squirrel.h │ ├── scriptingmanager.h │ ├── scriptsecuritywarningdlg.h │ ├── scrollingdialog.h │ ├── sdk.h │ ├── sdk_common.h │ ├── sdk_events.h │ ├── sdk_precomp.h │ ├── searchresultslog.h │ ├── selecttargetdlg.h │ ├── settings.h │ ├── templatemanager.h │ ├── tinywxuni.h │ ├── tinyxml │ │ ├── Makefile.am │ │ ├── tinystr.h │ │ └── tinyxml.h │ ├── toolsmanager.h │ ├── uservarmanager.h │ ├── workspaceloader.h │ ├── wxstringhash.h │ └── xtra_res.h ├── mac_pack ├── mime │ ├── Makefile.am │ ├── application-x-codeblocks-workspace.png │ ├── application-x-codeblocks.png │ ├── codeblocks.desktop │ ├── codeblocks.png │ └── codeblocks.xml ├── plugins │ ├── Makefile.am │ ├── abbreviations │ │ ├── Makefile.am │ │ ├── abbreviations.cpp │ │ ├── abbreviations.h │ │ ├── abbreviationsconfigpanel.cpp │ │ ├── abbreviationsconfigpanel.h │ │ └── resources │ │ │ ├── Makefile.am │ │ │ ├── abbreviationsconfigpanel.xrc │ │ │ ├── images │ │ │ ├── 16x16 │ │ │ │ └── arrow.png │ │ │ ├── 20x20 │ │ │ │ └── arrow.png │ │ │ ├── 24x24 │ │ │ │ └── arrow.png │ │ │ ├── 28x28 │ │ │ │ └── arrow.png │ │ │ ├── 32x32 │ │ │ │ └── arrow.png │ │ │ ├── 40x40 │ │ │ │ └── arrow.png │ │ │ ├── 48x48 │ │ │ │ └── arrow.png │ │ │ ├── 56x56 │ │ │ │ └── arrow.png │ │ │ └── 64x64 │ │ │ │ └── arrow.png │ │ │ └── manifest.xml │ ├── astyle │ │ ├── Makefile.am │ │ ├── asstreamiterator.cpp │ │ ├── asstreamiterator.h │ │ ├── astyle │ │ │ ├── ASBeautifier.cpp │ │ │ ├── ASEnhancer.cpp │ │ │ ├── ASFormatter.cpp │ │ │ ├── ASLocalizer.cpp │ │ │ ├── ASLocalizer.h │ │ │ ├── ASResource.cpp │ │ │ ├── Makefile │ │ │ ├── astyle.h │ │ │ ├── astyle.html │ │ │ ├── astyle_main.cpp │ │ │ ├── astyle_main.h │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── install.html │ │ │ ├── links.html │ │ │ ├── news.html │ │ │ ├── newsArchives.html │ │ │ ├── notes.html │ │ │ ├── notesArchives.html │ │ │ ├── scripts.html │ │ │ ├── styles.css │ │ │ ├── subversion.html │ │ │ └── vsinstall.html │ │ ├── astyleconfigdlg.cpp │ │ ├── astyleconfigdlg.h │ │ ├── astyleplugin.cpp │ │ ├── astyleplugin.h │ │ ├── astylepredefinedstyles.h │ │ ├── dlgformattersettings.cpp │ │ ├── dlgformattersettings.h │ │ ├── formattersettings.cpp │ │ ├── formattersettings.h │ │ └── resources │ │ │ ├── Makefile.am │ │ │ ├── configuration.xrc │ │ │ └── manifest.xml │ ├── autosave │ │ ├── Makefile.am │ │ ├── autosave.cpp │ │ ├── autosave.h │ │ ├── autosave.xrc │ │ └── manifest.xml │ ├── classwizard │ │ ├── Makefile.am │ │ ├── classwizard.cpp │ │ ├── classwizard.h │ │ ├── classwizarddlg.cpp │ │ ├── classwizarddlg.h │ │ └── resources │ │ │ ├── Makefile.am │ │ │ ├── manifest.xml │ │ │ └── new_class.xrc │ ├── codecompletion │ │ ├── Makefile.am │ │ ├── ccoptionsdlg.cpp │ │ ├── ccoptionsdlg.h │ │ ├── ccoptionsprjdlg.cpp │ │ ├── ccoptionsprjdlg.h │ │ ├── cctest │ │ │ ├── cctest_app.cpp │ │ │ ├── cctest_frame.cpp │ │ │ ├── cctest_frame.h │ │ │ ├── nativeparser_test.cpp │ │ │ ├── nativeparser_test.h │ │ │ ├── resource.rc │ │ │ └── test.h │ │ ├── cctest_wx30-unix.cbp │ │ ├── cctest_wx31.cbp │ │ ├── cctest_wx31_64.cbp │ │ ├── cctreectrl.cpp │ │ ├── cctreectrl.h │ │ ├── classbrowser.cpp │ │ ├── classbrowser.h │ │ ├── classbrowserbuilderthread.cpp │ │ ├── classbrowserbuilderthread.h │ │ ├── codecompletion.cpp │ │ ├── codecompletion.doxy │ │ ├── codecompletion.h │ │ ├── codecompletion_full.doxy │ │ ├── coderefactoring.cpp │ │ ├── coderefactoring.h │ │ ├── doxygen_parser.cpp │ │ ├── doxygen_parser.h │ │ ├── gotofunctiondlg.cpp │ │ ├── gotofunctiondlg.h │ │ ├── insertclassmethoddlg.cpp │ │ ├── insertclassmethoddlg.h │ │ ├── nativeparser.cpp │ │ ├── nativeparser.h │ │ ├── nativeparser_base.cpp │ │ ├── nativeparser_base.h │ │ ├── parser │ │ │ ├── ccdebuginfo.cpp │ │ │ ├── ccdebuginfo.h │ │ │ ├── cclogger.cpp │ │ │ ├── cclogger.h │ │ │ ├── expression.cpp │ │ │ ├── expression.h │ │ │ ├── parser.cpp │ │ │ ├── parser.h │ │ │ ├── parser_base.cpp │ │ │ ├── parser_base.h │ │ │ ├── parserthread.cpp │ │ │ ├── parserthread.h │ │ │ ├── parserthreadedtask.cpp │ │ │ ├── parserthreadedtask.h │ │ │ ├── profiletimer.cpp │ │ │ ├── profiletimer.h │ │ │ ├── searchtree.cpp │ │ │ ├── searchtree.h │ │ │ ├── token.cpp │ │ │ ├── token.h │ │ │ ├── tokenizer.cpp │ │ │ ├── tokenizer.h │ │ │ ├── tokentree.cpp │ │ │ └── tokentree.h │ │ ├── resources │ │ │ ├── Makefile.am │ │ │ ├── classbrowser.xrc │ │ │ ├── codecompletion_toolbar.xrc │ │ │ ├── images │ │ │ │ ├── 16x16 │ │ │ │ │ ├── class.png │ │ │ │ │ ├── class_folder.png │ │ │ │ │ ├── class_private.png │ │ │ │ │ ├── class_protected.png │ │ │ │ │ ├── class_public.png │ │ │ │ │ ├── ctor_private.png │ │ │ │ │ ├── ctor_protected.png │ │ │ │ │ ├── ctor_public.png │ │ │ │ │ ├── dtor_private.png │ │ │ │ │ ├── dtor_protected.png │ │ │ │ │ ├── dtor_public.png │ │ │ │ │ ├── enum.png │ │ │ │ │ ├── enum_private.png │ │ │ │ │ ├── enum_protected.png │ │ │ │ │ ├── enum_public.png │ │ │ │ │ ├── enumerator.png │ │ │ │ │ ├── enums_folder.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_blue.png │ │ │ │ │ ├── folder_blue_open.png │ │ │ │ │ ├── folder_green.png │ │ │ │ │ ├── folder_green_open.png │ │ │ │ │ ├── folder_open.png │ │ │ │ │ ├── funcs_folder.png │ │ │ │ │ ├── header.png │ │ │ │ │ ├── keyword_cpp.png │ │ │ │ │ ├── keyword_d.png │ │ │ │ │ ├── macro_def.png │ │ │ │ │ ├── macro_def_folder.png │ │ │ │ │ ├── macro_use.png │ │ │ │ │ ├── macro_use_folder.png │ │ │ │ │ ├── macro_use_private.png │ │ │ │ │ ├── macro_use_protected.png │ │ │ │ │ ├── macro_use_public.png │ │ │ │ │ ├── method_private.png │ │ │ │ │ ├── method_protected.png │ │ │ │ │ ├── method_public.png │ │ │ │ │ ├── namespace.png │ │ │ │ │ ├── others_folder.png │ │ │ │ │ ├── symbols_folder.png │ │ │ │ │ ├── typedef.png │ │ │ │ │ ├── typedef_private.png │ │ │ │ │ ├── typedef_protected.png │ │ │ │ │ ├── typedef_public.png │ │ │ │ │ ├── typedefs_folder.png │ │ │ │ │ ├── unknown.png │ │ │ │ │ ├── var_private.png │ │ │ │ │ ├── var_protected.png │ │ │ │ │ ├── var_public.png │ │ │ │ │ └── vars_folder.png │ │ │ │ ├── 20x20 │ │ │ │ │ ├── class.png │ │ │ │ │ ├── class_folder.png │ │ │ │ │ ├── class_private.png │ │ │ │ │ ├── class_protected.png │ │ │ │ │ ├── class_public.png │ │ │ │ │ ├── ctor_private.png │ │ │ │ │ ├── ctor_protected.png │ │ │ │ │ ├── ctor_public.png │ │ │ │ │ ├── dtor_private.png │ │ │ │ │ ├── dtor_protected.png │ │ │ │ │ ├── dtor_public.png │ │ │ │ │ ├── enum.png │ │ │ │ │ ├── enum_private.png │ │ │ │ │ ├── enum_protected.png │ │ │ │ │ ├── enum_public.png │ │ │ │ │ ├── enumerator.png │ │ │ │ │ ├── enums_folder.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_blue.png │ │ │ │ │ ├── folder_blue_open.png │ │ │ │ │ ├── folder_green.png │ │ │ │ │ ├── folder_green_open.png │ │ │ │ │ ├── folder_open.png │ │ │ │ │ ├── funcs_folder.png │ │ │ │ │ ├── header.png │ │ │ │ │ ├── keyword_cpp.png │ │ │ │ │ ├── keyword_d.png │ │ │ │ │ ├── macro_def.png │ │ │ │ │ ├── macro_def_folder.png │ │ │ │ │ ├── macro_use.png │ │ │ │ │ ├── macro_use_folder.png │ │ │ │ │ ├── macro_use_private.png │ │ │ │ │ ├── macro_use_protected.png │ │ │ │ │ ├── macro_use_public.png │ │ │ │ │ ├── method_private.png │ │ │ │ │ ├── method_protected.png │ │ │ │ │ ├── method_public.png │ │ │ │ │ ├── namespace.png │ │ │ │ │ ├── others_folder.png │ │ │ │ │ ├── symbols_folder.png │ │ │ │ │ ├── typedef.png │ │ │ │ │ ├── typedef_private.png │ │ │ │ │ ├── typedef_protected.png │ │ │ │ │ ├── typedef_public.png │ │ │ │ │ ├── typedefs_folder.png │ │ │ │ │ ├── unknown.png │ │ │ │ │ ├── var_private.png │ │ │ │ │ ├── var_protected.png │ │ │ │ │ ├── var_public.png │ │ │ │ │ └── vars_folder.png │ │ │ │ ├── 24x24 │ │ │ │ │ ├── class.png │ │ │ │ │ ├── class_folder.png │ │ │ │ │ ├── class_private.png │ │ │ │ │ ├── class_protected.png │ │ │ │ │ ├── class_public.png │ │ │ │ │ ├── ctor_private.png │ │ │ │ │ ├── ctor_protected.png │ │ │ │ │ ├── ctor_public.png │ │ │ │ │ ├── dtor_private.png │ │ │ │ │ ├── dtor_protected.png │ │ │ │ │ ├── dtor_public.png │ │ │ │ │ ├── enum.png │ │ │ │ │ ├── enum_private.png │ │ │ │ │ ├── enum_protected.png │ │ │ │ │ ├── enum_public.png │ │ │ │ │ ├── enumerator.png │ │ │ │ │ ├── enums_folder.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_blue.png │ │ │ │ │ ├── folder_blue_open.png │ │ │ │ │ ├── folder_green.png │ │ │ │ │ ├── folder_green_open.png │ │ │ │ │ ├── folder_open.png │ │ │ │ │ ├── funcs_folder.png │ │ │ │ │ ├── header.png │ │ │ │ │ ├── keyword_cpp.png │ │ │ │ │ ├── keyword_d.png │ │ │ │ │ ├── macro_def.png │ │ │ │ │ ├── macro_def_folder.png │ │ │ │ │ ├── macro_use.png │ │ │ │ │ ├── macro_use_folder.png │ │ │ │ │ ├── macro_use_private.png │ │ │ │ │ ├── macro_use_protected.png │ │ │ │ │ ├── macro_use_public.png │ │ │ │ │ ├── method_private.png │ │ │ │ │ ├── method_protected.png │ │ │ │ │ ├── method_public.png │ │ │ │ │ ├── namespace.png │ │ │ │ │ ├── others_folder.png │ │ │ │ │ ├── symbols_folder.png │ │ │ │ │ ├── typedef.png │ │ │ │ │ ├── typedef_private.png │ │ │ │ │ ├── typedef_protected.png │ │ │ │ │ ├── typedef_public.png │ │ │ │ │ ├── typedefs_folder.png │ │ │ │ │ ├── unknown.png │ │ │ │ │ ├── var_private.png │ │ │ │ │ ├── var_protected.png │ │ │ │ │ ├── var_public.png │ │ │ │ │ └── vars_folder.png │ │ │ │ ├── 28x28 │ │ │ │ │ ├── class.png │ │ │ │ │ ├── class_folder.png │ │ │ │ │ ├── class_private.png │ │ │ │ │ ├── class_protected.png │ │ │ │ │ ├── class_public.png │ │ │ │ │ ├── ctor_private.png │ │ │ │ │ ├── ctor_protected.png │ │ │ │ │ ├── ctor_public.png │ │ │ │ │ ├── dtor_private.png │ │ │ │ │ ├── dtor_protected.png │ │ │ │ │ ├── dtor_public.png │ │ │ │ │ ├── enum.png │ │ │ │ │ ├── enum_private.png │ │ │ │ │ ├── enum_protected.png │ │ │ │ │ ├── enum_public.png │ │ │ │ │ ├── enumerator.png │ │ │ │ │ ├── enums_folder.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_blue.png │ │ │ │ │ ├── folder_blue_open.png │ │ │ │ │ ├── folder_green.png │ │ │ │ │ ├── folder_green_open.png │ │ │ │ │ ├── folder_open.png │ │ │ │ │ ├── funcs_folder.png │ │ │ │ │ ├── header.png │ │ │ │ │ ├── keyword_cpp.png │ │ │ │ │ ├── keyword_d.png │ │ │ │ │ ├── macro_def.png │ │ │ │ │ ├── macro_def_folder.png │ │ │ │ │ ├── macro_use.png │ │ │ │ │ ├── macro_use_folder.png │ │ │ │ │ ├── macro_use_private.png │ │ │ │ │ ├── macro_use_protected.png │ │ │ │ │ ├── macro_use_public.png │ │ │ │ │ ├── method_private.png │ │ │ │ │ ├── method_protected.png │ │ │ │ │ ├── method_public.png │ │ │ │ │ ├── namespace.png │ │ │ │ │ ├── others_folder.png │ │ │ │ │ ├── symbols_folder.png │ │ │ │ │ ├── typedef.png │ │ │ │ │ ├── typedef_private.png │ │ │ │ │ ├── typedef_protected.png │ │ │ │ │ ├── typedef_public.png │ │ │ │ │ ├── typedefs_folder.png │ │ │ │ │ ├── unknown.png │ │ │ │ │ ├── var_private.png │ │ │ │ │ ├── var_protected.png │ │ │ │ │ ├── var_public.png │ │ │ │ │ └── vars_folder.png │ │ │ │ ├── 32x32 │ │ │ │ │ ├── class.png │ │ │ │ │ ├── class_folder.png │ │ │ │ │ ├── class_private.png │ │ │ │ │ ├── class_protected.png │ │ │ │ │ ├── class_public.png │ │ │ │ │ ├── ctor_private.png │ │ │ │ │ ├── ctor_protected.png │ │ │ │ │ ├── ctor_public.png │ │ │ │ │ ├── dtor_private.png │ │ │ │ │ ├── dtor_protected.png │ │ │ │ │ ├── dtor_public.png │ │ │ │ │ ├── enum.png │ │ │ │ │ ├── enum_private.png │ │ │ │ │ ├── enum_protected.png │ │ │ │ │ ├── enum_public.png │ │ │ │ │ ├── enumerator.png │ │ │ │ │ ├── enums_folder.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_blue.png │ │ │ │ │ ├── folder_blue_open.png │ │ │ │ │ ├── folder_green.png │ │ │ │ │ ├── folder_green_open.png │ │ │ │ │ ├── folder_open.png │ │ │ │ │ ├── funcs_folder.png │ │ │ │ │ ├── header.png │ │ │ │ │ ├── keyword_cpp.png │ │ │ │ │ ├── keyword_d.png │ │ │ │ │ ├── macro_def.png │ │ │ │ │ ├── macro_def_folder.png │ │ │ │ │ ├── macro_use.png │ │ │ │ │ ├── macro_use_folder.png │ │ │ │ │ ├── macro_use_private.png │ │ │ │ │ ├── macro_use_protected.png │ │ │ │ │ ├── macro_use_public.png │ │ │ │ │ ├── method_private.png │ │ │ │ │ ├── method_protected.png │ │ │ │ │ ├── method_public.png │ │ │ │ │ ├── namespace.png │ │ │ │ │ ├── others_folder.png │ │ │ │ │ ├── symbols_folder.png │ │ │ │ │ ├── typedef.png │ │ │ │ │ ├── typedef_private.png │ │ │ │ │ ├── typedef_protected.png │ │ │ │ │ ├── typedef_public.png │ │ │ │ │ ├── typedefs_folder.png │ │ │ │ │ ├── unknown.png │ │ │ │ │ ├── var_private.png │ │ │ │ │ ├── var_protected.png │ │ │ │ │ ├── var_public.png │ │ │ │ │ └── vars_folder.png │ │ │ │ ├── 40x40 │ │ │ │ │ ├── class.png │ │ │ │ │ ├── class_folder.png │ │ │ │ │ ├── class_private.png │ │ │ │ │ ├── class_protected.png │ │ │ │ │ ├── class_public.png │ │ │ │ │ ├── ctor_private.png │ │ │ │ │ ├── ctor_protected.png │ │ │ │ │ ├── ctor_public.png │ │ │ │ │ ├── dtor_private.png │ │ │ │ │ ├── dtor_protected.png │ │ │ │ │ ├── dtor_public.png │ │ │ │ │ ├── enum.png │ │ │ │ │ ├── enum_private.png │ │ │ │ │ ├── enum_protected.png │ │ │ │ │ ├── enum_public.png │ │ │ │ │ ├── enumerator.png │ │ │ │ │ ├── enums_folder.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_blue.png │ │ │ │ │ ├── folder_blue_open.png │ │ │ │ │ ├── folder_green.png │ │ │ │ │ ├── folder_green_open.png │ │ │ │ │ ├── folder_open.png │ │ │ │ │ ├── funcs_folder.png │ │ │ │ │ ├── header.png │ │ │ │ │ ├── keyword_cpp.png │ │ │ │ │ ├── keyword_d.png │ │ │ │ │ ├── macro_def.png │ │ │ │ │ ├── macro_def_folder.png │ │ │ │ │ ├── macro_use.png │ │ │ │ │ ├── macro_use_folder.png │ │ │ │ │ ├── macro_use_private.png │ │ │ │ │ ├── macro_use_protected.png │ │ │ │ │ ├── macro_use_public.png │ │ │ │ │ ├── method_private.png │ │ │ │ │ ├── method_protected.png │ │ │ │ │ ├── method_public.png │ │ │ │ │ ├── namespace.png │ │ │ │ │ ├── others_folder.png │ │ │ │ │ ├── symbols_folder.png │ │ │ │ │ ├── typedef.png │ │ │ │ │ ├── typedef_private.png │ │ │ │ │ ├── typedef_protected.png │ │ │ │ │ ├── typedef_public.png │ │ │ │ │ ├── typedefs_folder.png │ │ │ │ │ ├── unknown.png │ │ │ │ │ ├── var_private.png │ │ │ │ │ ├── var_protected.png │ │ │ │ │ ├── var_public.png │ │ │ │ │ └── vars_folder.png │ │ │ │ ├── 48x48 │ │ │ │ │ ├── class.png │ │ │ │ │ ├── class_folder.png │ │ │ │ │ ├── class_private.png │ │ │ │ │ ├── class_protected.png │ │ │ │ │ ├── class_public.png │ │ │ │ │ ├── ctor_private.png │ │ │ │ │ ├── ctor_protected.png │ │ │ │ │ ├── ctor_public.png │ │ │ │ │ ├── dtor_private.png │ │ │ │ │ ├── dtor_protected.png │ │ │ │ │ ├── dtor_public.png │ │ │ │ │ ├── enum.png │ │ │ │ │ ├── enum_private.png │ │ │ │ │ ├── enum_protected.png │ │ │ │ │ ├── enum_public.png │ │ │ │ │ ├── enumerator.png │ │ │ │ │ ├── enums_folder.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_blue.png │ │ │ │ │ ├── folder_blue_open.png │ │ │ │ │ ├── folder_green.png │ │ │ │ │ ├── folder_green_open.png │ │ │ │ │ ├── folder_open.png │ │ │ │ │ ├── funcs_folder.png │ │ │ │ │ ├── header.png │ │ │ │ │ ├── keyword_cpp.png │ │ │ │ │ ├── keyword_d.png │ │ │ │ │ ├── macro_def.png │ │ │ │ │ ├── macro_def_folder.png │ │ │ │ │ ├── macro_use.png │ │ │ │ │ ├── macro_use_folder.png │ │ │ │ │ ├── macro_use_private.png │ │ │ │ │ ├── macro_use_protected.png │ │ │ │ │ ├── macro_use_public.png │ │ │ │ │ ├── method_private.png │ │ │ │ │ ├── method_protected.png │ │ │ │ │ ├── method_public.png │ │ │ │ │ ├── namespace.png │ │ │ │ │ ├── others_folder.png │ │ │ │ │ ├── symbols_folder.png │ │ │ │ │ ├── typedef.png │ │ │ │ │ ├── typedef_private.png │ │ │ │ │ ├── typedef_protected.png │ │ │ │ │ ├── typedef_public.png │ │ │ │ │ ├── typedefs_folder.png │ │ │ │ │ ├── unknown.png │ │ │ │ │ ├── var_private.png │ │ │ │ │ ├── var_protected.png │ │ │ │ │ ├── var_public.png │ │ │ │ │ └── vars_folder.png │ │ │ │ ├── 56x56 │ │ │ │ │ ├── class.png │ │ │ │ │ ├── class_folder.png │ │ │ │ │ ├── class_private.png │ │ │ │ │ ├── class_protected.png │ │ │ │ │ ├── class_public.png │ │ │ │ │ ├── ctor_private.png │ │ │ │ │ ├── ctor_protected.png │ │ │ │ │ ├── ctor_public.png │ │ │ │ │ ├── dtor_private.png │ │ │ │ │ ├── dtor_protected.png │ │ │ │ │ ├── dtor_public.png │ │ │ │ │ ├── enum.png │ │ │ │ │ ├── enum_private.png │ │ │ │ │ ├── enum_protected.png │ │ │ │ │ ├── enum_public.png │ │ │ │ │ ├── enumerator.png │ │ │ │ │ ├── enums_folder.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_blue.png │ │ │ │ │ ├── folder_blue_open.png │ │ │ │ │ ├── folder_green.png │ │ │ │ │ ├── folder_green_open.png │ │ │ │ │ ├── folder_open.png │ │ │ │ │ ├── funcs_folder.png │ │ │ │ │ ├── header.png │ │ │ │ │ ├── keyword_cpp.png │ │ │ │ │ ├── keyword_d.png │ │ │ │ │ ├── macro_def.png │ │ │ │ │ ├── macro_def_folder.png │ │ │ │ │ ├── macro_use.png │ │ │ │ │ ├── macro_use_folder.png │ │ │ │ │ ├── macro_use_private.png │ │ │ │ │ ├── macro_use_protected.png │ │ │ │ │ ├── macro_use_public.png │ │ │ │ │ ├── method_private.png │ │ │ │ │ ├── method_protected.png │ │ │ │ │ ├── method_public.png │ │ │ │ │ ├── namespace.png │ │ │ │ │ ├── others_folder.png │ │ │ │ │ ├── symbols_folder.png │ │ │ │ │ ├── typedef.png │ │ │ │ │ ├── typedef_private.png │ │ │ │ │ ├── typedef_protected.png │ │ │ │ │ ├── typedef_public.png │ │ │ │ │ ├── typedefs_folder.png │ │ │ │ │ ├── unknown.png │ │ │ │ │ ├── var_private.png │ │ │ │ │ ├── var_protected.png │ │ │ │ │ ├── var_public.png │ │ │ │ │ └── vars_folder.png │ │ │ │ └── 64x64 │ │ │ │ │ ├── class.png │ │ │ │ │ ├── class_folder.png │ │ │ │ │ ├── class_private.png │ │ │ │ │ ├── class_protected.png │ │ │ │ │ ├── class_public.png │ │ │ │ │ ├── ctor_private.png │ │ │ │ │ ├── ctor_protected.png │ │ │ │ │ ├── ctor_public.png │ │ │ │ │ ├── dtor_private.png │ │ │ │ │ ├── dtor_protected.png │ │ │ │ │ ├── dtor_public.png │ │ │ │ │ ├── enum.png │ │ │ │ │ ├── enum_private.png │ │ │ │ │ ├── enum_protected.png │ │ │ │ │ ├── enum_public.png │ │ │ │ │ ├── enumerator.png │ │ │ │ │ ├── enums_folder.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_blue.png │ │ │ │ │ ├── folder_blue_open.png │ │ │ │ │ ├── folder_green.png │ │ │ │ │ ├── folder_green_open.png │ │ │ │ │ ├── folder_open.png │ │ │ │ │ ├── funcs_folder.png │ │ │ │ │ ├── header.png │ │ │ │ │ ├── keyword_cpp.png │ │ │ │ │ ├── keyword_d.png │ │ │ │ │ ├── macro_def.png │ │ │ │ │ ├── macro_def_folder.png │ │ │ │ │ ├── macro_use.png │ │ │ │ │ ├── macro_use_folder.png │ │ │ │ │ ├── macro_use_private.png │ │ │ │ │ ├── macro_use_protected.png │ │ │ │ │ ├── macro_use_public.png │ │ │ │ │ ├── method_private.png │ │ │ │ │ ├── method_protected.png │ │ │ │ │ ├── method_public.png │ │ │ │ │ ├── namespace.png │ │ │ │ │ ├── others_folder.png │ │ │ │ │ ├── symbols_folder.png │ │ │ │ │ ├── typedef.png │ │ │ │ │ ├── typedef_private.png │ │ │ │ │ ├── typedef_protected.png │ │ │ │ │ ├── typedef_public.png │ │ │ │ │ ├── typedefs_folder.png │ │ │ │ │ ├── unknown.png │ │ │ │ │ ├── var_private.png │ │ │ │ │ ├── var_protected.png │ │ │ │ │ ├── var_public.png │ │ │ │ │ └── vars_folder.png │ │ │ ├── insert_class_method.xrc │ │ │ ├── manifest.xml │ │ │ ├── project_settings.xrc │ │ │ ├── selectincludefile.xrc │ │ │ └── settings.xrc │ │ ├── selectincludefile.cpp │ │ ├── selectincludefile.h │ │ ├── systemheadersthread.cpp │ │ ├── systemheadersthread.h │ │ ├── testing │ │ │ ├── TESTING.workspace │ │ │ ├── cc_complex_declaration.cpp │ │ │ ├── cc_enum_c++11.cpp │ │ │ ├── cc_enumerator.cpp │ │ │ ├── cc_function_decl_list.cpp │ │ │ ├── cc_function_decls.cpp │ │ │ ├── cc_function_ptr.cpp │ │ │ ├── cc_function_ptr_com_interface.cpp │ │ │ ├── cc_function_return_enum.cpp │ │ │ ├── cc_loop_variables.cpp │ │ │ ├── cc_macro_expansion.cpp │ │ │ ├── cc_macro_expansion_infinite_loop.cpp │ │ │ ├── cc_macro_expansion_stringize.cpp │ │ │ ├── cc_mfc_expand_event_table.cpp │ │ │ ├── cc_namespaces.cpp │ │ │ ├── cc_parse_doxygen_document.cpp │ │ │ ├── cc_preprocessor.cpp │ │ │ ├── cc_recursive_macro_expand.cpp │ │ │ ├── cc_stl_container_template_.cpp │ │ │ ├── cc_structs.cpp │ │ │ ├── cc_structs_instances_declared.cpp │ │ │ ├── cc_type_alias.cpp │ │ │ ├── cc_type_with_attributes.cpp │ │ │ ├── cc_typedef_declaration.cpp │ │ │ ├── cc_typedef_pointer.cpp │ │ │ ├── cc_unnamed_class.cpp │ │ │ ├── cc_wx_event_handler_macro.cpp │ │ │ ├── cc_x_macro.cpp │ │ │ ├── codecompletion_test_result.txt │ │ │ ├── duplicate_header.cbp │ │ │ ├── duplicate_header.cpp │ │ │ ├── duplicate_header │ │ │ │ ├── P │ │ │ │ │ ├── C.h │ │ │ │ │ └── M_C.h │ │ │ │ └── P_M_C │ │ │ │ │ └── C.h │ │ │ ├── enumerator.cbp │ │ │ ├── enumerator.cpp │ │ │ ├── function_args.cbp │ │ │ ├── function_args.cpp │ │ │ ├── function_decls.cbp │ │ │ ├── function_decls.cpp │ │ │ ├── impl_decl.cbp │ │ │ ├── impl_decl.cpp │ │ │ ├── impl_decl.h │ │ │ ├── impl_decl_main.cpp │ │ │ ├── namespaces.cbp │ │ │ ├── namespaces.cpp │ │ │ ├── namespaces.h │ │ │ ├── namespaces_main.cpp │ │ │ ├── preprocessors.cbp │ │ │ ├── preprocessors.cpp │ │ │ ├── stl.cbp │ │ │ ├── stl.cpp │ │ │ ├── stl_namespace.cpp │ │ │ ├── structs_typedefs_enums.cbp │ │ │ └── structs_typedefs_enums.cpp │ │ └── wxsmith │ │ │ ├── CCTestFrame.wxs │ │ │ └── goto_function.wxs │ ├── compilergcc │ │ ├── Makefile.am │ │ ├── advancedcompileroptionsdlg.cpp │ │ ├── advancedcompileroptionsdlg.h │ │ ├── compilerCYGWIN.cpp │ │ ├── compilerCYGWIN.h │ │ ├── compilerG95.cpp │ │ ├── compilerG95.h │ │ ├── compilerGDC.cpp │ │ ├── compilerGDC.h │ │ ├── compilerGNUARM.cpp │ │ ├── compilerGNUARM.h │ │ ├── compilerGNUFortran.cpp │ │ ├── compilerGNUFortran.h │ │ ├── compilerIAR.cpp │ │ ├── compilerIAR.h │ │ ├── compilerICC.cpp │ │ ├── compilerICC.h │ │ ├── compilerKeilC51.cpp │ │ ├── compilerKeilC51.h │ │ ├── compilerLCC.cpp │ │ ├── compilerLCC.h │ │ ├── compilerMINGW.cpp │ │ ├── compilerMINGW.h │ │ ├── compilerMINGWgenerator.cpp │ │ ├── compilerMINGWgenerator.h │ │ ├── compilerMSVC.cpp │ │ ├── compilerMSVC.h │ │ ├── compilerMSVC10.cpp │ │ ├── compilerMSVC10.h │ │ ├── compilerMSVC8.cpp │ │ ├── compilerMSVC8.h │ │ ├── compilerOW.cpp │ │ ├── compilerOW.h │ │ ├── compilerOWgenerator.cpp │ │ ├── compilerOWgenerator.h │ │ ├── compilerXML.cpp │ │ ├── compilerXML.h │ │ ├── compiler_defs.cpp │ │ ├── compiler_defs.h │ │ ├── compilererrors.cpp │ │ ├── compilererrors.h │ │ ├── compilerflagdlg.cpp │ │ ├── compilerflagdlg.h │ │ ├── compilergcc.cpp │ │ ├── compilergcc.h │ │ ├── compilermessages.cpp │ │ ├── compilermessages.h │ │ ├── compileroptionsdlg.cpp │ │ ├── compileroptionsdlg.h │ │ ├── depslib │ │ │ ├── Makefile.am │ │ │ └── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── alloc.c │ │ │ │ ├── alloc.h │ │ │ │ ├── cache.c │ │ │ │ ├── cache.h │ │ │ │ ├── depslib.c │ │ │ │ ├── depslib.h │ │ │ │ ├── filent.c │ │ │ │ ├── filesys.h │ │ │ │ ├── fileunix.c │ │ │ │ ├── hash.c │ │ │ │ ├── hash.h │ │ │ │ ├── headers.c │ │ │ │ ├── headers.h │ │ │ │ ├── jam.h │ │ │ │ ├── lists.c │ │ │ │ ├── lists.h │ │ │ │ ├── main.c │ │ │ │ ├── newstr.c │ │ │ │ ├── newstr.h │ │ │ │ ├── pathsplit.c │ │ │ │ ├── pathsplit.h │ │ │ │ ├── pathsys.h │ │ │ │ ├── pathunix.c │ │ │ │ ├── regexp.c │ │ │ │ ├── regexp.h │ │ │ │ ├── search.c │ │ │ │ ├── search.h │ │ │ │ ├── timestamp.c │ │ │ │ └── timestamp.h │ │ ├── directcommands.cpp │ │ ├── directcommands.h │ │ └── resources │ │ │ ├── Makefile.am │ │ │ ├── advanced_compiler_options.xrc │ │ │ ├── compiler_flag.xrc │ │ │ ├── compiler_menu.xrc │ │ │ ├── compiler_options.xrc │ │ │ ├── compiler_toolbar.xrc │ │ │ ├── compilers │ │ │ ├── compiler_android-gcc.xml │ │ │ ├── compiler_avr-gcc.xml │ │ │ ├── compiler_bcc.xml │ │ │ ├── compiler_bfin-elf-gcc.xml │ │ │ ├── compiler_clang.xml │ │ │ ├── compiler_dmc.xml │ │ │ ├── compiler_dmd.xml │ │ │ ├── compiler_ldc.xml │ │ │ ├── compiler_lm32-gcc.xml │ │ │ ├── compiler_lm8-gcc.xml │ │ │ ├── compiler_msp430-gcc.xml │ │ │ ├── compiler_mw.xml │ │ │ ├── compiler_null.xml │ │ │ ├── compiler_pgifortran.xml │ │ │ ├── compiler_powerpc-eabi.xml │ │ │ ├── compiler_ppc-gcc.xml │ │ │ ├── compiler_sdcc.xml │ │ │ ├── compiler_tcc.xml │ │ │ ├── compiler_tricore-gcc.xml │ │ │ ├── compiler_zpu-gcc.xml │ │ │ ├── options_android-gcc.xml │ │ │ ├── options_arm-elf-gcc.xml │ │ │ ├── options_avr-gcc.xml │ │ │ ├── options_bcc.xml │ │ │ ├── options_bfin-elf-gcc.xml │ │ │ ├── options_clang.xml │ │ │ ├── options_common_architecture.xml │ │ │ ├── options_common_cmds.xml │ │ │ ├── options_common_codegen.xml │ │ │ ├── options_common_optimization.xml │ │ │ ├── options_common_optimize-msvc.xml │ │ │ ├── options_common_re-gf.xml │ │ │ ├── options_common_re-iar.xml │ │ │ ├── options_common_re-msvc.xml │ │ │ ├── options_common_re.xml │ │ │ ├── options_common_runtime.xml │ │ │ ├── options_common_sort.xml │ │ │ ├── options_common_warnings-msvc.xml │ │ │ ├── options_common_warnings.xml │ │ │ ├── options_cygwin.xml │ │ │ ├── options_dmc.xml │ │ │ ├── options_dmd.xml │ │ │ ├── options_g95.xml │ │ │ ├── options_gcc.xml │ │ │ ├── options_gdc.xml │ │ │ ├── options_gfortran.xml │ │ │ ├── options_iar8051.xml │ │ │ ├── options_iararm.xml │ │ │ ├── options_icc.xml │ │ │ ├── options_keilc51.xml │ │ │ ├── options_keilcx51.xml │ │ │ ├── options_lcc.xml │ │ │ ├── options_ldc.xml │ │ │ ├── options_lm32-gcc.xml │ │ │ ├── options_lm8-gcc.xml │ │ │ ├── options_msp430-gcc.xml │ │ │ ├── options_msvc10.xml │ │ │ ├── options_msvc8.xml │ │ │ ├── options_msvctk.xml │ │ │ ├── options_mw.xml │ │ │ ├── options_null.xml │ │ │ ├── options_ow.xml │ │ │ ├── options_pgifortran.xml │ │ │ ├── options_powerpc-eabi.xml │ │ │ ├── options_ppc-gcc.xml │ │ │ ├── options_sdcc.xml │ │ │ ├── options_tcc.xml │ │ │ ├── options_tricore-gcc.xml │ │ │ └── options_zpu-gcc.xml │ │ │ ├── images │ │ │ ├── 16x16 │ │ │ │ ├── compile.png │ │ │ │ ├── compiler.xcf │ │ │ │ ├── compilerun.png │ │ │ │ ├── rebuild.png │ │ │ │ ├── run.png │ │ │ │ └── stop.png │ │ │ ├── 20x20 │ │ │ │ ├── compile.png │ │ │ │ ├── compilerun.png │ │ │ │ ├── rebuild.png │ │ │ │ ├── run.png │ │ │ │ └── stop.png │ │ │ ├── 24x24 │ │ │ │ ├── compile.png │ │ │ │ ├── compilerun.png │ │ │ │ ├── rebuild.png │ │ │ │ ├── run.png │ │ │ │ └── stop.png │ │ │ ├── 28x28 │ │ │ │ ├── compile.png │ │ │ │ ├── compilerun.png │ │ │ │ ├── rebuild.png │ │ │ │ ├── run.png │ │ │ │ └── stop.png │ │ │ ├── 32x32 │ │ │ │ ├── compile.png │ │ │ │ ├── compilerun.png │ │ │ │ ├── rebuild.png │ │ │ │ ├── run.png │ │ │ │ └── stop.png │ │ │ ├── 40x40 │ │ │ │ ├── compile.png │ │ │ │ ├── compilerun.png │ │ │ │ ├── rebuild.png │ │ │ │ ├── run.png │ │ │ │ └── stop.png │ │ │ ├── 48x48 │ │ │ │ ├── compile.png │ │ │ │ ├── compilerun.png │ │ │ │ ├── rebuild.png │ │ │ │ ├── run.png │ │ │ │ └── stop.png │ │ │ ├── 56x56 │ │ │ │ ├── compile.png │ │ │ │ ├── compilerun.png │ │ │ │ ├── rebuild.png │ │ │ │ ├── run.png │ │ │ │ └── stop.png │ │ │ └── 64x64 │ │ │ │ ├── compile.png │ │ │ │ ├── compilerun.png │ │ │ │ ├── rebuild.png │ │ │ │ ├── run.png │ │ │ │ └── stop.png │ │ │ └── manifest.xml │ ├── contrib │ │ ├── AutoVersioning │ │ │ ├── AutoVersioning.cpp │ │ │ ├── AutoVersioning.h │ │ │ ├── AutoVersioning_wx30-unix.cbp │ │ │ ├── AutoVersioning_wx31.cbp │ │ │ ├── AutoVersioning_wx31_64.cbp │ │ │ ├── Makefile.am │ │ │ ├── avChangesDlg.cpp │ │ │ ├── avChangesDlg.h │ │ │ ├── avConfig.h │ │ │ ├── avHeader.cpp │ │ │ ├── avHeader.h │ │ │ ├── avSvnRevision.cpp │ │ │ ├── avSvnRevision.h │ │ │ ├── avVersionEditorDlg.cpp │ │ │ ├── avVersionEditorDlg.h │ │ │ ├── manifest.xml │ │ │ └── wxsmith │ │ │ │ ├── avChangesDlg.wxs │ │ │ │ └── avVersionEditorDlg.wxs │ │ ├── BrowseTracker │ │ │ ├── BrowseMarks.cpp │ │ │ ├── BrowseMarks.h │ │ │ ├── BrowseSelector.cpp │ │ │ ├── BrowseSelector.h │ │ │ ├── BrowseTracker.cpp │ │ │ ├── BrowseTracker.h │ │ │ ├── BrowseTrackerConfPanel.cpp │ │ │ ├── BrowseTrackerConfPanel.h │ │ │ ├── BrowseTrackerDefs.h │ │ │ ├── BrowseTrackerLayout.cpp │ │ │ ├── BrowseTrackerLayout.h │ │ │ ├── BrowseTrackerToolbar.xrc │ │ │ ├── BrowseTracker_wx30-unix.cbp │ │ │ ├── BrowseTracker_wx31.cbp │ │ │ ├── BrowseTracker_wx31_64.cbp │ │ │ ├── ConfigPanel.cpp │ │ │ ├── ConfigPanel.h │ │ │ ├── FormBuilder │ │ │ │ ├── BrowseTrackerCfg2.fbp │ │ │ │ ├── ConfigPanel.cpp │ │ │ │ └── ConfigPanel.h │ │ │ ├── JumpData.cpp │ │ │ ├── JumpData.h │ │ │ ├── JumpTracker.cpp │ │ │ ├── JumpTracker.h │ │ │ ├── Makefile.am │ │ │ ├── ProjectData.cpp │ │ │ ├── ProjectData.h │ │ │ ├── Version.cpp │ │ │ ├── Version.h │ │ │ ├── browsetracker-off.png │ │ │ ├── browsetracker.png │ │ │ ├── btswitcherdlg.cpp │ │ │ ├── btswitcherdlg.h │ │ │ ├── images │ │ │ │ ├── 16x16 │ │ │ │ │ ├── mark.png │ │ │ │ │ ├── mark_clear.png │ │ │ │ │ ├── mark_next.png │ │ │ │ │ ├── mark_prev.png │ │ │ │ │ ├── next.png │ │ │ │ │ ├── prev.png │ │ │ │ │ └── signpost.png │ │ │ │ ├── 20x20 │ │ │ │ │ ├── mark.png │ │ │ │ │ ├── mark_clear.png │ │ │ │ │ ├── mark_next.png │ │ │ │ │ ├── mark_prev.png │ │ │ │ │ ├── next.png │ │ │ │ │ ├── prev.png │ │ │ │ │ └── signpost.png │ │ │ │ ├── 24x24 │ │ │ │ │ ├── mark.png │ │ │ │ │ ├── mark_clear.png │ │ │ │ │ ├── mark_next.png │ │ │ │ │ ├── mark_prev.png │ │ │ │ │ ├── next.png │ │ │ │ │ ├── prev.png │ │ │ │ │ └── signpost.png │ │ │ │ ├── 28x28 │ │ │ │ │ ├── mark.png │ │ │ │ │ ├── mark_clear.png │ │ │ │ │ ├── mark_next.png │ │ │ │ │ ├── mark_prev.png │ │ │ │ │ ├── next.png │ │ │ │ │ ├── prev.png │ │ │ │ │ └── signpost.png │ │ │ │ ├── 32x32 │ │ │ │ │ ├── mark.png │ │ │ │ │ ├── mark_clear.png │ │ │ │ │ ├── mark_next.png │ │ │ │ │ ├── mark_prev.png │ │ │ │ │ ├── next.png │ │ │ │ │ ├── prev.png │ │ │ │ │ └── signpost.png │ │ │ │ ├── 40x40 │ │ │ │ │ ├── mark.png │ │ │ │ │ ├── mark_clear.png │ │ │ │ │ ├── mark_next.png │ │ │ │ │ ├── mark_prev.png │ │ │ │ │ ├── next.png │ │ │ │ │ ├── prev.png │ │ │ │ │ └── signpost.png │ │ │ │ ├── 48x48 │ │ │ │ │ ├── mark.png │ │ │ │ │ ├── mark_clear.png │ │ │ │ │ ├── mark_next.png │ │ │ │ │ ├── mark_prev.png │ │ │ │ │ ├── next.png │ │ │ │ │ ├── prev.png │ │ │ │ │ └── signpost.png │ │ │ │ ├── 56x56 │ │ │ │ │ ├── mark.png │ │ │ │ │ ├── mark_clear.png │ │ │ │ │ ├── mark_next.png │ │ │ │ │ ├── mark_prev.png │ │ │ │ │ ├── next.png │ │ │ │ │ ├── prev.png │ │ │ │ │ └── signpost.png │ │ │ │ └── 64x64 │ │ │ │ │ ├── mark.png │ │ │ │ │ ├── mark_clear.png │ │ │ │ │ ├── mark_next.png │ │ │ │ │ ├── mark_prev.png │ │ │ │ │ ├── next.png │ │ │ │ │ ├── prev.png │ │ │ │ │ └── signpost.png │ │ │ ├── manifest.xml │ │ │ └── wx_pch.h │ │ ├── Cccc │ │ │ ├── Cccc.cpp │ │ │ ├── Cccc.h │ │ │ ├── Cccc_wx30-unix.cbp │ │ │ ├── Cccc_wx31.cbp │ │ │ ├── Cccc_wx31_64.cbp │ │ │ ├── Makefile.am │ │ │ └── resources │ │ │ │ ├── Makefile.am │ │ │ │ └── manifest.xml │ │ ├── CppCheck │ │ │ ├── ConfigPanel.cpp │ │ │ ├── ConfigPanel.h │ │ │ ├── CppCheck.cpp │ │ │ ├── CppCheck.h │ │ │ ├── CppCheckListLog.cpp │ │ │ ├── CppCheckListLog.h │ │ │ ├── CppCheck_wx30-unix.cbp │ │ │ ├── CppCheck_wx31.cbp │ │ │ ├── CppCheck_wx31_64.cbp │ │ │ ├── Makefile.am │ │ │ ├── resources │ │ │ │ ├── Makefile.am │ │ │ │ └── manifest.xml │ │ │ └── wxsmith │ │ │ │ └── ConfigPanel.wxs │ │ ├── Cscope │ │ │ ├── CscopeConfig.cpp │ │ │ ├── CscopeConfig.h │ │ │ ├── CscopeConfigPanel.cpp │ │ │ ├── CscopeConfigPanel.h │ │ │ ├── CscopeEntryData.cpp │ │ │ ├── CscopeEntryData.h │ │ │ ├── CscopeParserThread.cpp │ │ │ ├── CscopeParserThread.h │ │ │ ├── CscopePlugin.cpp │ │ │ ├── CscopePlugin.h │ │ │ ├── CscopeProcess.cpp │ │ │ ├── CscopeProcess.h │ │ │ ├── CscopeStatusMessage.cpp │ │ │ ├── CscopeStatusMessage.h │ │ │ ├── CscopeTab.cpp │ │ │ ├── CscopeTab.h │ │ │ ├── CscopeView.cpp │ │ │ ├── CscopeView.h │ │ │ ├── Cscope_wx30-unix.cbp │ │ │ ├── Cscope_wx31.cbp │ │ │ ├── Cscope_wx31_64.cbp │ │ │ ├── Makefile.am │ │ │ ├── manifest.xml │ │ │ └── wxsmith │ │ │ │ └── CscopeConfigPanel.wxs │ │ ├── DoxyBlocks │ │ │ ├── AutoDoc.cpp │ │ │ ├── ChangeLog.txt │ │ │ ├── Config.cpp │ │ │ ├── Config.h │ │ │ ├── ConfigPanel.cpp │ │ │ ├── ConfigPanel.h │ │ │ ├── DoxyBlocks-off.png │ │ │ ├── DoxyBlocks.cpp │ │ │ ├── DoxyBlocks.h │ │ │ ├── DoxyBlocks.png │ │ │ ├── DoxyBlocks.rc │ │ │ ├── DoxyBlocksLogger.cpp │ │ │ ├── DoxyBlocksLogger.h │ │ │ ├── DoxyBlocks_wx30-unix.cbp │ │ │ ├── DoxyBlocks_wx31.cbp │ │ │ ├── DoxyBlocks_wx31_64.cbp │ │ │ ├── Expressions.h │ │ │ ├── ExtractDocs.cpp │ │ │ ├── Makefile.am │ │ │ ├── doxyblocks.mo │ │ │ ├── doxyblocks.po │ │ │ ├── gpl.txt │ │ │ ├── images │ │ │ │ ├── 16x16 │ │ │ │ │ ├── chm.png │ │ │ │ │ ├── comment_block.png │ │ │ │ │ ├── comment_line.png │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── doxywizard.png │ │ │ │ │ ├── extract.png │ │ │ │ │ └── html.png │ │ │ │ ├── 20x20 │ │ │ │ │ ├── chm.png │ │ │ │ │ ├── comment_block.png │ │ │ │ │ ├── comment_line.png │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── doxywizard.png │ │ │ │ │ ├── extract.png │ │ │ │ │ └── html.png │ │ │ │ ├── 24x24 │ │ │ │ │ ├── chm.png │ │ │ │ │ ├── comment_block.png │ │ │ │ │ ├── comment_line.png │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── doxywizard.png │ │ │ │ │ ├── extract.png │ │ │ │ │ └── html.png │ │ │ │ ├── 28x28 │ │ │ │ │ ├── chm.png │ │ │ │ │ ├── comment_block.png │ │ │ │ │ ├── comment_line.png │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── doxywizard.png │ │ │ │ │ ├── extract.png │ │ │ │ │ └── html.png │ │ │ │ ├── 32x32 │ │ │ │ │ ├── chm.png │ │ │ │ │ ├── comment_block.png │ │ │ │ │ ├── comment_line.png │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── doxywizard.png │ │ │ │ │ ├── extract.png │ │ │ │ │ └── html.png │ │ │ │ ├── 40x40 │ │ │ │ │ ├── chm.png │ │ │ │ │ ├── comment_block.png │ │ │ │ │ ├── comment_line.png │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── doxywizard.png │ │ │ │ │ ├── extract.png │ │ │ │ │ └── html.png │ │ │ │ ├── 48x48 │ │ │ │ │ ├── chm.png │ │ │ │ │ ├── comment_block.png │ │ │ │ │ ├── comment_line.png │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── doxywizard.png │ │ │ │ │ ├── extract.png │ │ │ │ │ └── html.png │ │ │ │ ├── 56x56 │ │ │ │ │ ├── chm.png │ │ │ │ │ ├── comment_block.png │ │ │ │ │ ├── comment_line.png │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── doxywizard.png │ │ │ │ │ ├── extract.png │ │ │ │ │ └── html.png │ │ │ │ └── 64x64 │ │ │ │ │ ├── chm.png │ │ │ │ │ ├── comment_block.png │ │ │ │ │ ├── comment_line.png │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── doxywizard.png │ │ │ │ │ ├── extract.png │ │ │ │ │ └── html.png │ │ │ ├── manifest.xml │ │ │ ├── update │ │ │ ├── update.bat │ │ │ ├── update30 │ │ │ ├── update31.bat │ │ │ ├── update31_64.bat │ │ │ ├── version.h │ │ │ └── wxsmith │ │ │ │ └── ConfigPanel.wxs │ │ ├── EditorConfig │ │ │ ├── EditorConfig.cpp │ │ │ ├── EditorConfig.h │ │ │ ├── EditorConfigCommon.h │ │ │ ├── EditorConfigUI.cpp │ │ │ ├── EditorConfigUI.h │ │ │ ├── EditorConfig_wx30-unix.cbp │ │ │ ├── EditorConfig_wx31.cbp │ │ │ ├── EditorConfig_wx31_64.cbp │ │ │ ├── Makefile.am │ │ │ ├── manifest.xml │ │ │ └── wxsmith │ │ │ │ └── EditorConfigUI.wxs │ │ ├── EditorTweaks │ │ │ ├── EditorTweaks.cpp │ │ │ ├── EditorTweaks.h │ │ │ ├── EditorTweaksConfDlg.cpp │ │ │ ├── EditorTweaksConfDlg.h │ │ │ ├── EditorTweaksConfDlg.xrc │ │ │ ├── EditorTweaks_wx30-unix.cbp │ │ │ ├── EditorTweaks_wx31.cbp │ │ │ ├── EditorTweaks_wx31_64.cbp │ │ │ ├── Makefile.am │ │ │ ├── manifest.xml │ │ │ └── wxsmith │ │ │ │ └── EditorTweaksConfDlg.wxs │ │ ├── FileManager │ │ │ ├── CommitBrowser.cpp │ │ │ ├── CommitBrowser.h │ │ │ ├── FileExplorer.cpp │ │ │ ├── FileExplorer.h │ │ │ ├── FileExplorerSettings.cpp │ │ │ ├── FileExplorerSettings.h │ │ │ ├── FileExplorerUpdater.cpp │ │ │ ├── FileExplorerUpdater.h │ │ │ ├── FileManager.cpp │ │ │ ├── FileManager.h │ │ │ ├── FileManager_wx30-unix.cbp │ │ │ ├── FileManager_wx31.cbp │ │ │ ├── FileManager_wx31_64.cbp │ │ │ ├── Makefile.am │ │ │ ├── Resources │ │ │ │ ├── CommitBrowser.xrc │ │ │ │ ├── fileexplorersettings.fbp │ │ │ │ └── fileexplorersettings.xrc │ │ │ ├── directorymonitor.cpp │ │ │ ├── directorymonitor.h │ │ │ ├── manifest.xml │ │ │ ├── se_globals.cpp │ │ │ └── se_globals.h │ │ ├── HexEditor │ │ │ ├── CharacterView.cpp │ │ │ ├── CharacterView.h │ │ │ ├── DigitView.cpp │ │ │ ├── DigitView.h │ │ │ ├── ExpressionExecutor.cpp │ │ │ ├── ExpressionExecutor.h │ │ │ ├── ExpressionParser.cpp │ │ │ ├── ExpressionParser.h │ │ │ ├── ExpressionPreprocessed.cpp │ │ │ ├── ExpressionPreprocessed.h │ │ │ ├── ExpressionTestCases.cpp │ │ │ ├── ExpressionTestCases.h │ │ │ ├── ExpressionTester.cpp │ │ │ ├── ExpressionTester.h │ │ │ ├── FileContentBase.cpp │ │ │ ├── FileContentBase.h │ │ │ ├── FileContentBuffered.cpp │ │ │ ├── FileContentBuffered.h │ │ │ ├── FileContentDisk.cpp │ │ │ ├── FileContentDisk.h │ │ │ ├── HexEditLineBuffer.cpp │ │ │ ├── HexEditLineBuffer.h │ │ │ ├── HexEditPanel.cpp │ │ │ ├── HexEditPanel.h │ │ │ ├── HexEditViewBase.cpp │ │ │ ├── HexEditViewBase.h │ │ │ ├── HexEditor.cpp │ │ │ ├── HexEditor.h │ │ │ ├── HexEditor_wx30-unix.cbp │ │ │ ├── HexEditor_wx31.cbp │ │ │ ├── HexEditor_wx31_64.cbp │ │ │ ├── Makefile.am │ │ │ ├── SearchDialog.cpp │ │ │ ├── SearchDialog.h │ │ │ ├── SelectStoredExpressionDlg.cpp │ │ │ ├── SelectStoredExpressionDlg.h │ │ │ ├── TestCasesBase.h │ │ │ ├── TestCasesDlg.cpp │ │ │ ├── TestCasesDlg.h │ │ │ ├── TestCasesHelper.h │ │ │ ├── manifest.xml │ │ │ └── wxsmith │ │ │ │ ├── ExpressionTester.wxs │ │ │ │ ├── HexEditPanel.wxs │ │ │ │ ├── SearchDialog.wxs │ │ │ │ ├── SelectStoredExpressionDlg.wxs │ │ │ │ └── TestCasesDlg.wxs │ │ ├── IncrementalSearch │ │ │ ├── IncrementalSearch.cpp │ │ │ ├── IncrementalSearch.h │ │ │ ├── IncrementalSearchConfDlg.cpp │ │ │ ├── IncrementalSearchConfDlg.h │ │ │ ├── IncrementalSearchConfDlg.xrc │ │ │ ├── IncrementalSearchToolbar.xrc │ │ │ ├── IncrementalSearch_wx30-unix.cbp │ │ │ ├── IncrementalSearch_wx31.cbp │ │ │ ├── IncrementalSearch_wx31_64.cbp │ │ │ ├── Makefile.am │ │ │ ├── images │ │ │ │ ├── 16x16 │ │ │ │ │ ├── incsearchcase.png │ │ │ │ │ ├── incsearchclear.png │ │ │ │ │ ├── incsearchfocus.png │ │ │ │ │ ├── incsearchhighlight.png │ │ │ │ │ ├── incsearchnext.png │ │ │ │ │ ├── incsearchprev.png │ │ │ │ │ ├── incsearchregex.png │ │ │ │ │ └── incsearchselectedonly.png │ │ │ │ ├── 20x20 │ │ │ │ │ ├── incsearchcase.png │ │ │ │ │ ├── incsearchclear.png │ │ │ │ │ ├── incsearchfocus.png │ │ │ │ │ ├── incsearchhighlight.png │ │ │ │ │ ├── incsearchnext.png │ │ │ │ │ ├── incsearchprev.png │ │ │ │ │ ├── incsearchregex.png │ │ │ │ │ └── incsearchselectedonly.png │ │ │ │ ├── 24x24 │ │ │ │ │ ├── incsearchcase.png │ │ │ │ │ ├── incsearchclear.png │ │ │ │ │ ├── incsearchfocus.png │ │ │ │ │ ├── incsearchhighlight.png │ │ │ │ │ ├── incsearchnext.png │ │ │ │ │ ├── incsearchprev.png │ │ │ │ │ ├── incsearchregex.png │ │ │ │ │ └── incsearchselectedonly.png │ │ │ │ ├── 28x28 │ │ │ │ │ ├── incsearchcase.png │ │ │ │ │ ├── incsearchclear.png │ │ │ │ │ ├── incsearchfocus.png │ │ │ │ │ ├── incsearchhighlight.png │ │ │ │ │ ├── incsearchnext.png │ │ │ │ │ ├── incsearchprev.png │ │ │ │ │ ├── incsearchregex.png │ │ │ │ │ └── incsearchselectedonly.png │ │ │ │ ├── 32x32 │ │ │ │ │ ├── incsearchcase.png │ │ │ │ │ ├── incsearchclear.png │ │ │ │ │ ├── incsearchfocus.png │ │ │ │ │ ├── incsearchhighlight.png │ │ │ │ │ ├── incsearchnext.png │ │ │ │ │ ├── incsearchprev.png │ │ │ │ │ ├── incsearchregex.png │ │ │ │ │ └── incsearchselectedonly.png │ │ │ │ ├── 40x40 │ │ │ │ │ ├── incsearchcase.png │ │ │ │ │ ├── incsearchclear.png │ │ │ │ │ ├── incsearchfocus.png │ │ │ │ │ ├── incsearchhighlight.png │ │ │ │ │ ├── incsearchnext.png │ │ │ │ │ ├── incsearchprev.png │ │ │ │ │ ├── incsearchregex.png │ │ │ │ │ └── incsearchselectedonly.png │ │ │ │ ├── 48x48 │ │ │ │ │ ├── incsearchcase.png │ │ │ │ │ ├── incsearchclear.png │ │ │ │ │ ├── incsearchfocus.png │ │ │ │ │ ├── incsearchhighlight.png │ │ │ │ │ ├── incsearchnext.png │ │ │ │ │ ├── incsearchprev.png │ │ │ │ │ ├── incsearchregex.png │ │ │ │ │ └── incsearchselectedonly.png │ │ │ │ ├── 56x56 │ │ │ │ │ ├── incsearchcase.png │ │ │ │ │ ├── incsearchclear.png │ │ │ │ │ ├── incsearchfocus.png │ │ │ │ │ ├── incsearchhighlight.png │ │ │ │ │ ├── incsearchnext.png │ │ │ │ │ ├── incsearchprev.png │ │ │ │ │ ├── incsearchregex.png │ │ │ │ │ └── incsearchselectedonly.png │ │ │ │ └── 64x64 │ │ │ │ │ ├── incsearchcase.png │ │ │ │ │ ├── incsearchclear.png │ │ │ │ │ ├── incsearchfocus.png │ │ │ │ │ ├── incsearchhighlight.png │ │ │ │ │ ├── incsearchnext.png │ │ │ │ │ ├── incsearchprev.png │ │ │ │ │ ├── incsearchregex.png │ │ │ │ │ └── incsearchselectedonly.png │ │ │ ├── incsearch-off.png │ │ │ ├── incsearch.png │ │ │ ├── manifest.xml │ │ │ ├── update │ │ │ ├── update.bat │ │ │ ├── update30 │ │ │ ├── update31.bat │ │ │ └── update31_64.bat │ │ ├── Makefile.am │ │ ├── MouseSap │ │ │ ├── Makefile.am │ │ │ ├── MouseSap.cpp │ │ │ ├── MouseSap.h │ │ │ ├── MouseSapCfg.cpp │ │ │ ├── MouseSapCfg.h │ │ │ ├── MouseSap_wx30-unix.cbp │ │ │ ├── MouseSap_wx31.cbp │ │ │ ├── MouseSap_wx31_64.cbp │ │ │ └── manifest.xml │ │ ├── NassiShneiderman │ │ │ ├── CParser.cpp │ │ │ ├── DataObject.cpp │ │ │ ├── DataObject.h │ │ │ ├── EditTextTask.cpp │ │ │ ├── EditTextTask.h │ │ │ ├── FileContent.cpp │ │ │ ├── FileContent.h │ │ │ ├── GraphBricks.cpp │ │ │ ├── GraphBricks.h │ │ │ ├── GraphFabric.cpp │ │ │ ├── GraphFabric.h │ │ │ ├── HooverDrawlet.cpp │ │ │ ├── HooverDrawlet.h │ │ │ ├── HooverLine.cpp │ │ │ ├── HooverLine.h │ │ │ ├── InsertBrickTask.cpp │ │ │ ├── InsertBrickTask.h │ │ │ ├── Makefile.am │ │ │ ├── NassiBrickVisitor.h │ │ │ ├── NassiDiagramWindow.cpp │ │ │ ├── NassiDiagramWindow.h │ │ │ ├── NassiDropTarget.cpp │ │ │ ├── NassiDropTarget.h │ │ │ ├── NassiEditorPanel.cpp │ │ │ ├── NassiEditorPanel.h │ │ │ ├── NassiFileContent.cpp │ │ │ ├── NassiFileContent.h │ │ │ ├── NassiPlugin.cpp │ │ │ ├── NassiPlugin.h │ │ │ ├── NassiShneiderman_wx30-unix.cbp │ │ │ ├── NassiShneiderman_wx31.cbp │ │ │ ├── NassiShneiderman_wx31_64.cbp │ │ │ ├── NassiView.cpp │ │ │ ├── NassiView.h │ │ │ ├── PasteTask.cpp │ │ │ ├── PasteTask.h │ │ │ ├── RedHatchDrawlet.cpp │ │ │ ├── RedHatchDrawlet.h │ │ │ ├── RedLineDrawlet.cpp │ │ │ ├── RedLineDrawlet.h │ │ │ ├── Task.cpp │ │ │ ├── Task.h │ │ │ ├── TaskSelect.cpp │ │ │ ├── TaskSelect.h │ │ │ ├── TaskTest.cpp │ │ │ ├── TaskTest.h │ │ │ ├── TextCtrl.cpp │ │ │ ├── TextCtrl.h │ │ │ ├── TextCtrlTask.cpp │ │ │ ├── TextCtrlTask.h │ │ │ ├── TextGraph.cpp │ │ │ ├── TextGraph.h │ │ │ ├── bricks.cpp │ │ │ ├── bricks.h │ │ │ ├── cbEditorPanel.cpp │ │ │ ├── cbEditorPanel.h │ │ │ ├── commands.cpp │ │ │ ├── commands.h │ │ │ ├── images │ │ │ │ ├── 16x16 │ │ │ │ │ ├── blocktool.png │ │ │ │ │ ├── breaktool.png │ │ │ │ │ ├── commentToggletool.png │ │ │ │ │ ├── continuetool.png │ │ │ │ │ ├── dowhiletool.png │ │ │ │ │ ├── fortool.png │ │ │ │ │ ├── glassntool.png │ │ │ │ │ ├── glassptool.png │ │ │ │ │ ├── iftool.png │ │ │ │ │ ├── instrtool.png │ │ │ │ │ ├── returntool.png │ │ │ │ │ ├── selecttool.png │ │ │ │ │ ├── sourceToggletool.png │ │ │ │ │ ├── switchtool.png │ │ │ │ │ └── whiletool.png │ │ │ │ ├── 20x20 │ │ │ │ │ ├── blocktool.png │ │ │ │ │ ├── breaktool.png │ │ │ │ │ ├── commentToggletool.png │ │ │ │ │ ├── continuetool.png │ │ │ │ │ ├── dowhiletool.png │ │ │ │ │ ├── fortool.png │ │ │ │ │ ├── glassntool.png │ │ │ │ │ ├── glassptool.png │ │ │ │ │ ├── iftool.png │ │ │ │ │ ├── instrtool.png │ │ │ │ │ ├── returntool.png │ │ │ │ │ ├── selecttool.png │ │ │ │ │ ├── sourceToggletool.png │ │ │ │ │ ├── switchtool.png │ │ │ │ │ └── whiletool.png │ │ │ │ ├── 24x24 │ │ │ │ │ ├── blocktool.png │ │ │ │ │ ├── breaktool.png │ │ │ │ │ ├── commentToggletool.png │ │ │ │ │ ├── continuetool.png │ │ │ │ │ ├── dowhiletool.png │ │ │ │ │ ├── fortool.png │ │ │ │ │ ├── glassntool.png │ │ │ │ │ ├── glassptool.png │ │ │ │ │ ├── iftool.png │ │ │ │ │ ├── instrtool.png │ │ │ │ │ ├── returntool.png │ │ │ │ │ ├── selecttool.png │ │ │ │ │ ├── sourceToggletool.png │ │ │ │ │ ├── switchtool.png │ │ │ │ │ └── whiletool.png │ │ │ │ ├── 28x28 │ │ │ │ │ ├── blocktool.png │ │ │ │ │ ├── breaktool.png │ │ │ │ │ ├── commentToggletool.png │ │ │ │ │ ├── continuetool.png │ │ │ │ │ ├── dowhiletool.png │ │ │ │ │ ├── fortool.png │ │ │ │ │ ├── glassntool.png │ │ │ │ │ ├── glassptool.png │ │ │ │ │ ├── iftool.png │ │ │ │ │ ├── instrtool.png │ │ │ │ │ ├── returntool.png │ │ │ │ │ ├── selecttool.png │ │ │ │ │ ├── sourceToggletool.png │ │ │ │ │ ├── switchtool.png │ │ │ │ │ └── whiletool.png │ │ │ │ ├── 32x32 │ │ │ │ │ ├── blocktool.png │ │ │ │ │ ├── breaktool.png │ │ │ │ │ ├── commentToggletool.png │ │ │ │ │ ├── continuetool.png │ │ │ │ │ ├── dowhiletool.png │ │ │ │ │ ├── fortool.png │ │ │ │ │ ├── glassntool.png │ │ │ │ │ ├── glassptool.png │ │ │ │ │ ├── iftool.png │ │ │ │ │ ├── instrtool.png │ │ │ │ │ ├── returntool.png │ │ │ │ │ ├── selecttool.png │ │ │ │ │ ├── sourceToggletool.png │ │ │ │ │ ├── switchtool.png │ │ │ │ │ └── whiletool.png │ │ │ │ ├── 40x40 │ │ │ │ │ ├── blocktool.png │ │ │ │ │ ├── breaktool.png │ │ │ │ │ ├── commentToggletool.png │ │ │ │ │ ├── continuetool.png │ │ │ │ │ ├── dowhiletool.png │ │ │ │ │ ├── fortool.png │ │ │ │ │ ├── glassntool.png │ │ │ │ │ ├── glassptool.png │ │ │ │ │ ├── iftool.png │ │ │ │ │ ├── instrtool.png │ │ │ │ │ ├── returntool.png │ │ │ │ │ ├── selecttool.png │ │ │ │ │ ├── sourceToggletool.png │ │ │ │ │ ├── switchtool.png │ │ │ │ │ └── whiletool.png │ │ │ │ ├── 48x48 │ │ │ │ │ ├── blocktool.png │ │ │ │ │ ├── breaktool.png │ │ │ │ │ ├── commentToggletool.png │ │ │ │ │ ├── continuetool.png │ │ │ │ │ ├── dowhiletool.png │ │ │ │ │ ├── fortool.png │ │ │ │ │ ├── glassntool.png │ │ │ │ │ ├── glassptool.png │ │ │ │ │ ├── iftool.png │ │ │ │ │ ├── instrtool.png │ │ │ │ │ ├── returntool.png │ │ │ │ │ ├── selecttool.png │ │ │ │ │ ├── sourceToggletool.png │ │ │ │ │ ├── switchtool.png │ │ │ │ │ └── whiletool.png │ │ │ │ ├── 56x56 │ │ │ │ │ ├── blocktool.png │ │ │ │ │ ├── breaktool.png │ │ │ │ │ ├── commentToggletool.png │ │ │ │ │ ├── continuetool.png │ │ │ │ │ ├── dowhiletool.png │ │ │ │ │ ├── fortool.png │ │ │ │ │ ├── glassntool.png │ │ │ │ │ ├── glassptool.png │ │ │ │ │ ├── iftool.png │ │ │ │ │ ├── instrtool.png │ │ │ │ │ ├── returntool.png │ │ │ │ │ ├── selecttool.png │ │ │ │ │ ├── sourceToggletool.png │ │ │ │ │ ├── switchtool.png │ │ │ │ │ └── whiletool.png │ │ │ │ └── 64x64 │ │ │ │ │ ├── blocktool.png │ │ │ │ │ ├── breaktool.png │ │ │ │ │ ├── commentToggletool.png │ │ │ │ │ ├── continuetool.png │ │ │ │ │ ├── dowhiletool.png │ │ │ │ │ ├── fortool.png │ │ │ │ │ ├── glassntool.png │ │ │ │ │ ├── glassptool.png │ │ │ │ │ ├── iftool.png │ │ │ │ │ ├── instrtool.png │ │ │ │ │ ├── returntool.png │ │ │ │ │ ├── selecttool.png │ │ │ │ │ ├── sourceToggletool.png │ │ │ │ │ ├── switchtool.png │ │ │ │ │ └── whiletool.png │ │ │ ├── manifest.xml │ │ │ ├── nassi_shneiderman_toolbar.xrc │ │ │ ├── parseactions.cpp │ │ │ ├── parseactions.h │ │ │ ├── parserules.h │ │ │ └── rc │ │ │ │ ├── blockcur.xpm │ │ │ │ ├── blockcur_inv.xpm │ │ │ │ ├── blocktool16.xpm │ │ │ │ ├── breakcur.xpm │ │ │ │ ├── breakcur_inv.xpm │ │ │ │ ├── continuecur.xpm │ │ │ │ ├── continuecur_inv.xpm │ │ │ │ ├── dnd_copy_cur.xpm │ │ │ │ ├── dnd_move_cur.xpm │ │ │ │ ├── dnd_none_cur.xpm │ │ │ │ ├── dowhilecur.xpm │ │ │ │ ├── dowhilecur_inv.xpm │ │ │ │ ├── dowhiletool16.xpm │ │ │ │ ├── forcur.xpm │ │ │ │ ├── forcur_inv.xpm │ │ │ │ ├── fortool16.xpm │ │ │ │ ├── ifcur.xpm │ │ │ │ ├── ifcur_inv.xpm │ │ │ │ ├── iftool16.xpm │ │ │ │ ├── instrcur.xpm │ │ │ │ ├── instrcur_inv.xpm │ │ │ │ ├── nassi.ico │ │ │ │ ├── nassi.xpm │ │ │ │ ├── nassidoc.ico │ │ │ │ ├── nassidoc.xpm │ │ │ │ ├── returncur.xpm │ │ │ │ ├── returncur_inv.xpm │ │ │ │ ├── switchcur.xpm │ │ │ │ ├── switchcur_inv.xpm │ │ │ │ ├── switchtool16.xpm │ │ │ │ ├── whilecur.xpm │ │ │ │ ├── whilecur_inv.xpm │ │ │ │ └── whiletool16.xpm │ │ ├── ProjectOptionsManipulator │ │ │ ├── Makefile.am │ │ │ ├── ProjectOptionsManipulator.cpp │ │ │ ├── ProjectOptionsManipulator.h │ │ │ ├── ProjectOptionsManipulatorDlg.cpp │ │ │ ├── ProjectOptionsManipulatorDlg.h │ │ │ ├── ProjectOptionsManipulatorResultDlg.cpp │ │ │ ├── ProjectOptionsManipulatorResultDlg.h │ │ │ ├── ProjectOptionsManipulator_wx30-unix.cbp │ │ │ ├── ProjectOptionsManipulator_wx31.cbp │ │ │ ├── ProjectOptionsManipulator_wx31_64.cbp │ │ │ ├── ToDo.txt │ │ │ ├── manifest.xml │ │ │ └── wxsmith │ │ │ │ ├── ProjectOptionsManipulatorDlg.wxs │ │ │ │ └── ProjectOptionsManipulatorResultDlg.wxs │ │ ├── ReopenEditor │ │ │ ├── Makefile.am │ │ │ ├── ReopenEditor.cpp │ │ │ ├── ReopenEditor.h │ │ │ ├── ReopenEditorConfDLg.cpp │ │ │ ├── ReopenEditorConfDLg.h │ │ │ ├── ReopenEditorConfDLg.xrc │ │ │ ├── ReopenEditorListView.cpp │ │ │ ├── ReopenEditorListView.h │ │ │ ├── ReopenEditor_wx30-unix.cbp │ │ │ ├── ReopenEditor_wx31.cbp │ │ │ ├── ReopenEditor_wx31_64.cbp │ │ │ ├── manifest.xml │ │ │ └── wxsmith │ │ │ │ └── ReopenEditorConfDLg.wxs │ │ ├── SmartIndent │ │ │ ├── Makefile.am │ │ │ ├── SmartIndentCpp.cpp │ │ │ ├── SmartIndentCpp.h │ │ │ ├── SmartIndentFortran.cpp │ │ │ ├── SmartIndentFortran.h │ │ │ ├── SmartIndentHDL.cpp │ │ │ ├── SmartIndentHDL.h │ │ │ ├── SmartIndentLua.cpp │ │ │ ├── SmartIndentLua.h │ │ │ ├── SmartIndentPascal.cpp │ │ │ ├── SmartIndentPascal.h │ │ │ ├── SmartIndentPython.cpp │ │ │ ├── SmartIndentPython.h │ │ │ ├── SmartIndentXML.cpp │ │ │ ├── SmartIndentXML.h │ │ │ ├── SmartIndent_wx30-unix.cbp │ │ │ ├── SmartIndent_wx31.cbp │ │ │ ├── SmartIndent_wx31_64.cbp │ │ │ ├── manifest_cpp.xml │ │ │ ├── manifest_fortran.xml │ │ │ ├── manifest_hdl.xml │ │ │ ├── manifest_lua.xml │ │ │ ├── manifest_pascal.xml │ │ │ ├── manifest_python.xml │ │ │ └── manifest_xml.xml │ │ ├── SpellChecker │ │ │ ├── DictionariesNeededDialog.cpp │ │ │ ├── DictionariesNeededDialog.h │ │ │ ├── HunspellInterface.cpp │ │ │ ├── HunspellInterface.h │ │ │ ├── Makefile.am │ │ │ ├── MySpellingDialog.cpp │ │ │ ├── MySpellingDialog.h │ │ │ ├── OnlineSpellChecker.cpp │ │ │ ├── OnlineSpellChecker.h │ │ │ ├── OnlineSpellChecking.xml │ │ │ ├── SpellCheckHelper.cpp │ │ │ ├── SpellCheckHelper.h │ │ │ ├── SpellCheckSettingsPanel.cpp │ │ │ ├── SpellCheckSettingsPanel.h │ │ │ ├── SpellCheckSettingsPanel.xrc │ │ │ ├── SpellChecker-off.png │ │ │ ├── SpellChecker.png │ │ │ ├── SpellCheckerConfig.cpp │ │ │ ├── SpellCheckerConfig.h │ │ │ ├── SpellCheckerPlugin.cpp │ │ │ ├── SpellCheckerPlugin.h │ │ │ ├── SpellChecker_wx30-unix.cbp │ │ │ ├── SpellChecker_wx31.cbp │ │ │ ├── SpellChecker_wx31_64.cbp │ │ │ ├── StatusField.cpp │ │ │ ├── StatusField.h │ │ │ ├── Thesaurus.cpp │ │ │ ├── Thesaurus.h │ │ │ ├── ThesaurusDialog.cpp │ │ │ ├── ThesaurusDialog.h │ │ │ ├── dictionaries │ │ │ │ └── readme.txt │ │ │ ├── hunspell │ │ │ │ ├── .travis.yml │ │ │ │ ├── ABOUT-NLS │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING │ │ │ │ ├── COPYING.LESSER │ │ │ │ ├── COPYING.MPL │ │ │ │ ├── ChangeLog │ │ │ │ ├── ChangeLog.O │ │ │ │ ├── Doxyfile │ │ │ │ ├── Makefile.am │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── README.md │ │ │ │ ├── THANKS │ │ │ │ ├── appveyor.yml │ │ │ │ ├── config.rpath │ │ │ │ ├── configure.ac │ │ │ │ ├── hunspell.pc.in │ │ │ │ ├── license.hunspell │ │ │ │ ├── license.myspell │ │ │ │ ├── m4 │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── README │ │ │ │ │ ├── gettext.m4 │ │ │ │ │ ├── iconv.m4 │ │ │ │ │ ├── lib-ld.m4 │ │ │ │ │ ├── lib-link.m4 │ │ │ │ │ ├── lib-prefix.m4 │ │ │ │ │ ├── nls.m4 │ │ │ │ │ ├── po.m4 │ │ │ │ │ ├── progtest.m4 │ │ │ │ │ └── visibility.m4 │ │ │ │ ├── man │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── hu │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── hunspell.1 │ │ │ │ │ │ └── hunspell.5 │ │ │ │ │ ├── hunspell.1 │ │ │ │ │ ├── hunspell.3 │ │ │ │ │ ├── hunspell.5 │ │ │ │ │ ├── hunzip.1 │ │ │ │ │ └── hzip.1 │ │ │ │ ├── msvc │ │ │ │ │ ├── Hunspell.rc │ │ │ │ │ ├── Hunspell.sln │ │ │ │ │ ├── config.h │ │ │ │ │ ├── hunspell.vcxproj │ │ │ │ │ ├── libhunspell.vcxproj │ │ │ │ │ └── testparser.vcxproj │ │ │ │ ├── po │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── LINGUAS │ │ │ │ │ ├── Makefile.in.in │ │ │ │ │ ├── Makevars │ │ │ │ │ ├── POTFILES.in │ │ │ │ │ ├── Rules-quot │ │ │ │ │ ├── boldquot.sed │ │ │ │ │ ├── ca.po │ │ │ │ │ ├── cs.po │ │ │ │ │ ├── da.po │ │ │ │ │ ├── de.po │ │ │ │ │ ├── en@boldquot.header │ │ │ │ │ ├── en@quot.header │ │ │ │ │ ├── es.po │ │ │ │ │ ├── fr.po │ │ │ │ │ ├── gl.po │ │ │ │ │ ├── hu.po │ │ │ │ │ ├── hunspell.pot │ │ │ │ │ ├── ie.po │ │ │ │ │ ├── insert-header.sin │ │ │ │ │ ├── is.po │ │ │ │ │ ├── it.po │ │ │ │ │ ├── ky.po │ │ │ │ │ ├── nb_NO.po │ │ │ │ │ ├── nl.po │ │ │ │ │ ├── nl_BE.po │ │ │ │ │ ├── pl.po │ │ │ │ │ ├── pt_BR.po │ │ │ │ │ ├── pt_PT.po │ │ │ │ │ ├── quot.sed │ │ │ │ │ ├── remove-potcdate.sin │ │ │ │ │ ├── ru.po │ │ │ │ │ ├── stamp-po │ │ │ │ │ ├── sv.po │ │ │ │ │ ├── tg.po │ │ │ │ │ └── uk.po │ │ │ │ └── src │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── hunspell │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── affentry.cxx │ │ │ │ │ ├── affentry.hxx │ │ │ │ │ ├── affixmgr.cxx │ │ │ │ │ ├── affixmgr.hxx │ │ │ │ │ ├── atypes.hxx │ │ │ │ │ ├── baseaffix.hxx │ │ │ │ │ ├── csutil.cxx │ │ │ │ │ ├── csutil.hxx │ │ │ │ │ ├── filemgr.cxx │ │ │ │ │ ├── filemgr.hxx │ │ │ │ │ ├── hashmgr.cxx │ │ │ │ │ ├── hashmgr.hxx │ │ │ │ │ ├── htypes.hxx │ │ │ │ │ ├── hunspell.cxx │ │ │ │ │ ├── hunspell.h │ │ │ │ │ ├── hunspell.hxx │ │ │ │ │ ├── hunvisapi.h │ │ │ │ │ ├── hunvisapi.h.in │ │ │ │ │ ├── hunzip.cxx │ │ │ │ │ ├── hunzip.hxx │ │ │ │ │ ├── langnum.hxx │ │ │ │ │ ├── phonet.cxx │ │ │ │ │ ├── phonet.hxx │ │ │ │ │ ├── replist.cxx │ │ │ │ │ ├── replist.hxx │ │ │ │ │ ├── suggestmgr.cxx │ │ │ │ │ ├── suggestmgr.hxx │ │ │ │ │ ├── utf_info.hxx │ │ │ │ │ └── w_char.hxx │ │ │ │ │ ├── parsers │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── firstparser.cxx │ │ │ │ │ ├── firstparser.hxx │ │ │ │ │ ├── htmlparser.cxx │ │ │ │ │ ├── htmlparser.hxx │ │ │ │ │ ├── latexparser.cxx │ │ │ │ │ ├── latexparser.hxx │ │ │ │ │ ├── manparser.cxx │ │ │ │ │ ├── manparser.hxx │ │ │ │ │ ├── odfparser.cxx │ │ │ │ │ ├── odfparser.hxx │ │ │ │ │ ├── testparser.cxx │ │ │ │ │ ├── textparser.cxx │ │ │ │ │ ├── textparser.hxx │ │ │ │ │ ├── xmlparser.cxx │ │ │ │ │ └── xmlparser.hxx │ │ │ │ │ └── tools │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── affixcompress │ │ │ │ │ ├── analyze.cxx │ │ │ │ │ ├── chmorph.cxx │ │ │ │ │ ├── example.cxx │ │ │ │ │ ├── fuzzer.cxx │ │ │ │ │ ├── hunspell.cxx │ │ │ │ │ ├── hunzip.cxx │ │ │ │ │ ├── hzip.cxx │ │ │ │ │ ├── ispellaff2myspell │ │ │ │ │ ├── makealias │ │ │ │ │ ├── munch.cxx │ │ │ │ │ ├── munch.h │ │ │ │ │ ├── unmunch.cxx │ │ │ │ │ ├── unmunch.h │ │ │ │ │ ├── wordforms │ │ │ │ │ └── wordlist2hunspell │ │ │ ├── manifest.xml │ │ │ ├── mythes.cxx │ │ │ ├── mythes.hxx │ │ │ ├── rc │ │ │ │ ├── 16x16 │ │ │ │ │ ├── de_AT.png │ │ │ │ │ ├── de_CH.png │ │ │ │ │ ├── de_DE.png │ │ │ │ │ ├── disabled.png │ │ │ │ │ ├── en_AU.png │ │ │ │ │ ├── en_CA.png │ │ │ │ │ ├── en_GB.png │ │ │ │ │ ├── en_NZ.png │ │ │ │ │ ├── en_US.png │ │ │ │ │ ├── es_ES.png │ │ │ │ │ ├── fr_FR.png │ │ │ │ │ └── ru_RU.png │ │ │ │ ├── 20x20 │ │ │ │ │ ├── de_AT.png │ │ │ │ │ ├── de_CH.png │ │ │ │ │ ├── de_DE.png │ │ │ │ │ ├── disabled.png │ │ │ │ │ ├── en_AU.png │ │ │ │ │ ├── en_CA.png │ │ │ │ │ ├── en_GB.png │ │ │ │ │ ├── en_NZ.png │ │ │ │ │ ├── en_US.png │ │ │ │ │ ├── es_ES.png │ │ │ │ │ ├── fr_FR.png │ │ │ │ │ └── ru_RU.png │ │ │ │ ├── 24x24 │ │ │ │ │ ├── de_AT.png │ │ │ │ │ ├── de_CH.png │ │ │ │ │ ├── de_DE.png │ │ │ │ │ ├── disabled.png │ │ │ │ │ ├── en_AU.png │ │ │ │ │ ├── en_CA.png │ │ │ │ │ ├── en_GB.png │ │ │ │ │ ├── en_NZ.png │ │ │ │ │ ├── en_US.png │ │ │ │ │ ├── es_ES.png │ │ │ │ │ ├── fr_FR.png │ │ │ │ │ └── ru_RU.png │ │ │ │ ├── 28x28 │ │ │ │ │ ├── de_AT.png │ │ │ │ │ ├── de_CH.png │ │ │ │ │ ├── de_DE.png │ │ │ │ │ ├── disabled.png │ │ │ │ │ ├── en_AU.png │ │ │ │ │ ├── en_CA.png │ │ │ │ │ ├── en_GB.png │ │ │ │ │ ├── en_NZ.png │ │ │ │ │ ├── en_US.png │ │ │ │ │ ├── es_ES.png │ │ │ │ │ ├── fr_FR.png │ │ │ │ │ └── ru_RU.png │ │ │ │ ├── 32x32 │ │ │ │ │ ├── de_AT.png │ │ │ │ │ ├── de_CH.png │ │ │ │ │ ├── de_DE.png │ │ │ │ │ ├── disabled.png │ │ │ │ │ ├── en_AU.png │ │ │ │ │ ├── en_CA.png │ │ │ │ │ ├── en_GB.png │ │ │ │ │ ├── en_NZ.png │ │ │ │ │ ├── en_US.png │ │ │ │ │ ├── es_ES.png │ │ │ │ │ ├── fr_FR.png │ │ │ │ │ └── ru_RU.png │ │ │ │ ├── 40x40 │ │ │ │ │ ├── de_AT.png │ │ │ │ │ ├── de_CH.png │ │ │ │ │ ├── de_DE.png │ │ │ │ │ ├── disabled.png │ │ │ │ │ ├── en_AU.png │ │ │ │ │ ├── en_CA.png │ │ │ │ │ ├── en_GB.png │ │ │ │ │ ├── en_NZ.png │ │ │ │ │ ├── en_US.png │ │ │ │ │ ├── es_ES.png │ │ │ │ │ ├── fr_FR.png │ │ │ │ │ └── ru_RU.png │ │ │ │ ├── 48x48 │ │ │ │ │ ├── de_AT.png │ │ │ │ │ ├── de_CH.png │ │ │ │ │ ├── de_DE.png │ │ │ │ │ ├── disabled.png │ │ │ │ │ ├── en_AU.png │ │ │ │ │ ├── en_CA.png │ │ │ │ │ ├── en_GB.png │ │ │ │ │ ├── en_NZ.png │ │ │ │ │ ├── en_US.png │ │ │ │ │ ├── es_ES.png │ │ │ │ │ ├── fr_FR.png │ │ │ │ │ └── ru_RU.png │ │ │ │ ├── 56x56 │ │ │ │ │ ├── de_AT.png │ │ │ │ │ ├── de_CH.png │ │ │ │ │ ├── de_DE.png │ │ │ │ │ ├── disabled.png │ │ │ │ │ ├── en_AU.png │ │ │ │ │ ├── en_CA.png │ │ │ │ │ ├── en_GB.png │ │ │ │ │ ├── en_NZ.png │ │ │ │ │ ├── en_US.png │ │ │ │ │ ├── es_ES.png │ │ │ │ │ ├── fr_FR.png │ │ │ │ │ └── ru_RU.png │ │ │ │ └── 64x64 │ │ │ │ │ ├── de_AT.png │ │ │ │ │ ├── de_CH.png │ │ │ │ │ ├── de_DE.png │ │ │ │ │ ├── disabled.png │ │ │ │ │ ├── en_AU.png │ │ │ │ │ ├── en_CA.png │ │ │ │ │ ├── en_GB.png │ │ │ │ │ ├── en_NZ.png │ │ │ │ │ ├── en_US.png │ │ │ │ │ ├── es_ES.png │ │ │ │ │ ├── fr_FR.png │ │ │ │ │ └── ru_RU.png │ │ │ ├── readme.txt │ │ │ ├── update │ │ │ ├── update.bat │ │ │ ├── update30 │ │ │ ├── update31.bat │ │ │ ├── update31_64.bat │ │ │ ├── wxThes.cpp │ │ │ ├── wxThes.h │ │ │ ├── wxsmith │ │ │ │ └── SpellCheckSettingsPanel.wxs │ │ │ └── wxspellchecker │ │ │ │ ├── BuildInfo.txt │ │ │ │ ├── ChangeLog │ │ │ │ ├── Credits.txt │ │ │ │ ├── Dictionaries.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── MySpell │ │ │ │ ├── affentry.cxx │ │ │ │ ├── affentry.hxx │ │ │ │ ├── affixmgr.cxx │ │ │ │ ├── affixmgr.hxx │ │ │ │ ├── atypes.hxx │ │ │ │ ├── baseaffix.hxx │ │ │ │ ├── csutil.cxx │ │ │ │ ├── csutil.hxx │ │ │ │ ├── dictmgr.cxx │ │ │ │ ├── dictmgr.hxx │ │ │ │ ├── example.cxx │ │ │ │ ├── example.msp │ │ │ │ ├── hashmgr.cxx │ │ │ │ ├── hashmgr.hxx │ │ │ │ ├── htypes.hxx │ │ │ │ ├── license.readme │ │ │ │ ├── munch.c │ │ │ │ ├── munch.h │ │ │ │ ├── myspell.cxx │ │ │ │ ├── myspell.hxx │ │ │ │ ├── suggestmgr.cxx │ │ │ │ ├── suggestmgr.hxx │ │ │ │ ├── unmunch.c │ │ │ │ └── unmunch.h │ │ │ │ ├── Readme │ │ │ │ ├── TODO │ │ │ │ ├── aspell_license.txt │ │ │ │ ├── bin │ │ │ │ ├── README │ │ │ │ └── resource.xrc │ │ │ │ ├── build │ │ │ │ ├── Bakefiles.bkgen │ │ │ │ ├── GNUmakefile │ │ │ │ ├── acregen.sh │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure.ac │ │ │ │ ├── install.sh │ │ │ │ ├── wxspellchecker.bkl │ │ │ │ ├── wxspellchecker.dsw │ │ │ │ ├── wxspellchecker_wxspellchecker.dsp │ │ │ │ ├── wxspellchecker_wxspellchecker_aspell.dsp │ │ │ │ ├── wxspellchecker_wxspellchecker_demo.dsp │ │ │ │ └── wxspellchecker_wxspellchecker_myspell.dsp │ │ │ │ ├── include │ │ │ │ ├── AspellInterface.h │ │ │ │ ├── AspellWrapper.h │ │ │ │ ├── MySpellInterface.h │ │ │ │ ├── PersonalDictionary.h │ │ │ │ ├── SpellCheckCmdLineInterface.h │ │ │ │ ├── SpellCheckDialogInterface.h │ │ │ │ ├── SpellCheckEngineInterface.h │ │ │ │ ├── SpellCheckEngineOption.h │ │ │ │ ├── SpellCheckUserInterface.h │ │ │ │ ├── SpellCheckerOptionsDialog.h │ │ │ │ ├── XmlPersonalDictionaryDialog.h │ │ │ │ ├── XmlSpellCheckDialog.h │ │ │ │ └── exports.h │ │ │ │ ├── samples │ │ │ │ └── wxWidgets │ │ │ │ │ ├── MySpellCheckDialog.cpp │ │ │ │ │ ├── MySpellCheckDialog.h │ │ │ │ │ ├── mondrian.xpm │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── sample.ico │ │ │ │ │ ├── wxSpellCheckerDemo.cpp │ │ │ │ │ ├── wxSpellCheckerDemo.h │ │ │ │ │ └── wxSpellCheckerDemo.rc │ │ │ │ ├── src │ │ │ │ ├── AspellInterface.cpp │ │ │ │ ├── AspellWrapper.cpp │ │ │ │ ├── MySpellInterface.cpp │ │ │ │ ├── PersonalDictionary.cpp │ │ │ │ ├── SpellCheckCmdLineInterface.cpp │ │ │ │ ├── SpellCheckDialogInterface.cpp │ │ │ │ ├── SpellCheckEngineInterface.cpp │ │ │ │ ├── SpellCheckEngineOption.cpp │ │ │ │ ├── SpellCheckUserInterface.cpp │ │ │ │ ├── SpellCheckerOptionsDialog.cpp │ │ │ │ ├── XmlPersonalDictionaryDialog.cpp │ │ │ │ ├── XmlSpellCheckDialog.cpp │ │ │ │ ├── exports.cpp │ │ │ │ └── open.xpm │ │ │ │ ├── tools │ │ │ │ ├── AspellDictionaryDownloader.cpp │ │ │ │ ├── AspellDictionaryDownloader.h │ │ │ │ ├── DictionaryWizard.cpp │ │ │ │ ├── DictionaryWizard.h │ │ │ │ ├── DownloadDictionaries_linux.msp │ │ │ │ ├── DownloadDictionaries_win32.msp │ │ │ │ ├── EngineDictionaryDownloader.h │ │ │ │ ├── Makefile_linux │ │ │ │ ├── MySpellDictionaryDownloader.h │ │ │ │ ├── bzipstream │ │ │ │ │ ├── Makefile_linux │ │ │ │ │ ├── README │ │ │ │ │ ├── bzip │ │ │ │ │ │ ├── blocksort.c │ │ │ │ │ │ ├── bzlib.c │ │ │ │ │ │ ├── bzlib.h │ │ │ │ │ │ ├── bzlib_private.h │ │ │ │ │ │ ├── compress.c │ │ │ │ │ │ ├── crctable.c │ │ │ │ │ │ ├── decompress.c │ │ │ │ │ │ ├── huffman.c │ │ │ │ │ │ └── randtable.c │ │ │ │ │ ├── bzipstream.cpp │ │ │ │ │ ├── bzipstream.h │ │ │ │ │ ├── bzipstream_linux.msp │ │ │ │ │ └── bzipstream_win32.msp │ │ │ │ ├── wizard.cpp │ │ │ │ └── wiztest.xpm │ │ │ │ └── wxWidgets_license.txt │ │ ├── ThreadSearch │ │ │ ├── DirectoryParamsPanel.cpp │ │ │ ├── DirectoryParamsPanel.h │ │ │ ├── InsertIndexManager.cpp │ │ │ ├── InsertIndexManager.h │ │ │ ├── Makefile.am │ │ │ ├── SearchInPanel.cpp │ │ │ ├── SearchInPanel.h │ │ │ ├── TextFileSearcher.cpp │ │ │ ├── TextFileSearcher.h │ │ │ ├── TextFileSearcherRegEx.cpp │ │ │ ├── TextFileSearcherRegEx.h │ │ │ ├── TextFileSearcherText.cpp │ │ │ ├── TextFileSearcherText.h │ │ │ ├── ThreadSearch.cpp │ │ │ ├── ThreadSearch.doxy │ │ │ ├── ThreadSearch.h │ │ │ ├── ThreadSearch.wxg │ │ │ ├── ThreadSearchCommon.h │ │ │ ├── ThreadSearchConfPanel.cpp │ │ │ ├── ThreadSearchConfPanel.h │ │ │ ├── ThreadSearchControlIds.cpp │ │ │ ├── ThreadSearchControlIds.h │ │ │ ├── ThreadSearchEvent.cpp │ │ │ ├── ThreadSearchEvent.h │ │ │ ├── ThreadSearchFindData.cpp │ │ │ ├── ThreadSearchFindData.h │ │ │ ├── ThreadSearchLoggerBase.cpp │ │ │ ├── ThreadSearchLoggerBase.h │ │ │ ├── ThreadSearchLoggerList.cpp │ │ │ ├── ThreadSearchLoggerList.h │ │ │ ├── ThreadSearchLoggerSTC.cpp │ │ │ ├── ThreadSearchLoggerSTC.h │ │ │ ├── ThreadSearchLoggerTree.cpp │ │ │ ├── ThreadSearchLoggerTree.h │ │ │ ├── ThreadSearchThread.cpp │ │ │ ├── ThreadSearchThread.h │ │ │ ├── ThreadSearchTrace.cpp │ │ │ ├── ThreadSearchTrace.h │ │ │ ├── ThreadSearchView.cpp │ │ │ ├── ThreadSearchView.h │ │ │ ├── ThreadSearchViewManagerBase.cpp │ │ │ ├── ThreadSearchViewManagerBase.h │ │ │ ├── ThreadSearchViewManagerLayout.cpp │ │ │ ├── ThreadSearchViewManagerLayout.h │ │ │ ├── ThreadSearchViewManagerMessagesNotebook.cpp │ │ │ ├── ThreadSearchViewManagerMessagesNotebook.h │ │ │ ├── ThreadSearch_wx30-unix.cbp │ │ │ ├── ThreadSearch_wx31.cbp │ │ │ ├── ThreadSearch_wx31_64.cbp │ │ │ ├── logging.h │ │ │ ├── manifest.xml │ │ │ ├── resources │ │ │ │ ├── ThreadSearch-off.png │ │ │ │ ├── ThreadSearch.png │ │ │ │ ├── ThreadSearch.xcf │ │ │ │ └── images │ │ │ │ │ ├── 16x16 │ │ │ │ │ ├── findf.png │ │ │ │ │ ├── findfdisabled.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folderdisabled.png │ │ │ │ │ ├── folderselected.png │ │ │ │ │ ├── openfiles.png │ │ │ │ │ ├── openfilesdisabled.png │ │ │ │ │ ├── openfilesselected.png │ │ │ │ │ ├── options.png │ │ │ │ │ ├── optionsactive.png │ │ │ │ │ ├── optionsdisabled.png │ │ │ │ │ ├── project.png │ │ │ │ │ ├── projectdisabled.png │ │ │ │ │ ├── projectselected.png │ │ │ │ │ ├── showdir.png │ │ │ │ │ ├── showdirdisabled.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── stopdisabled.png │ │ │ │ │ ├── target.png │ │ │ │ │ ├── targetdisabled.png │ │ │ │ │ ├── targetselected.png │ │ │ │ │ ├── workspace.png │ │ │ │ │ ├── workspacedisabled.png │ │ │ │ │ └── workspaceselected.png │ │ │ │ │ ├── 20x20 │ │ │ │ │ ├── findf.png │ │ │ │ │ ├── findfdisabled.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folderdisabled.png │ │ │ │ │ ├── folderselected.png │ │ │ │ │ ├── openfiles.png │ │ │ │ │ ├── openfilesdisabled.png │ │ │ │ │ ├── openfilesselected.png │ │ │ │ │ ├── options.png │ │ │ │ │ ├── optionsactive.png │ │ │ │ │ ├── optionsdisabled.png │ │ │ │ │ ├── project.png │ │ │ │ │ ├── projectdisabled.png │ │ │ │ │ ├── projectselected.png │ │ │ │ │ ├── showdir.png │ │ │ │ │ ├── showdirdisabled.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── stopdisabled.png │ │ │ │ │ ├── target.png │ │ │ │ │ ├── targetdisabled.png │ │ │ │ │ ├── targetselected.png │ │ │ │ │ ├── workspace.png │ │ │ │ │ ├── workspacedisabled.png │ │ │ │ │ └── workspaceselected.png │ │ │ │ │ ├── 24x24 │ │ │ │ │ ├── findf.png │ │ │ │ │ ├── findfdisabled.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folderdisabled.png │ │ │ │ │ ├── folderselected.png │ │ │ │ │ ├── openfiles.png │ │ │ │ │ ├── openfilesdisabled.png │ │ │ │ │ ├── openfilesselected.png │ │ │ │ │ ├── options.png │ │ │ │ │ ├── optionsactive.png │ │ │ │ │ ├── optionsdisabled.png │ │ │ │ │ ├── project.png │ │ │ │ │ ├── projectdisabled.png │ │ │ │ │ ├── projectselected.png │ │ │ │ │ ├── showdir.png │ │ │ │ │ ├── showdirdisabled.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── stopdisabled.png │ │ │ │ │ ├── target.png │ │ │ │ │ ├── targetdisabled.png │ │ │ │ │ ├── targetselected.png │ │ │ │ │ ├── workspace.png │ │ │ │ │ ├── workspacedisabled.png │ │ │ │ │ └── workspaceselected.png │ │ │ │ │ ├── 28x28 │ │ │ │ │ ├── findf.png │ │ │ │ │ ├── findfdisabled.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folderdisabled.png │ │ │ │ │ ├── folderselected.png │ │ │ │ │ ├── openfiles.png │ │ │ │ │ ├── openfilesdisabled.png │ │ │ │ │ ├── openfilesselected.png │ │ │ │ │ ├── options.png │ │ │ │ │ ├── optionsactive.png │ │ │ │ │ ├── optionsdisabled.png │ │ │ │ │ ├── project.png │ │ │ │ │ ├── projectdisabled.png │ │ │ │ │ ├── projectselected.png │ │ │ │ │ ├── showdir.png │ │ │ │ │ ├── showdirdisabled.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── stopdisabled.png │ │ │ │ │ ├── target.png │ │ │ │ │ ├── targetdisabled.png │ │ │ │ │ ├── targetselected.png │ │ │ │ │ ├── workspace.png │ │ │ │ │ ├── workspacedisabled.png │ │ │ │ │ └── workspaceselected.png │ │ │ │ │ ├── 32x32 │ │ │ │ │ ├── findf.png │ │ │ │ │ ├── findfdisabled.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folderdisabled.png │ │ │ │ │ ├── folderselected.png │ │ │ │ │ ├── openfiles.png │ │ │ │ │ ├── openfilesdisabled.png │ │ │ │ │ ├── openfilesselected.png │ │ │ │ │ ├── options.png │ │ │ │ │ ├── optionsactive.png │ │ │ │ │ ├── optionsdisabled.png │ │ │ │ │ ├── project.png │ │ │ │ │ ├── projectdisabled.png │ │ │ │ │ ├── projectselected.png │ │ │ │ │ ├── showdir.png │ │ │ │ │ ├── showdirdisabled.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── stopdisabled.png │ │ │ │ │ ├── target.png │ │ │ │ │ ├── targetdisabled.png │ │ │ │ │ ├── targetselected.png │ │ │ │ │ ├── workspace.png │ │ │ │ │ ├── workspacedisabled.png │ │ │ │ │ └── workspaceselected.png │ │ │ │ │ ├── 40x40 │ │ │ │ │ ├── findf.png │ │ │ │ │ ├── findfdisabled.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folderdisabled.png │ │ │ │ │ ├── folderselected.png │ │ │ │ │ ├── openfiles.png │ │ │ │ │ ├── openfilesdisabled.png │ │ │ │ │ ├── openfilesselected.png │ │ │ │ │ ├── options.png │ │ │ │ │ ├── optionsactive.png │ │ │ │ │ ├── optionsdisabled.png │ │ │ │ │ ├── project.png │ │ │ │ │ ├── projectdisabled.png │ │ │ │ │ ├── projectselected.png │ │ │ │ │ ├── showdir.png │ │ │ │ │ ├── showdirdisabled.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── stopdisabled.png │ │ │ │ │ ├── target.png │ │ │ │ │ ├── targetdisabled.png │ │ │ │ │ ├── targetselected.png │ │ │ │ │ ├── workspace.png │ │ │ │ │ ├── workspacedisabled.png │ │ │ │ │ └── workspaceselected.png │ │ │ │ │ ├── 48x48 │ │ │ │ │ ├── findf.png │ │ │ │ │ ├── findfdisabled.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folderdisabled.png │ │ │ │ │ ├── folderselected.png │ │ │ │ │ ├── openfiles.png │ │ │ │ │ ├── openfilesdisabled.png │ │ │ │ │ ├── openfilesselected.png │ │ │ │ │ ├── options.png │ │ │ │ │ ├── optionsactive.png │ │ │ │ │ ├── optionsdisabled.png │ │ │ │ │ ├── project.png │ │ │ │ │ ├── projectdisabled.png │ │ │ │ │ ├── projectselected.png │ │ │ │ │ ├── showdir.png │ │ │ │ │ ├── showdirdisabled.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── stopdisabled.png │ │ │ │ │ ├── target.png │ │ │ │ │ ├── targetdisabled.png │ │ │ │ │ ├── targetselected.png │ │ │ │ │ ├── workspace.png │ │ │ │ │ ├── workspacedisabled.png │ │ │ │ │ └── workspaceselected.png │ │ │ │ │ ├── 56x56 │ │ │ │ │ ├── findf.png │ │ │ │ │ ├── findfdisabled.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folderdisabled.png │ │ │ │ │ ├── folderselected.png │ │ │ │ │ ├── openfiles.png │ │ │ │ │ ├── openfilesdisabled.png │ │ │ │ │ ├── openfilesselected.png │ │ │ │ │ ├── options.png │ │ │ │ │ ├── optionsactive.png │ │ │ │ │ ├── optionsdisabled.png │ │ │ │ │ ├── project.png │ │ │ │ │ ├── projectdisabled.png │ │ │ │ │ ├── projectselected.png │ │ │ │ │ ├── showdir.png │ │ │ │ │ ├── showdirdisabled.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── stopdisabled.png │ │ │ │ │ ├── target.png │ │ │ │ │ ├── targetdisabled.png │ │ │ │ │ ├── targetselected.png │ │ │ │ │ ├── workspace.png │ │ │ │ │ ├── workspacedisabled.png │ │ │ │ │ └── workspaceselected.png │ │ │ │ │ └── 64x64 │ │ │ │ │ ├── findf.png │ │ │ │ │ ├── findfdisabled.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folderdisabled.png │ │ │ │ │ ├── folderselected.png │ │ │ │ │ ├── openfiles.png │ │ │ │ │ ├── openfilesdisabled.png │ │ │ │ │ ├── openfilesselected.png │ │ │ │ │ ├── options.png │ │ │ │ │ ├── optionsactive.png │ │ │ │ │ ├── optionsdisabled.png │ │ │ │ │ ├── project.png │ │ │ │ │ ├── projectdisabled.png │ │ │ │ │ ├── projectselected.png │ │ │ │ │ ├── showdir.png │ │ │ │ │ ├── showdirdisabled.png │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── stopdisabled.png │ │ │ │ │ ├── target.png │ │ │ │ │ ├── targetdisabled.png │ │ │ │ │ ├── targetselected.png │ │ │ │ │ ├── workspace.png │ │ │ │ │ ├── workspacedisabled.png │ │ │ │ │ └── workspaceselected.png │ │ │ ├── update │ │ │ ├── update.bat │ │ │ ├── update30 │ │ │ ├── update31.bat │ │ │ └── update31_64.bat │ │ ├── ToolsPlus │ │ │ ├── CmdConfigDialog.cpp │ │ │ ├── CmdConfigDialog.h │ │ │ ├── Makefile.am │ │ │ ├── PipedProcessCtrl.cpp │ │ │ ├── PipedProcessCtrl.h │ │ │ ├── Resources │ │ │ │ ├── Makefile.am │ │ │ │ ├── ToolsPlus-icon.svg │ │ │ │ ├── ToolsPlus-off.png │ │ │ │ ├── ToolsPlus.png │ │ │ │ ├── cmddialog.fbp │ │ │ │ └── dialogs.fbp │ │ │ ├── ShellCtrlBase.cpp │ │ │ ├── ShellCtrlBase.h │ │ │ ├── ToolsPlus.cpp │ │ │ ├── ToolsPlus.h │ │ │ ├── ToolsPlus_wx30-unix.cbp │ │ │ ├── ToolsPlus_wx31.cbp │ │ │ ├── ToolsPlus_wx31_64.cbp │ │ │ ├── manifest.xml │ │ │ ├── se_globals.cpp │ │ │ ├── se_globals.h │ │ │ ├── shellproperties.cpp │ │ │ ├── shellproperties.h │ │ │ ├── update │ │ │ ├── update.bat │ │ │ ├── update30 │ │ │ ├── update31.bat │ │ │ └── update31_64.bat │ │ ├── Valgrind │ │ │ ├── Makefile.am │ │ │ ├── Valgrind.cpp │ │ │ ├── Valgrind.h │ │ │ ├── ValgrindListLog.cpp │ │ │ ├── ValgrindListLog.h │ │ │ ├── Valgrind_wx30-unix.cbp │ │ │ ├── resources │ │ │ │ ├── Makefile.am │ │ │ │ ├── images │ │ │ │ │ ├── valgrind-off.png │ │ │ │ │ └── valgrind.png │ │ │ │ └── manifest.xml │ │ │ ├── update │ │ │ ├── update30 │ │ │ ├── valgrind_config.cpp │ │ │ ├── valgrind_config.h │ │ │ └── wxsmith │ │ │ │ └── valgrind_config_panel.wxs │ │ ├── appdata │ │ │ └── Makefile.am │ │ ├── byogames │ │ │ ├── Makefile.am │ │ │ ├── byocbtris.cpp │ │ │ ├── byocbtris.h │ │ │ ├── byoconf.cpp │ │ │ ├── byoconf.h │ │ │ ├── byogame.cpp │ │ │ ├── byogame.h │ │ │ ├── byogamebase.cpp │ │ │ ├── byogamebase.h │ │ │ ├── byogames.cpp │ │ │ ├── byogames.h │ │ │ ├── byogames_wx30-unix.cbp │ │ │ ├── byogames_wx31.cbp │ │ │ ├── byogames_wx31_64.cbp │ │ │ ├── byogameselect.cpp │ │ │ ├── byogameselect.h │ │ │ ├── byosnake.cpp │ │ │ ├── byosnake.h │ │ │ ├── manifest.xml │ │ │ └── wxsmith │ │ │ │ ├── byoConf.wxs │ │ │ │ └── byoGameSelect.wxs │ │ ├── cb_koders │ │ │ ├── Makefile.am │ │ │ ├── cb_koders.cpp │ │ │ ├── cb_koders.h │ │ │ ├── cb_koders_wx30-unix.cbp │ │ │ ├── cb_koders_wx31.cbp │ │ │ ├── cb_koders_wx31_64.cbp │ │ │ ├── kodersdialog.cpp │ │ │ ├── kodersdialog.h │ │ │ ├── manifest.xml │ │ │ └── wxsmith │ │ │ │ └── KodersDialog.wxs │ │ ├── codesnippets │ │ │ ├── FileImport.h │ │ │ ├── GenericMessageBox.cpp │ │ │ ├── GenericMessageBox.h │ │ │ ├── Makefile.am │ │ │ ├── Search │ │ │ │ ├── DirectoryParamsPanel.cpp │ │ │ │ ├── DirectoryParamsPanel.h │ │ │ │ ├── InsertIndexManager.cpp │ │ │ │ ├── InsertIndexManager.h │ │ │ │ ├── MainPanel.cpp │ │ │ │ ├── MainPanel.h │ │ │ │ ├── SearchInPanel.cpp │ │ │ │ ├── SearchInPanel.h │ │ │ │ ├── TextFileSearcher.cpp │ │ │ │ ├── TextFileSearcher.h │ │ │ │ ├── TextFileSearcherRegEx.cpp │ │ │ │ ├── TextFileSearcherRegEx.h │ │ │ │ ├── TextFileSearcherText.cpp │ │ │ │ ├── TextFileSearcherText.h │ │ │ │ ├── ThreadSearch.cpp │ │ │ │ ├── ThreadSearch.h │ │ │ │ ├── ThreadSearchConfPanel.cpp │ │ │ │ ├── ThreadSearchConfPanel.h │ │ │ │ ├── ThreadSearchControlIds.h │ │ │ │ ├── ThreadSearchEvent.cpp │ │ │ │ ├── ThreadSearchEvent.h │ │ │ │ ├── ThreadSearchFindData.cpp │ │ │ │ ├── ThreadSearchFindData.h │ │ │ │ ├── ThreadSearchFrame.cpp │ │ │ │ ├── ThreadSearchFrame.h │ │ │ │ ├── ThreadSearchLoggerBase.cpp │ │ │ │ ├── ThreadSearchLoggerBase.h │ │ │ │ ├── ThreadSearchLoggerList.cpp │ │ │ │ ├── ThreadSearchLoggerList.h │ │ │ │ ├── ThreadSearchLoggerTree.cpp │ │ │ │ ├── ThreadSearchLoggerTree.h │ │ │ │ ├── ThreadSearchThread.cpp │ │ │ │ ├── ThreadSearchThread.h │ │ │ │ ├── ThreadSearchTrace.cpp │ │ │ │ ├── ThreadSearchTrace.h │ │ │ │ ├── ThreadSearchView.cpp │ │ │ │ ├── ThreadSearchView.h │ │ │ │ ├── ThreadSearchViewManagerBase.cpp │ │ │ │ ├── ThreadSearchViewManagerBase.h │ │ │ │ ├── ThreadSearchViewManagerLayout.cpp │ │ │ │ ├── ThreadSearchViewManagerLayout.h │ │ │ │ ├── ThreadSearchViewManagerMessagesNotebook.cpp │ │ │ │ ├── ThreadSearchViewManagerMessagesNotebook.h │ │ │ │ └── logging.h │ │ │ ├── codesnippets.1 │ │ │ ├── codesnippets.cpp │ │ │ ├── codesnippets.h │ │ │ ├── codesnippets_wx30-unix.cbp │ │ │ ├── codesnippets_wx31.cbp │ │ │ ├── codesnippets_wx31_64.cbp │ │ │ ├── codesnippetsapp.cpp │ │ │ ├── codesnippetsapp.h │ │ │ ├── codesnippetsevent.cpp │ │ │ ├── codesnippetsevent.h │ │ │ ├── codesnippetstreectrl.cpp │ │ │ ├── codesnippetstreectrl.h │ │ │ ├── codesnippetswindow.cpp │ │ │ ├── codesnippetswindow.h │ │ │ ├── csutils.cpp │ │ │ ├── csutils.h │ │ │ ├── editsnippetframe.cpp │ │ │ ├── editsnippetframe.h │ │ │ ├── finddialogs.cpp │ │ │ ├── finddialogs.h │ │ │ ├── generic.Manifest │ │ │ ├── generic.rc │ │ │ ├── license.txt │ │ │ ├── manifest.xml │ │ │ ├── menuidentifiers.h │ │ │ ├── readme.html │ │ │ ├── resources │ │ │ │ ├── Makefile.am │ │ │ │ ├── allsnippets.png │ │ │ │ ├── category.png │ │ │ │ ├── findf.png │ │ │ │ ├── findfdisabled.png │ │ │ │ ├── manifest.xml │ │ │ │ ├── options.png │ │ │ │ ├── optionsdisabled.png │ │ │ │ ├── snippet.png │ │ │ │ ├── stop.png │ │ │ │ └── stopdisabled.png │ │ │ ├── settingsdlg.cpp │ │ │ ├── settingsdlg.h │ │ │ ├── settingsdlgform.cpp │ │ │ ├── settingsdlgform.h │ │ │ ├── snippetitemdata.cpp │ │ │ ├── snippetitemdata.h │ │ │ ├── snippetproperty.cpp │ │ │ ├── snippetproperty.h │ │ │ ├── snippetpropertyform.cpp │ │ │ ├── snippetpropertyform.h │ │ │ ├── snippetsconfig.cpp │ │ │ ├── snippetsconfig.h │ │ │ ├── snippetsimages.cpp │ │ │ ├── snippetsimages.h │ │ │ ├── update │ │ │ ├── update.bat │ │ │ ├── update30 │ │ │ ├── update31.bat │ │ │ ├── update31_64.bat │ │ │ ├── version.cpp │ │ │ ├── version.h │ │ │ └── wx_pch.h │ │ ├── codestat │ │ │ ├── BuildInstructions.txt │ │ │ ├── InstallationInstructions.txt │ │ │ ├── Makefile.am │ │ │ ├── codestat.cpp │ │ │ ├── codestat.h │ │ │ ├── codestat_wx30-unix.cbp │ │ │ ├── codestat_wx31.cbp │ │ │ ├── codestat_wx31_64.cbp │ │ │ ├── codestatconfig.cpp │ │ │ ├── codestatconfig.h │ │ │ ├── codestatexec.cpp │ │ │ ├── codestatexec.h │ │ │ ├── language_def.h │ │ │ └── resources │ │ │ │ ├── Makefile.am │ │ │ │ ├── config_dialog.xrc │ │ │ │ ├── main_dialog.xrc │ │ │ │ └── manifest.xml │ │ ├── copystrings │ │ │ ├── Makefile.am │ │ │ ├── copystrings.cpp │ │ │ ├── copystrings.h │ │ │ ├── copystrings_wx30-unix.cbp │ │ │ ├── copystrings_wx31.cbp │ │ │ ├── copystrings_wx31_64.cbp │ │ │ └── manifest.xml │ │ ├── devpak_plugin │ │ │ ├── DevPakPlugin_wx31.cbp │ │ │ ├── DevPakPlugin_wx31_64.cbp │ │ │ ├── Makefile.am │ │ │ ├── bzip2 │ │ │ │ ├── CHANGES │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile-libbz2_so │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.original │ │ │ │ ├── README │ │ │ │ ├── README.COMPILATION.PROBLEMS │ │ │ │ ├── README.CodeBlocks │ │ │ │ ├── blocksort.c │ │ │ │ ├── bzlib.c │ │ │ │ ├── bzlib.h │ │ │ │ ├── bzlib_private.h │ │ │ │ ├── compress.c │ │ │ │ ├── crctable.c │ │ │ │ ├── decompress.c │ │ │ │ ├── huffman.c │ │ │ │ ├── makefile.msc │ │ │ │ └── randtable.c │ │ │ ├── cbiniparser.cpp │ │ │ ├── cbiniparser.h │ │ │ ├── cbnetwork.cpp │ │ │ ├── cbnetwork.h │ │ │ ├── conf.cpp │ │ │ ├── conf.h │ │ │ ├── crc32.cpp │ │ │ ├── crc32.h │ │ │ ├── devpakinstaller.cpp │ │ │ ├── devpakinstaller.h │ │ │ ├── devpakupdater.cpp │ │ │ ├── devpakupdater.h │ │ │ ├── manifest.xml │ │ │ ├── mytar.cpp │ │ │ ├── mytar.h │ │ │ ├── update.xrc │ │ │ ├── updatedlg.cpp │ │ │ └── updatedlg.h │ │ ├── dragscroll │ │ │ ├── DragScroll_wx30-unix.cbp │ │ │ ├── DragScroll_wx31.cbp │ │ │ ├── DragScroll_wx31_64.cbp │ │ │ ├── Makefile.am │ │ │ ├── dragscroll.cpp │ │ │ ├── dragscroll.h │ │ │ ├── dragscrollcfg.cpp │ │ │ ├── dragscrollcfg.h │ │ │ ├── dragscrollevent.cpp │ │ │ ├── dragscrollevent.h │ │ │ └── manifest.xml │ │ ├── envvars │ │ │ ├── Makefile.am │ │ │ ├── envvars.cpp │ │ │ ├── envvars.h │ │ │ ├── envvars.xrc │ │ │ ├── envvars_cfgdlg.cpp │ │ │ ├── envvars_cfgdlg.h │ │ │ ├── envvars_common.cpp │ │ │ ├── envvars_common.h │ │ │ ├── envvars_prjoptdlg.cpp │ │ │ ├── envvars_prjoptdlg.h │ │ │ ├── envvars_wx30-unix.cbp │ │ │ ├── envvars_wx31.cbp │ │ │ ├── envvars_wx31_64.cbp │ │ │ ├── manifest.xml │ │ │ └── project_settings.xrc │ │ ├── headerfixup │ │ │ ├── Makefile.am │ │ │ ├── bindings.cpp │ │ │ ├── bindings.h │ │ │ ├── configuration.cpp │ │ │ ├── configuration.h │ │ │ ├── defaults.cpp │ │ │ ├── execution.cpp │ │ │ ├── execution.h │ │ │ ├── fileanalysis.cpp │ │ │ ├── fileanalysis.h │ │ │ ├── headerfixup.cpp │ │ │ ├── headerfixup.h │ │ │ ├── headerfixup_wx30-unix.cbp │ │ │ ├── headerfixup_wx31.cbp │ │ │ ├── headerfixup_wx31_64.cbp │ │ │ ├── helper.cpp │ │ │ ├── helper.h │ │ │ ├── manifest.xml │ │ │ ├── protocol.cpp │ │ │ ├── protocol.h │ │ │ ├── todo.txt │ │ │ └── wxsmith │ │ │ │ ├── configuration.wxs │ │ │ │ ├── execution.wxs │ │ │ │ └── protocol.wxs │ │ ├── help_plugin │ │ │ ├── HelpConfigDialog.cpp │ │ │ ├── HelpConfigDialog.h │ │ │ ├── MANFrame.cpp │ │ │ ├── MANFrame.h │ │ │ ├── Makefile.am │ │ │ ├── Readme.txt │ │ │ ├── bzip2 │ │ │ │ ├── CHANGES │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile-libbz2_so │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── README.COMPILATION.PROBLEMS │ │ │ │ ├── README.CodeBlocks │ │ │ │ ├── blocksort.c │ │ │ │ ├── bzlib.c │ │ │ │ ├── bzlib.h │ │ │ │ ├── bzlib_private.h │ │ │ │ ├── compress.c │ │ │ │ ├── crctable.c │ │ │ │ ├── decompress.c │ │ │ │ ├── huffman.c │ │ │ │ ├── makefile.msc │ │ │ │ └── randtable.c │ │ │ ├── defs.h │ │ │ ├── help-plugin_wx30-unix.cbp │ │ │ ├── help-plugin_wx31.cbp │ │ │ ├── help-plugin_wx31_64.cbp │ │ │ ├── help_common.cpp │ │ │ ├── help_common.h │ │ │ ├── help_plugin.cpp │ │ │ ├── help_plugin.h │ │ │ ├── help_plugin.xrc │ │ │ ├── images │ │ │ │ ├── 16x16 │ │ │ │ │ ├── zoomin.png │ │ │ │ │ └── zoomout.png │ │ │ │ ├── 20x20 │ │ │ │ │ ├── zoomin.png │ │ │ │ │ └── zoomout.png │ │ │ │ ├── 24x24 │ │ │ │ │ ├── zoomin.png │ │ │ │ │ └── zoomout.png │ │ │ │ ├── 28x28 │ │ │ │ │ ├── zoomin.png │ │ │ │ │ └── zoomout.png │ │ │ │ ├── 32x32 │ │ │ │ │ ├── zoomin.png │ │ │ │ │ └── zoomout.png │ │ │ │ ├── 40x40 │ │ │ │ │ ├── zoomin.png │ │ │ │ │ └── zoomout.png │ │ │ │ ├── 48x48 │ │ │ │ │ ├── zoomin.png │ │ │ │ │ └── zoomout.png │ │ │ │ ├── 56x56 │ │ │ │ │ ├── zoomin.png │ │ │ │ │ └── zoomout.png │ │ │ │ └── 64x64 │ │ │ │ │ ├── zoomin.png │ │ │ │ │ └── zoomout.png │ │ │ ├── index.ini │ │ │ ├── man2html.cpp │ │ │ ├── man2html.h │ │ │ ├── manifest.xml │ │ │ └── zlib │ │ │ │ ├── ChangeLog │ │ │ │ ├── FAQ │ │ │ │ ├── INDEX │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── adler32.c │ │ │ │ ├── compress.c │ │ │ │ ├── configure │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── deflate.c │ │ │ │ ├── deflate.h │ │ │ │ ├── gzclose.c │ │ │ │ ├── gzguts.h │ │ │ │ ├── gzlib.c │ │ │ │ ├── gzread.c │ │ │ │ ├── gzwrite.c │ │ │ │ ├── infback.c │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── trees.c │ │ │ │ ├── trees.h │ │ │ │ ├── uncompr.c │ │ │ │ ├── zconf.h │ │ │ │ ├── zconf.h.cmakein │ │ │ │ ├── zconf.h.in │ │ │ │ ├── zlib.3 │ │ │ │ ├── zlib.h │ │ │ │ ├── zlib.map │ │ │ │ ├── zlib.pc.cmakein │ │ │ │ ├── zlib.pc.in │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ ├── keybinder │ │ │ ├── Makefile.am │ │ │ ├── cJSON.cpp │ │ │ ├── cJSON.h │ │ │ ├── cbKeyConfigPanel.h │ │ │ ├── cbkeyConfigPanel.cpp │ │ │ ├── cbkeybinder.cpp │ │ │ ├── cbkeybinder.h │ │ │ ├── clKeyboardBindingConfig.cpp │ │ │ ├── clKeyboardBindingConfig.h │ │ │ ├── clKeyboardManager.cpp │ │ │ ├── clKeyboardManager.h │ │ │ ├── debugging.h │ │ │ ├── json_node.cpp │ │ │ ├── json_node.h │ │ │ ├── keybinder.cpp │ │ │ ├── keybinder.h │ │ │ ├── keybinder_wx30-unix.cbp │ │ │ ├── keybinder_wx31.cbp │ │ │ ├── keybinder_wx31_64.cbp │ │ │ ├── macros.h │ │ │ ├── manifest.xml │ │ │ ├── menuutils.cpp │ │ │ └── menuutils.h │ │ ├── lib_finder │ │ │ ├── Makefile.am │ │ │ ├── defsdownloaddlg.cpp │ │ │ ├── defsdownloaddlg.h │ │ │ ├── dirlistdlg.cpp │ │ │ ├── dirlistdlg.h │ │ │ ├── headersdetectordlg.cpp │ │ │ ├── headersdetectordlg.h │ │ │ ├── lib_finder.cpp │ │ │ ├── lib_finder.h │ │ │ ├── lib_finder │ │ │ │ ├── Makefile.am │ │ │ │ ├── codeblocks_sdk.xml │ │ │ │ ├── glfw.xml │ │ │ │ ├── readme.txt │ │ │ │ └── wxwidgets.xml │ │ │ ├── lib_finder_wx30-unix.cbp │ │ │ ├── lib_finder_wx31.cbp │ │ │ ├── lib_finder_wx31_64.cbp │ │ │ ├── librariesdlg.cpp │ │ │ ├── librariesdlg.h │ │ │ ├── librarydetectionconfig.h │ │ │ ├── librarydetectionmanager.cpp │ │ │ ├── librarydetectionmanager.h │ │ │ ├── libraryresult.cpp │ │ │ ├── libraryresult.h │ │ │ ├── libselectdlg.cpp │ │ │ ├── libselectdlg.h │ │ │ ├── manifest.xml │ │ │ ├── pkgconfigmanager.cpp │ │ │ ├── pkgconfigmanager.h │ │ │ ├── processingdlg.cpp │ │ │ ├── processingdlg.h │ │ │ ├── projectconfiguration.cpp │ │ │ ├── projectconfiguration.h │ │ │ ├── projectconfigurationpanel.cpp │ │ │ ├── projectconfigurationpanel.h │ │ │ ├── projectmissinglibs.cpp │ │ │ ├── projectmissinglibs.h │ │ │ ├── readme.txt │ │ │ ├── resultmap.cpp │ │ │ ├── resultmap.h │ │ │ ├── update │ │ │ ├── update.bat │ │ │ ├── update30 │ │ │ ├── update31.bat │ │ │ ├── update31_64.bat │ │ │ ├── webresourcesmanager.cpp │ │ │ ├── webresourcesmanager.h │ │ │ └── wxsmith │ │ │ │ ├── DefsDownloadDlg.wxs │ │ │ │ ├── DirListDlg.wxs │ │ │ │ ├── HeadersDetectorDlg.wxs │ │ │ │ ├── LibSelectDlg.wxs │ │ │ │ ├── LibrariesDlg.wxs │ │ │ │ ├── ProcessingDlg.wxs │ │ │ │ ├── ProjectConfigurationPanel.wxs │ │ │ │ └── ProjectMissingLibs.wxs │ │ ├── profiler │ │ │ ├── Makefile.am │ │ │ ├── cbprofiler.cpp │ │ │ ├── cbprofiler.h │ │ │ ├── cbprofiler_wx30-unix.cbp │ │ │ ├── cbprofiler_wx31.cbp │ │ │ ├── cbprofiler_wx31_64.cbp │ │ │ ├── cbprofilerconfig.cpp │ │ │ ├── cbprofilerconfig.h │ │ │ ├── cbprofilerexec.cpp │ │ │ ├── cbprofilerexec.h │ │ │ └── resources │ │ │ │ ├── Makefile.am │ │ │ │ ├── configuration.xrc │ │ │ │ ├── main_dialog.xrc │ │ │ │ └── manifest.xml │ │ ├── regex_testbed │ │ │ ├── Makefile.am │ │ │ ├── RegExTestbed.cpp │ │ │ ├── RegExTestbed.h │ │ │ ├── RegExTestbed_wx30-unix.cbp │ │ │ ├── RegExTestbed_wx31.cbp │ │ │ ├── RegExTestbed_wx31_64.cbp │ │ │ ├── manifest.xml │ │ │ ├── regexdlg.cpp │ │ │ ├── regexdlg.h │ │ │ ├── regexdlg.xrc │ │ │ └── wxsmith │ │ │ │ └── RegExDlg.wxs │ │ ├── rndgen │ │ │ ├── Makefile.am │ │ │ ├── manifest.xml │ │ │ ├── rndgen.cpp │ │ │ ├── rndgen.h │ │ │ ├── rndgen_wx30-unix.cbp │ │ │ ├── rndgen_wx31.cbp │ │ │ ├── rndgen_wx31_64.cbp │ │ │ └── test.c │ │ ├── source_exporter │ │ │ ├── BaseExporter.cpp │ │ │ ├── BaseExporter.h │ │ │ ├── Exporter_wx30-unix.cbp │ │ │ ├── Exporter_wx31.cbp │ │ │ ├── Exporter_wx31_64.cbp │ │ │ ├── HTMLExporter.cpp │ │ │ ├── HTMLExporter.h │ │ │ ├── Makefile.am │ │ │ ├── ODTExporter.cpp │ │ │ ├── ODTExporter.h │ │ │ ├── PDFExporter.cpp │ │ │ ├── PDFExporter.h │ │ │ ├── RTFExporter.cpp │ │ │ ├── RTFExporter.h │ │ │ ├── exporter.cpp │ │ │ ├── exporter.h │ │ │ ├── manifest.xml │ │ │ └── wxPdfDocument │ │ │ │ ├── LICENCE.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.am.org │ │ │ │ ├── docs │ │ │ │ └── Doxyfile │ │ │ │ ├── include │ │ │ │ └── wx │ │ │ │ │ ├── pdfannotation.h │ │ │ │ │ ├── pdfarraydouble.h │ │ │ │ │ ├── pdfarraytypes.h │ │ │ │ │ ├── pdfbarcode.h │ │ │ │ │ ├── pdfbookmark.h │ │ │ │ │ ├── pdfcffdecoder.h │ │ │ │ │ ├── pdfcffindex.h │ │ │ │ │ ├── pdfcjkfontdata.h │ │ │ │ │ ├── pdfcolour.h │ │ │ │ │ ├── pdfcoonspatchmesh.h │ │ │ │ │ ├── pdfcorefontdata.h │ │ │ │ │ ├── pdfdc.h │ │ │ │ │ ├── pdfdoc.h │ │ │ │ │ ├── pdfdoc_version.h │ │ │ │ │ ├── pdfdocdef.h │ │ │ │ │ ├── pdfdocument.h │ │ │ │ │ ├── pdfencoding.h │ │ │ │ │ ├── pdfencrypt.h │ │ │ │ │ ├── pdffont.h │ │ │ │ │ ├── pdffontdata.h │ │ │ │ │ ├── pdffontdatacore.h │ │ │ │ │ ├── pdffontdataopentype.h │ │ │ │ │ ├── pdffontdatatruetype.h │ │ │ │ │ ├── pdffontdatatype0.h │ │ │ │ │ ├── pdffontdatatype1.h │ │ │ │ │ ├── pdffontdescription.h │ │ │ │ │ ├── pdffontdetails.h │ │ │ │ │ ├── pdffontextended.h │ │ │ │ │ ├── pdffontmacosx.h │ │ │ │ │ ├── pdffontmanager.h │ │ │ │ │ ├── pdffontparser.h │ │ │ │ │ ├── pdffontparsertruetype.h │ │ │ │ │ ├── pdffontparsertype1.h │ │ │ │ │ ├── pdffontsubsetcff.h │ │ │ │ │ ├── pdffontsubsettruetype.h │ │ │ │ │ ├── pdffontvolt.h │ │ │ │ │ ├── pdfform.h │ │ │ │ │ ├── pdfgradient.h │ │ │ │ │ ├── pdfgraphics.h │ │ │ │ │ ├── pdfimage.h │ │ │ │ │ ├── pdfinfo.h │ │ │ │ │ ├── pdflayer.h │ │ │ │ │ ├── pdflinestyle.h │ │ │ │ │ ├── pdflinks.h │ │ │ │ │ ├── pdfobjects.h │ │ │ │ │ ├── pdfparser.h │ │ │ │ │ ├── pdfpattern.h │ │ │ │ │ ├── pdfprint.h │ │ │ │ │ ├── pdfproperties.h │ │ │ │ │ ├── pdfrijndael.h │ │ │ │ │ ├── pdfshape.h │ │ │ │ │ ├── pdfspotcolour.h │ │ │ │ │ ├── pdftemplate.h │ │ │ │ │ ├── pdfutility.h │ │ │ │ │ └── pdfxml.h │ │ │ │ ├── lib │ │ │ │ └── fonts │ │ │ │ │ ├── FETA-COPYING │ │ │ │ │ ├── FONT-LICENSES │ │ │ │ │ ├── GFSDIDOT-OFL │ │ │ │ │ ├── GFSDidot.ctg.z │ │ │ │ │ ├── GFSDidot.xml │ │ │ │ │ ├── GFSDidot.z │ │ │ │ │ ├── RaghuBengali.ctg.z │ │ │ │ │ ├── RaghuBengali.z │ │ │ │ │ ├── RaghuGujarati.ctg.z │ │ │ │ │ ├── RaghuGujarati.z │ │ │ │ │ ├── RaghuHindi.ctg.z │ │ │ │ │ ├── RaghuHindi.z │ │ │ │ │ ├── RaghuKannada.ctg.z │ │ │ │ │ ├── RaghuKannada.z │ │ │ │ │ ├── RaghuMalayalam.ctg.z │ │ │ │ │ ├── RaghuMalayalam.z │ │ │ │ │ ├── RaghuOriya.ctg.z │ │ │ │ │ ├── RaghuOriya.z │ │ │ │ │ ├── RaghuPunjabi.ctg.z │ │ │ │ │ ├── RaghuPunjabi.z │ │ │ │ │ ├── RaghuTamil.ctg.z │ │ │ │ │ ├── RaghuTamil.z │ │ │ │ │ ├── RaghuTelugu.ctg.z │ │ │ │ │ ├── RaghuTelugu.z │ │ │ │ │ ├── VERA-COPYRIGHT │ │ │ │ │ ├── big5-hw.xml │ │ │ │ │ ├── big5.xml │ │ │ │ │ ├── calligra.xml │ │ │ │ │ ├── calligra.z │ │ │ │ │ ├── feta-alphabet16.xml │ │ │ │ │ ├── feta-alphabet16.z │ │ │ │ │ ├── feta16.xml │ │ │ │ │ ├── feta16.z │ │ │ │ │ ├── gb-hw.xml │ │ │ │ │ ├── gb.xml │ │ │ │ │ ├── gothic.xml │ │ │ │ │ ├── liz.otf │ │ │ │ │ ├── mincho.xml │ │ │ │ │ ├── pgothic.xml │ │ │ │ │ ├── pmincho.xml │ │ │ │ │ ├── raghubengali.xml │ │ │ │ │ ├── raghugujarati.xml │ │ │ │ │ ├── raghuhindi.xml │ │ │ │ │ ├── raghukannada.xml │ │ │ │ │ ├── raghumalayalam.xml │ │ │ │ │ ├── raghuoriya.xml │ │ │ │ │ ├── raghupunjabi.xml │ │ │ │ │ ├── raghutamil.xml │ │ │ │ │ ├── raghutelugu.xml │ │ │ │ │ ├── sjis-hw.xml │ │ │ │ │ ├── sjis.xml │ │ │ │ │ ├── uhc-hw.xml │ │ │ │ │ ├── uhc.xml │ │ │ │ │ ├── uigothic.xml │ │ │ │ │ ├── urw-nimbus-cyr.afm │ │ │ │ │ ├── urw-nimbus-cyr.pfb │ │ │ │ │ ├── vera.ctg.z │ │ │ │ │ ├── vera.xml │ │ │ │ │ ├── vera.z │ │ │ │ │ ├── verab.ctg.z │ │ │ │ │ ├── verab.xml │ │ │ │ │ ├── verab.z │ │ │ │ │ ├── verabi.ctg.z │ │ │ │ │ ├── verabi.xml │ │ │ │ │ ├── verabi.z │ │ │ │ │ ├── verai.ctg.z │ │ │ │ │ ├── verai.xml │ │ │ │ │ └── verai.z │ │ │ │ ├── makefont │ │ │ │ ├── GFSDidot.otf │ │ │ │ ├── GFSDidot.ufm │ │ │ │ ├── calligra.afm │ │ │ │ ├── calligra.ttf │ │ │ │ ├── cp1250.map │ │ │ │ ├── cp1251.map │ │ │ │ ├── cp1252.map │ │ │ │ ├── cp1253.map │ │ │ │ ├── cp1254.map │ │ │ │ ├── cp1255.map │ │ │ │ ├── cp1257.map │ │ │ │ ├── cp1258.map │ │ │ │ ├── cp874.map │ │ │ │ ├── iso-8859-1.map │ │ │ │ ├── iso-8859-11.map │ │ │ │ ├── iso-8859-15.map │ │ │ │ ├── iso-8859-16.map │ │ │ │ ├── iso-8859-2.map │ │ │ │ ├── iso-8859-4.map │ │ │ │ ├── iso-8859-5.map │ │ │ │ ├── iso-8859-7.map │ │ │ │ ├── iso-8859-9.map │ │ │ │ ├── koi8-r.map │ │ │ │ ├── koi8-u.map │ │ │ │ ├── makefont.cpp │ │ │ │ ├── makefont.ico │ │ │ │ └── makefont.rc │ │ │ │ ├── readme.md │ │ │ │ ├── samples │ │ │ │ ├── minimal │ │ │ │ │ ├── 20k_c1.txt │ │ │ │ │ ├── 20k_c2.txt │ │ │ │ │ ├── apple.gif │ │ │ │ │ ├── attached.txt │ │ │ │ │ ├── attachment.cpp │ │ │ │ │ ├── barcodes.cpp │ │ │ │ │ ├── bookmark.cpp │ │ │ │ │ ├── chart2d.pdf │ │ │ │ │ ├── charting.cpp │ │ │ │ │ ├── circle.png │ │ │ │ │ ├── cjktest.cpp │ │ │ │ │ ├── clipping.cpp │ │ │ │ │ ├── clips.jpg │ │ │ │ │ ├── countries.txt │ │ │ │ │ ├── drawing.cpp │ │ │ │ │ ├── flower.jpg │ │ │ │ │ ├── glasses.png │ │ │ │ │ ├── glyphsample.txt │ │ │ │ │ ├── glyphwriting.cpp │ │ │ │ │ ├── gradients.cpp │ │ │ │ │ ├── icu-sample.txt │ │ │ │ │ ├── image.png │ │ │ │ │ ├── image_with_alpha.png │ │ │ │ │ ├── indic-assamese.txt │ │ │ │ │ ├── indic-bengali.txt │ │ │ │ │ ├── indic-gujarati.txt │ │ │ │ │ ├── indic-hindi.txt │ │ │ │ │ ├── indic-kannada.txt │ │ │ │ │ ├── indic-malayalam.txt │ │ │ │ │ ├── indic-nepali.txt │ │ │ │ │ ├── indic-oriya.txt │ │ │ │ │ ├── indic-punjabi.txt │ │ │ │ │ ├── indic-tamil.txt │ │ │ │ │ ├── indic-telugu.txt │ │ │ │ │ ├── indicfonts.cpp │ │ │ │ │ ├── jsform.cpp │ │ │ │ │ ├── kerning.cpp │ │ │ │ │ ├── labels.cpp │ │ │ │ │ ├── layers.cpp │ │ │ │ │ ├── linear_gradient_coords.jpg │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── mask.png │ │ │ │ │ ├── minimal.cpp │ │ │ │ │ ├── minimal.rc │ │ │ │ │ ├── pattern1.png │ │ │ │ │ ├── pattern2.png │ │ │ │ │ ├── protection.cpp │ │ │ │ │ ├── radial_gradient_coords.jpg │ │ │ │ │ ├── ringmaster.wmf │ │ │ │ │ ├── rotation.cpp │ │ │ │ │ ├── sample.ico │ │ │ │ │ ├── smile.jpg │ │ │ │ │ ├── templates.cpp │ │ │ │ │ ├── transformation.cpp │ │ │ │ │ ├── transparency.cpp │ │ │ │ │ ├── tutorial1.cpp │ │ │ │ │ ├── tutorial2.cpp │ │ │ │ │ ├── tutorial3.cpp │ │ │ │ │ ├── tutorial4.cpp │ │ │ │ │ ├── tutorial5.cpp │ │ │ │ │ ├── tutorial6.cpp │ │ │ │ │ ├── tutorial7.cpp │ │ │ │ │ ├── wmf.cpp │ │ │ │ │ ├── wxpdfdoc.png │ │ │ │ │ └── xmlwrite.cpp │ │ │ │ └── pdfdc │ │ │ │ │ ├── mondrian.ico │ │ │ │ │ ├── mondrian.xpm │ │ │ │ │ ├── printing.cpp │ │ │ │ │ ├── printing.h │ │ │ │ │ ├── printing.rc │ │ │ │ │ ├── smile.jpg │ │ │ │ │ ├── smiley.xpm │ │ │ │ │ ├── test.html │ │ │ │ │ ├── up.gif │ │ │ │ │ └── zebra.xpm │ │ │ │ ├── showfont │ │ │ │ ├── showfont.cpp │ │ │ │ ├── showfont.ico │ │ │ │ ├── showfont.rc │ │ │ │ ├── unicodeblocks.h │ │ │ │ └── unicoderanges.h │ │ │ │ └── src │ │ │ │ ├── pdfannotation.cpp │ │ │ │ ├── pdfbarcode.cpp │ │ │ │ ├── pdfcffdecoder.cpp │ │ │ │ ├── pdfcffindex.cpp │ │ │ │ ├── pdfcjkfontdata.inc │ │ │ │ ├── pdfcmapdata.inc │ │ │ │ ├── pdfcodepagedata.inc │ │ │ │ ├── pdfcolour.cpp │ │ │ │ ├── pdfcolourdata.inc │ │ │ │ ├── pdfcorefontdata.inc │ │ │ │ ├── pdfcorefontkerning.inc │ │ │ │ ├── pdfdc.cpp │ │ │ │ ├── pdfdecode.cpp │ │ │ │ ├── pdfdoc_version.rc │ │ │ │ ├── pdfdocument.cpp │ │ │ │ ├── pdfencoding.cpp │ │ │ │ ├── pdfencrypt.cpp │ │ │ │ ├── pdffont.cpp │ │ │ │ ├── pdffontdata.cpp │ │ │ │ ├── pdffontdatacore.cpp │ │ │ │ ├── pdffontdataopentype.cpp │ │ │ │ ├── pdffontdatatruetype.cpp │ │ │ │ ├── pdffontdatatype0.cpp │ │ │ │ ├── pdffontdatatype1.cpp │ │ │ │ ├── pdffontdescription.cpp │ │ │ │ ├── pdffontdetails.cpp │ │ │ │ ├── pdffontextended.cpp │ │ │ │ ├── pdffontmanager.cpp │ │ │ │ ├── pdffontparser.cpp │ │ │ │ ├── pdffontparsertruetype.cpp │ │ │ │ ├── pdffontparsertype1.cpp │ │ │ │ ├── pdffontsubsetcff.cpp │ │ │ │ ├── pdffontsubsettruetype.cpp │ │ │ │ ├── pdffontvolt.cpp │ │ │ │ ├── pdfform.cpp │ │ │ │ ├── pdfglyphnames.inc │ │ │ │ ├── pdfgradient.cpp │ │ │ │ ├── pdfgraphics.cpp │ │ │ │ ├── pdfimage.cpp │ │ │ │ ├── pdfkernel.cpp │ │ │ │ ├── pdflayer.cpp │ │ │ │ ├── pdfobjects.cpp │ │ │ │ ├── pdfocg.cpp │ │ │ │ ├── pdfparser.cpp │ │ │ │ ├── pdfpattern.cpp │ │ │ │ ├── pdfprint.cpp │ │ │ │ ├── pdfrijndael.cpp │ │ │ │ ├── pdftemplate.cpp │ │ │ │ ├── pdfutility.cpp │ │ │ │ ├── pdfxml.cpp │ │ │ │ ├── srgb2014icc.h │ │ │ │ └── wxmemdbg.h │ │ ├── symtab │ │ │ ├── Makefile.am │ │ │ ├── resources │ │ │ │ ├── Makefile.am │ │ │ │ ├── config_dialog.xrc │ │ │ │ ├── exec_dialog.xrc │ │ │ │ └── manifest.xml │ │ │ ├── symtab.cpp │ │ │ ├── symtab.h │ │ │ ├── symtab_wx30-unix.cbp │ │ │ ├── symtab_wx31.cbp │ │ │ ├── symtab_wx31_64.cbp │ │ │ ├── symtabconfig.cpp │ │ │ ├── symtabconfig.h │ │ │ ├── symtabexec.cpp │ │ │ └── symtabexec.h │ │ ├── wxContribItems │ │ │ ├── KWIC │ │ │ │ ├── CREDITS │ │ │ │ ├── KWIC-LICENSE │ │ │ │ ├── Makefile.am │ │ │ │ ├── include │ │ │ │ │ └── wx │ │ │ │ │ │ ├── KWIC │ │ │ │ │ │ ├── AngularMeter.h │ │ │ │ │ │ ├── AngularRegulator.h │ │ │ │ │ │ ├── BmpCheckBox.h │ │ │ │ │ │ ├── BmpSwitcher.h │ │ │ │ │ │ ├── LCDClock.h │ │ │ │ │ │ ├── LCDWindow.h │ │ │ │ │ │ ├── LinearMeter.h │ │ │ │ │ │ ├── LinearRegulator.h │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ └── TimeAlarm.h │ │ │ │ │ │ └── xrc │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── xh_kwxangularmeterhandler.h │ │ │ │ │ │ ├── xh_kwxangularregulatorhandler.h │ │ │ │ │ │ ├── xh_kwxlcdclockhandler.h │ │ │ │ │ │ ├── xh_kwxlcddisplayhandler.h │ │ │ │ │ │ ├── xh_kwxlinearmeterhandler.h │ │ │ │ │ │ └── xh_kwxlinearregulatorhandler.h │ │ │ │ ├── kwxindustrialcontrols.doc │ │ │ │ └── src │ │ │ │ │ └── wx │ │ │ │ │ ├── KWIC │ │ │ │ │ ├── AngularMeter.cpp │ │ │ │ │ ├── AngularRegulator.cpp │ │ │ │ │ ├── BmpCheckBox.cpp │ │ │ │ │ ├── BmpSwitcher.cpp │ │ │ │ │ ├── LCDClock.cpp │ │ │ │ │ ├── LCDWindow.cpp │ │ │ │ │ ├── LinearMeter.cpp │ │ │ │ │ ├── LinearRegulator.cpp │ │ │ │ │ └── TimeAlarm.cpp │ │ │ │ │ └── xrc │ │ │ │ │ ├── xh_kwxangularmeterhandler.cpp │ │ │ │ │ ├── xh_kwxangularregulatorhandler.cpp │ │ │ │ │ ├── xh_kwxlcdclockhandler.cpp │ │ │ │ │ ├── xh_kwxlcddisplayhandler.cpp │ │ │ │ │ ├── xh_kwxlinearmeterhandler.cpp │ │ │ │ │ └── xh_kwxlinearregulatorhandler.cpp │ │ │ ├── Makefile.am │ │ │ ├── cb_wxKWIC.pc.in │ │ │ ├── cb_wxchartctrl.pc.in │ │ │ ├── cb_wxcontrib.pc.in │ │ │ ├── cb_wxcustombutton.pc.in │ │ │ ├── cb_wxflatnotebook.pc.in │ │ │ ├── cb_wximagepanel.pc.in │ │ │ ├── cb_wxled.pc.in │ │ │ ├── cb_wxmathplot.pc.in │ │ │ ├── cb_wxspeedbutton.pc.in │ │ │ ├── wxContribItems_wx30-unix.cbp │ │ │ ├── wxContribItems_wx31.cbp │ │ │ ├── wxContribItems_wx31_64.cbp │ │ │ ├── wxFlatNotebook │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── include │ │ │ │ │ └── wx │ │ │ │ │ │ └── wxFlatNotebook │ │ │ │ │ │ ├── fnb_customize_dlg.h │ │ │ │ │ │ ├── fnb_resources.h │ │ │ │ │ │ ├── fnb_singleton.h │ │ │ │ │ │ ├── fnb_smart_ptr.h │ │ │ │ │ │ ├── popup_dlg.h │ │ │ │ │ │ ├── renderer.h │ │ │ │ │ │ ├── wxFNBDropTarget.h │ │ │ │ │ │ ├── wxFlatNotebook.h │ │ │ │ │ │ ├── wxFlatNotebookSDK.h │ │ │ │ │ │ └── xh_fnb.h │ │ │ │ └── src │ │ │ │ │ └── wxFlatNotebook │ │ │ │ │ ├── fnb_customize_dlg.cpp │ │ │ │ │ ├── fnb_resources.cpp │ │ │ │ │ ├── popup_dlg.cpp │ │ │ │ │ ├── renderer.cpp │ │ │ │ │ ├── wxFlatNotebook.cpp │ │ │ │ │ └── xh_fnb.cpp │ │ │ ├── wxImagePanel │ │ │ │ ├── Makefile.am │ │ │ │ ├── include │ │ │ │ │ └── wx │ │ │ │ │ │ └── wxImagePanel.h │ │ │ │ └── src │ │ │ │ │ └── wxImagePanel.cpp │ │ │ ├── wxSpeedButton │ │ │ │ ├── Makefile.am │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── wxSpeedButton.cpp │ │ │ │ └── wxSpeedButton.h │ │ │ ├── wxchart │ │ │ │ ├── Makefile.am │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── build │ │ │ │ │ ├── Bakefiles.bkgen │ │ │ │ │ ├── acregen.sh │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── install.sh │ │ │ │ │ ├── makefile.bcc │ │ │ │ │ ├── makefile.gcc │ │ │ │ │ ├── makefile.vc │ │ │ │ │ ├── makefile.wat │ │ │ │ │ ├── msw │ │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ │ ├── wxchart.rc │ │ │ │ │ │ ├── wxchart.sln │ │ │ │ │ │ └── wxchart.vcproj │ │ │ │ │ ├── wxchart.bkl │ │ │ │ │ ├── wxchart.dsw │ │ │ │ │ ├── wxchart_minimal.dsp │ │ │ │ │ └── wxchart_wxchart.dsp │ │ │ │ ├── configure │ │ │ │ ├── include │ │ │ │ │ └── wx │ │ │ │ │ │ ├── axis.h │ │ │ │ │ │ ├── bar3dchartpoints.h │ │ │ │ │ │ ├── barchartpoints.h │ │ │ │ │ │ ├── chart.h │ │ │ │ │ │ ├── chartart │ │ │ │ │ │ ├── chart_zin.bmp │ │ │ │ │ │ ├── chart_zin.xpm │ │ │ │ │ │ ├── chart_zot.bmp │ │ │ │ │ │ └── chart_zot.xpm │ │ │ │ │ │ ├── chartcolors.h │ │ │ │ │ │ ├── chartctrl.h │ │ │ │ │ │ ├── chartdef.h │ │ │ │ │ │ ├── chartpoints.h │ │ │ │ │ │ ├── chartpointstypes.h │ │ │ │ │ │ ├── chartsizes.h │ │ │ │ │ │ ├── charttypes.h │ │ │ │ │ │ ├── chartwindow.h │ │ │ │ │ │ ├── label.h │ │ │ │ │ │ ├── legend.h │ │ │ │ │ │ ├── legendwindow.h │ │ │ │ │ │ ├── pie3dchartpoints.h │ │ │ │ │ │ ├── piechartpoints.h │ │ │ │ │ │ ├── points.h │ │ │ │ │ │ ├── xaxis.h │ │ │ │ │ │ ├── xaxiswindow.h │ │ │ │ │ │ ├── yaxis.h │ │ │ │ │ │ └── yaxiswindow.h │ │ │ │ ├── samples │ │ │ │ │ └── wxchart.cpp │ │ │ │ └── src │ │ │ │ │ ├── axis.cpp │ │ │ │ │ ├── bar3dchartpoints.cpp │ │ │ │ │ ├── barchartpoints.cpp │ │ │ │ │ ├── chart.cpp │ │ │ │ │ ├── chartcolors.cpp │ │ │ │ │ ├── chartctrl.cpp │ │ │ │ │ ├── chartsizes.cpp │ │ │ │ │ ├── chartwindow.cpp │ │ │ │ │ ├── label.cpp │ │ │ │ │ ├── legend.cpp │ │ │ │ │ ├── legendwindow.cpp │ │ │ │ │ ├── pie3dchartpoints.cpp │ │ │ │ │ ├── piechartpoints.cpp │ │ │ │ │ ├── points.cpp │ │ │ │ │ ├── xaxis.cpp │ │ │ │ │ ├── xaxiswindow.cpp │ │ │ │ │ ├── yaxis.cpp │ │ │ │ │ └── yaxiswindow.cpp │ │ │ ├── wxled │ │ │ │ ├── Makefile.am │ │ │ │ ├── gizmosled │ │ │ │ │ ├── include │ │ │ │ │ │ └── wx │ │ │ │ │ │ │ └── gizmos │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── gizmos.h │ │ │ │ │ │ │ └── ledctrl.h │ │ │ │ │ └── src │ │ │ │ │ │ └── ledctrl.cpp │ │ │ │ ├── lcdWindow │ │ │ │ │ ├── include │ │ │ │ │ │ └── wx │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── lcdwindow.h │ │ │ │ │ └── src │ │ │ │ │ │ └── lcdwindow.cpp │ │ │ │ ├── led │ │ │ │ │ ├── include │ │ │ │ │ │ ├── wx │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── led.h │ │ │ │ │ │ │ └── stateLed.h │ │ │ │ │ │ └── xrc │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── xh_ledHandler.h │ │ │ │ │ │ │ └── xh_stateLedHandler.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── led.cpp │ │ │ │ │ │ ├── stateLed.cpp │ │ │ │ │ │ └── xrc │ │ │ │ │ │ ├── xh_ledHandler.cpp │ │ │ │ │ │ └── xh_stateLedHandler.cpp │ │ │ │ └── ledpanel │ │ │ │ │ ├── include │ │ │ │ │ └── wx │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── advancedmatrixobject.h │ │ │ │ │ │ ├── matrixobject.h │ │ │ │ │ │ ├── wxledfont.h │ │ │ │ │ │ └── wxledpanel.h │ │ │ │ │ └── src │ │ │ │ │ ├── advancedmatrixobject.cpp │ │ │ │ │ ├── font75.cpp │ │ │ │ │ ├── font77.cpp │ │ │ │ │ ├── matrixobject.cpp │ │ │ │ │ ├── wxledfont.cpp │ │ │ │ │ └── wxledpanel.cpp │ │ │ ├── wxmathplot │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── mathplot.cpp │ │ │ │ └── mathplot.h │ │ │ ├── wxsmith-contrib.pc.in │ │ │ └── wxthings │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── build │ │ │ │ ├── CMake-doxygen.in │ │ │ │ ├── CMakeFunctions.cmake │ │ │ │ ├── CMakeProject.cmake │ │ │ │ ├── CMakewxAppLib.cmake │ │ │ │ └── readme.txt │ │ │ │ ├── configure │ │ │ │ ├── docs │ │ │ │ └── readme.txt │ │ │ │ ├── include │ │ │ │ └── wx │ │ │ │ │ └── things │ │ │ │ │ ├── block.h │ │ │ │ │ ├── bmpcombo.h │ │ │ │ │ ├── dropdown.h │ │ │ │ │ ├── filebrws.h │ │ │ │ │ ├── genergdi.h │ │ │ │ │ ├── geometry.h │ │ │ │ │ ├── matrix2d.h │ │ │ │ │ ├── medsort.h │ │ │ │ │ ├── menubtn.h │ │ │ │ │ ├── optvalue.h │ │ │ │ │ ├── range.h │ │ │ │ │ ├── spinctld.h │ │ │ │ │ ├── thingdef.h │ │ │ │ │ └── toggle.h │ │ │ │ ├── samples │ │ │ │ ├── filebrws │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── wxfilebrowser.cpp │ │ │ │ │ └── wxfilebrowser.rc │ │ │ │ └── things │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── thingsdemo.cpp │ │ │ │ │ └── thingsdemo.rc │ │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── block.cpp │ │ │ │ ├── bmpcombo.cpp │ │ │ │ ├── dropdown.cpp │ │ │ │ ├── filebrws.cpp │ │ │ │ ├── filedlgg.cpp │ │ │ │ ├── genergdi.cpp │ │ │ │ ├── geometry.cpp │ │ │ │ ├── matrix2d.cpp │ │ │ │ ├── menubtn.cpp │ │ │ │ ├── optvalue.cpp │ │ │ │ ├── precomp.cpp │ │ │ │ ├── precomp.h │ │ │ │ ├── range.cpp │ │ │ │ ├── spinctld.cpp │ │ │ │ └── toggle.cpp │ │ ├── wxSmith │ │ │ ├── Makefile.am │ │ │ ├── manifest.xml │ │ │ ├── plugin │ │ │ │ ├── Makefile.am │ │ │ │ └── wxsmithpluginregistrants.cpp │ │ │ ├── properties │ │ │ │ ├── Makefile.am │ │ │ │ ├── wxsarraystringeditordlg.cpp │ │ │ │ ├── wxsarraystringeditordlg.h │ │ │ │ ├── wxsarraystringproperty.cpp │ │ │ │ ├── wxsarraystringproperty.h │ │ │ │ ├── wxsboolproperty.cpp │ │ │ │ ├── wxsboolproperty.h │ │ │ │ ├── wxscustomeditorproperty.cpp │ │ │ │ ├── wxscustomeditorproperty.h │ │ │ │ ├── wxseditenumproperty.cpp │ │ │ │ ├── wxseditenumproperty.h │ │ │ │ ├── wxsemptyproperty.cpp │ │ │ │ ├── wxsemptyproperty.h │ │ │ │ ├── wxsenumproperty.cpp │ │ │ │ ├── wxsenumproperty.h │ │ │ │ ├── wxsflagsproperty.cpp │ │ │ │ ├── wxsflagsproperty.h │ │ │ │ ├── wxsfloatproperty.cpp │ │ │ │ ├── wxsfloatproperty.h │ │ │ │ ├── wxslongproperty.cpp │ │ │ │ ├── wxslongproperty.h │ │ │ │ ├── wxsproperties.h │ │ │ │ ├── wxsproperty.cpp │ │ │ │ ├── wxsproperty.h │ │ │ │ ├── wxspropertycontainer.cpp │ │ │ │ ├── wxspropertycontainer.h │ │ │ │ ├── wxspropertygridmanager.cpp │ │ │ │ ├── wxspropertygridmanager.h │ │ │ │ ├── wxspropertystream.cpp │ │ │ │ ├── wxspropertystream.h │ │ │ │ ├── wxsquickpropspanel.cpp │ │ │ │ ├── wxsquickpropspanel.h │ │ │ │ ├── wxsstringproperty.cpp │ │ │ │ ├── wxsstringproperty.h │ │ │ │ ├── wxstwolongproperty.cpp │ │ │ │ └── wxstwolongproperty.h │ │ │ ├── update │ │ │ ├── update.bat │ │ │ ├── update30 │ │ │ ├── update31.bat │ │ │ ├── update31_64.bat │ │ │ ├── wxSmith_wx30-unix.cbp │ │ │ ├── wxSmith_wx31.cbp │ │ │ ├── wxSmith_wx31_64.cbp │ │ │ ├── wxs.doxy │ │ │ ├── wxsadvqpp.cpp │ │ │ ├── wxsadvqpp.h │ │ │ ├── wxsadvqppchild.cpp │ │ │ ├── wxsadvqppchild.h │ │ │ ├── wxsautoresourcetreeimage.cpp │ │ │ ├── wxsautoresourcetreeimage.h │ │ │ ├── wxscoder.cpp │ │ │ ├── wxscoder.h │ │ │ ├── wxscodinglang.cpp │ │ │ ├── wxscodinglang.h │ │ │ ├── wxseditor.cpp │ │ │ ├── wxseditor.h │ │ │ ├── wxsextresmanager.cpp │ │ │ ├── wxsextresmanager.h │ │ │ ├── wxsgui.cpp │ │ │ ├── wxsgui.h │ │ │ ├── wxsguifactory.cpp │ │ │ ├── wxsguifactory.h │ │ │ ├── wxsmith.cpp │ │ │ ├── wxsmith.h │ │ │ ├── wxsmith.pc.in │ │ │ ├── wxsmith │ │ │ │ ├── wxWidgetsGUIAppAdoptingDlg.wxs │ │ │ │ ├── wxWidgetsGUIConfigPanel.wxs │ │ │ │ ├── wxsArrayStringCheckEditorDlg.wxs │ │ │ │ ├── wxsArrayStringEditorDlg.wxs │ │ │ │ ├── wxsBitmapIconEditorDlg.wxs │ │ │ │ ├── wxsChoicebookParentQP.wxs │ │ │ │ ├── wxsDeleteItemRes.wxs │ │ │ │ ├── wxsFontEditorDlg.wxs │ │ │ │ ├── wxsFontFaceEditorDlg.wxs │ │ │ │ ├── wxsImageComboEditorDlg.wxs │ │ │ │ ├── wxsImageListEditorDlg.wxs │ │ │ │ ├── wxsImageTreeEditorDlg.wxs │ │ │ │ ├── wxsListbookParentQP.wxs │ │ │ │ ├── wxsNewWindowDlg.wxs │ │ │ │ ├── wxsNotebookParentQP.wxs │ │ │ │ ├── wxsProjectConfigurationDlg.wxs │ │ │ │ ├── wxsSettings.wxs │ │ │ │ ├── wxsSimpleFontEditorDlg.wxs │ │ │ │ ├── wxsSizerParentQP.wxs │ │ │ │ ├── wxsStandardQP.wxs │ │ │ │ ├── wxsmenueditor.wxs │ │ │ │ └── wxstoolbareditor.wxs │ │ │ ├── wxsmithmime.cpp │ │ │ ├── wxsmithmime.h │ │ │ ├── wxsproject.cpp │ │ │ ├── wxsproject.h │ │ │ ├── wxsresource.cpp │ │ │ ├── wxsresource.h │ │ │ ├── wxsresourcefactory.cpp │ │ │ ├── wxsresourcefactory.h │ │ │ ├── wxsresourcetree.cpp │ │ │ ├── wxsresourcetree.h │ │ │ ├── wxsresourcetreeitemdata.cpp │ │ │ ├── wxsresourcetreeitemdata.h │ │ │ ├── wxssettings.cpp │ │ │ ├── wxssettings.h │ │ │ ├── wxsstoringsplitterwindow.cpp │ │ │ ├── wxsstoringsplitterwindow.h │ │ │ ├── wxsversionconverter.cpp │ │ │ ├── wxsversionconverter.h │ │ │ └── wxwidgets │ │ │ │ ├── Makefile.am │ │ │ │ ├── defitems │ │ │ │ ├── Makefile.am │ │ │ │ ├── wxsanimationctrl.cpp │ │ │ │ ├── wxsanimationctrl.h │ │ │ │ ├── wxsbitmapbutton.cpp │ │ │ │ ├── wxsbitmapbutton.h │ │ │ │ ├── wxsbitmapcombobox.cpp │ │ │ │ ├── wxsbitmapcombobox.h │ │ │ │ ├── wxsboxsizer.cpp │ │ │ │ ├── wxsboxsizer.h │ │ │ │ ├── wxsbutton.cpp │ │ │ │ ├── wxsbutton.h │ │ │ │ ├── wxscalendarctrl.cpp │ │ │ │ ├── wxscalendarctrl.h │ │ │ │ ├── wxscheckbox.cpp │ │ │ │ ├── wxscheckbox.h │ │ │ │ ├── wxschecklistbox.cpp │ │ │ │ ├── wxschecklistbox.h │ │ │ │ ├── wxschoice.cpp │ │ │ │ ├── wxschoice.h │ │ │ │ ├── wxschoicebook.cpp │ │ │ │ ├── wxschoicebook.h │ │ │ │ ├── wxscolourdialog.cpp │ │ │ │ ├── wxscolourdialog.h │ │ │ │ ├── wxscolourpickerctrl.cpp │ │ │ │ ├── wxscolourpickerctrl.h │ │ │ │ ├── wxscombobox.cpp │ │ │ │ ├── wxscombobox.h │ │ │ │ ├── wxscontexthelpbutton.cpp │ │ │ │ ├── wxscontexthelpbutton.h │ │ │ │ ├── wxscustomwidget.cpp │ │ │ │ ├── wxscustomwidget.h │ │ │ │ ├── wxsdataviewctrl.cpp │ │ │ │ ├── wxsdataviewctrl.h │ │ │ │ ├── wxsdataviewlistctrl.cpp │ │ │ │ ├── wxsdataviewlistctrl.h │ │ │ │ ├── wxsdataviewtreectrl.cpp │ │ │ │ ├── wxsdataviewtreectrl.h │ │ │ │ ├── wxsdatepickerctrl.cpp │ │ │ │ ├── wxsdatepickerctrl.h │ │ │ │ ├── wxsdialog.cpp │ │ │ │ ├── wxsdialog.h │ │ │ │ ├── wxsdialupmanager.cpp │ │ │ │ ├── wxsdialupmanager.h │ │ │ │ ├── wxsdirdialog.cpp │ │ │ │ ├── wxsdirdialog.h │ │ │ │ ├── wxsdirpickerctrl.cpp │ │ │ │ ├── wxsdirpickerctrl.h │ │ │ │ ├── wxsfiledialog.cpp │ │ │ │ ├── wxsfiledialog.h │ │ │ │ ├── wxsfilepickerctrl.cpp │ │ │ │ ├── wxsfilepickerctrl.h │ │ │ │ ├── wxsfindreplacedialog.cpp │ │ │ │ ├── wxsfindreplacedialog.h │ │ │ │ ├── wxsflexgridsizer.cpp │ │ │ │ ├── wxsflexgridsizer.h │ │ │ │ ├── wxsfontdialog.cpp │ │ │ │ ├── wxsfontdialog.h │ │ │ │ ├── wxsfontpickerctrl.cpp │ │ │ │ ├── wxsfontpickerctrl.h │ │ │ │ ├── wxsframe.cpp │ │ │ │ ├── wxsframe.h │ │ │ │ ├── wxsgauge.cpp │ │ │ │ ├── wxsgauge.h │ │ │ │ ├── wxsgenericdirctrl.cpp │ │ │ │ ├── wxsgenericdirctrl.h │ │ │ │ ├── wxsglcanvas.cpp │ │ │ │ ├── wxsglcanvas.h │ │ │ │ ├── wxsgrid.cpp │ │ │ │ ├── wxsgrid.h │ │ │ │ ├── wxsgridsizer.cpp │ │ │ │ ├── wxsgridsizer.h │ │ │ │ ├── wxshtmleasyprinting.cpp │ │ │ │ ├── wxshtmleasyprinting.h │ │ │ │ ├── wxshtmlwindow.cpp │ │ │ │ ├── wxshtmlwindow.h │ │ │ │ ├── wxshyperlinkctrl.cpp │ │ │ │ ├── wxshyperlinkctrl.h │ │ │ │ ├── wxsimage.cpp │ │ │ │ ├── wxsimage.h │ │ │ │ ├── wxsimagelist.cpp │ │ │ │ ├── wxsimagelist.h │ │ │ │ ├── wxslistbook.cpp │ │ │ │ ├── wxslistbook.h │ │ │ │ ├── wxslistbox.cpp │ │ │ │ ├── wxslistbox.h │ │ │ │ ├── wxslistctrl.cpp │ │ │ │ ├── wxslistctrl.h │ │ │ │ ├── wxslistview.cpp │ │ │ │ ├── wxslistview.h │ │ │ │ ├── wxsmediactrl.cpp │ │ │ │ ├── wxsmediactrl.h │ │ │ │ ├── wxsmenu.cpp │ │ │ │ ├── wxsmenu.h │ │ │ │ ├── wxsmenubar.cpp │ │ │ │ ├── wxsmenubar.h │ │ │ │ ├── wxsmenueditor.cpp │ │ │ │ ├── wxsmenueditor.h │ │ │ │ ├── wxsmenuitem.cpp │ │ │ │ ├── wxsmenuitem.h │ │ │ │ ├── wxsmessagedialog.cpp │ │ │ │ ├── wxsmessagedialog.h │ │ │ │ ├── wxsmultichoicedialog.cpp │ │ │ │ ├── wxsmultichoicedialog.h │ │ │ │ ├── wxsnotebook.cpp │ │ │ │ ├── wxsnotebook.h │ │ │ │ ├── wxspagesetupdialog.cpp │ │ │ │ ├── wxspagesetupdialog.h │ │ │ │ ├── wxspanel.cpp │ │ │ │ ├── wxspanel.h │ │ │ │ ├── wxspasswordentrydialog.cpp │ │ │ │ ├── wxspasswordentrydialog.h │ │ │ │ ├── wxsprintdialog.cpp │ │ │ │ ├── wxsprintdialog.h │ │ │ │ ├── wxsprogressdialog.cpp │ │ │ │ ├── wxsprogressdialog.h │ │ │ │ ├── wxsradiobox.cpp │ │ │ │ ├── wxsradiobox.h │ │ │ │ ├── wxsradiobutton.cpp │ │ │ │ ├── wxsradiobutton.h │ │ │ │ ├── wxsrichtextctrl.cpp │ │ │ │ ├── wxsrichtextctrl.h │ │ │ │ ├── wxsrichtextformattingdialog.cpp │ │ │ │ ├── wxsrichtextformattingdialog.h │ │ │ │ ├── wxsrichtextstylecomboctrl.cpp │ │ │ │ ├── wxsrichtextstylecomboctrl.h │ │ │ │ ├── wxsrichtextstylelistbox.cpp │ │ │ │ ├── wxsrichtextstylelistbox.h │ │ │ │ ├── wxsrichtextstylelistctrl.cpp │ │ │ │ ├── wxsrichtextstylelistctrl.h │ │ │ │ ├── wxsrichtextstyleorganiserdialog.cpp │ │ │ │ ├── wxsrichtextstyleorganiserdialog.h │ │ │ │ ├── wxssashlayoutwindow.cpp │ │ │ │ ├── wxssashlayoutwindow.h │ │ │ │ ├── wxssashwindow.cpp │ │ │ │ ├── wxssashwindow.h │ │ │ │ ├── wxsscrollbar.cpp │ │ │ │ ├── wxsscrollbar.h │ │ │ │ ├── wxsscrolledwindow.cpp │ │ │ │ ├── wxsscrolledwindow.h │ │ │ │ ├── wxsscrollingdialog.cpp │ │ │ │ ├── wxsscrollingdialog.h │ │ │ │ ├── wxssearchctrl.cpp │ │ │ │ ├── wxssearchctrl.h │ │ │ │ ├── wxssimplehtmllistbox.cpp │ │ │ │ ├── wxssimplehtmllistbox.h │ │ │ │ ├── wxssinglechoicedialog.cpp │ │ │ │ ├── wxssinglechoicedialog.h │ │ │ │ ├── wxssingleinstancechecker.cpp │ │ │ │ ├── wxssingleinstancechecker.h │ │ │ │ ├── wxsslider.cpp │ │ │ │ ├── wxsslider.h │ │ │ │ ├── wxsspacer.cpp │ │ │ │ ├── wxsspacer.h │ │ │ │ ├── wxsspinbutton.cpp │ │ │ │ ├── wxsspinbutton.h │ │ │ │ ├── wxsspinctrl.cpp │ │ │ │ ├── wxsspinctrl.h │ │ │ │ ├── wxsspinctrldouble.cpp │ │ │ │ ├── wxsspinctrldouble.h │ │ │ │ ├── wxssplitterwindow.cpp │ │ │ │ ├── wxssplitterwindow.h │ │ │ │ ├── wxsstaticbitmap.cpp │ │ │ │ ├── wxsstaticbitmap.h │ │ │ │ ├── wxsstaticbox.cpp │ │ │ │ ├── wxsstaticbox.h │ │ │ │ ├── wxsstaticboxsizer.cpp │ │ │ │ ├── wxsstaticboxsizer.h │ │ │ │ ├── wxsstaticline.cpp │ │ │ │ ├── wxsstaticline.h │ │ │ │ ├── wxsstatictext.cpp │ │ │ │ ├── wxsstatictext.h │ │ │ │ ├── wxsstatusbar.cpp │ │ │ │ ├── wxsstatusbar.h │ │ │ │ ├── wxsstddialogbuttonsizer.cpp │ │ │ │ ├── wxsstddialogbuttonsizer.h │ │ │ │ ├── wxsstopwatch.cpp │ │ │ │ ├── wxsstopwatch.h │ │ │ │ ├── wxssymbolpickerdialog.cpp │ │ │ │ ├── wxssymbolpickerdialog.h │ │ │ │ ├── wxstextctrl.cpp │ │ │ │ ├── wxstextctrl.h │ │ │ │ ├── wxstextentrydialog.cpp │ │ │ │ ├── wxstextentrydialog.h │ │ │ │ ├── wxstimer.cpp │ │ │ │ ├── wxstimer.h │ │ │ │ ├── wxstogglebutton.cpp │ │ │ │ ├── wxstogglebutton.h │ │ │ │ ├── wxstoolbar.cpp │ │ │ │ ├── wxstoolbar.h │ │ │ │ ├── wxstoolbareditor.cpp │ │ │ │ ├── wxstoolbareditor.h │ │ │ │ ├── wxstoolbaritem.cpp │ │ │ │ ├── wxstoolbaritem.h │ │ │ │ ├── wxstreebook.cpp │ │ │ │ ├── wxstreebook.h │ │ │ │ ├── wxstreectrl.cpp │ │ │ │ └── wxstreectrl.h │ │ │ │ ├── icons │ │ │ │ ├── Custom16.png │ │ │ │ ├── Custom32.png │ │ │ │ ├── Makefile.am │ │ │ │ ├── Spacer16.png │ │ │ │ ├── Spacer32.png │ │ │ │ ├── deletewidget16.png │ │ │ │ ├── deletewidget32.png │ │ │ │ ├── insertafter16.png │ │ │ │ ├── insertafter32.png │ │ │ │ ├── insertbefore16.png │ │ │ │ ├── insertbefore32.png │ │ │ │ ├── insertinto16.png │ │ │ │ ├── insertinto32.png │ │ │ │ ├── insertpoint16.png │ │ │ │ ├── insertpoint32.png │ │ │ │ ├── quickpropsclose16.png │ │ │ │ ├── quickpropsclose32.png │ │ │ │ ├── quickpropsopen16.png │ │ │ │ ├── quickpropsopen32.png │ │ │ │ ├── selected16.png │ │ │ │ ├── selected32.png │ │ │ │ ├── showpreview16.png │ │ │ │ ├── showpreview32.png │ │ │ │ ├── tools16.png │ │ │ │ ├── wxAnimationCtrl16.png │ │ │ │ ├── wxAnimationCtrl32.png │ │ │ │ ├── wxBitmapButton16.png │ │ │ │ ├── wxBitmapButton32.png │ │ │ │ ├── wxBitmapComboBox16.png │ │ │ │ ├── wxBitmapComboBox32.png │ │ │ │ ├── wxBoxSizer16.png │ │ │ │ ├── wxBoxSizer32.png │ │ │ │ ├── wxButton16.png │ │ │ │ ├── wxButton32.png │ │ │ │ ├── wxCalendarCtrl16.png │ │ │ │ ├── wxCalendarCtrl32.png │ │ │ │ ├── wxCheckBox16.png │ │ │ │ ├── wxCheckBox32.png │ │ │ │ ├── wxCheckListBox16.png │ │ │ │ ├── wxCheckListBox32.png │ │ │ │ ├── wxChoice16.png │ │ │ │ ├── wxChoice32.png │ │ │ │ ├── wxChoicebook16.png │ │ │ │ ├── wxChoicebook32.png │ │ │ │ ├── wxColourDialog16.png │ │ │ │ ├── wxColourDialog32.png │ │ │ │ ├── wxColourPickerCtrl16.png │ │ │ │ ├── wxColourPickerCtrl32.png │ │ │ │ ├── wxComboBox16.png │ │ │ │ ├── wxComboBox32.png │ │ │ │ ├── wxContextHelpButton16.png │ │ │ │ ├── wxContextHelpButton32.png │ │ │ │ ├── wxDataViewCtrl16.png │ │ │ │ ├── wxDataViewCtrl32.png │ │ │ │ ├── wxDataViewListCtrl16.png │ │ │ │ ├── wxDataViewListCtrl32.png │ │ │ │ ├── wxDataViewTreeCtrl16.png │ │ │ │ ├── wxDataViewTreeCtrl32.png │ │ │ │ ├── wxDatePickerCtrl16.png │ │ │ │ ├── wxDatePickerCtrl32.png │ │ │ │ ├── wxDialUpManager16.png │ │ │ │ ├── wxDialUpManager32.png │ │ │ │ ├── wxDialog16.png │ │ │ │ ├── wxDialog32.png │ │ │ │ ├── wxDirDialog16.png │ │ │ │ ├── wxDirDialog32.png │ │ │ │ ├── wxDirPickerCtrl16.png │ │ │ │ ├── wxDirPickerCtrl32.png │ │ │ │ ├── wxFileDialog16.png │ │ │ │ ├── wxFileDialog32.png │ │ │ │ ├── wxFilePickerCtrl16.png │ │ │ │ ├── wxFilePickerCtrl32.png │ │ │ │ ├── wxFindReplaceDialog16.png │ │ │ │ ├── wxFindReplaceDialog32.png │ │ │ │ ├── wxFlexGridSizer16.png │ │ │ │ ├── wxFlexGridSizer32.png │ │ │ │ ├── wxFontDialog16.png │ │ │ │ ├── wxFontDialog32.png │ │ │ │ ├── wxFontPickerCtrl16.png │ │ │ │ ├── wxFontPickerCtrl32.png │ │ │ │ ├── wxFrame16.png │ │ │ │ ├── wxFrame32.png │ │ │ │ ├── wxGLCanvas16.png │ │ │ │ ├── wxGLCanvas32.png │ │ │ │ ├── wxGauge16.png │ │ │ │ ├── wxGauge32.png │ │ │ │ ├── wxGenericDirCtrl16.png │ │ │ │ ├── wxGenericDirCtrl32.png │ │ │ │ ├── wxGrid16.png │ │ │ │ ├── wxGrid32.png │ │ │ │ ├── wxGridSizer16.png │ │ │ │ ├── wxGridSizer32.png │ │ │ │ ├── wxHtmlEasyPrinting16.png │ │ │ │ ├── wxHtmlEasyPrinting32.png │ │ │ │ ├── wxHtmlWindow16.png │ │ │ │ ├── wxHtmlWindow32.png │ │ │ │ ├── wxHyperlinkCtrl16.png │ │ │ │ ├── wxHyperlinkCtrl32.png │ │ │ │ ├── wxImage16.png │ │ │ │ ├── wxImage32.png │ │ │ │ ├── wxImageList16.png │ │ │ │ ├── wxImageList32.png │ │ │ │ ├── wxListBox16.png │ │ │ │ ├── wxListBox32.png │ │ │ │ ├── wxListCtrl16.png │ │ │ │ ├── wxListCtrl32.png │ │ │ │ ├── wxListView16.png │ │ │ │ ├── wxListView32.png │ │ │ │ ├── wxListbook16.png │ │ │ │ ├── wxListbook32.png │ │ │ │ ├── wxMediaCtrl16.png │ │ │ │ ├── wxMediaCtrl32.png │ │ │ │ ├── wxMenu16.png │ │ │ │ ├── wxMenu32.png │ │ │ │ ├── wxMenuBar16.png │ │ │ │ ├── wxMenuBar32.png │ │ │ │ ├── wxMenuItem16.png │ │ │ │ ├── wxMenuItem32.png │ │ │ │ ├── wxMessageDialog16.png │ │ │ │ ├── wxMessageDialog32.png │ │ │ │ ├── wxMultiChoiceDialog16.png │ │ │ │ ├── wxMultiChoiceDialog32.png │ │ │ │ ├── wxNotebook16.png │ │ │ │ ├── wxNotebook32.png │ │ │ │ ├── wxPageSetupDialog16.png │ │ │ │ ├── wxPageSetupDialog32.png │ │ │ │ ├── wxPanel16.png │ │ │ │ ├── wxPanel32.png │ │ │ │ ├── wxPasswordEntryDialog16.png │ │ │ │ ├── wxPasswordEntryDialog32.png │ │ │ │ ├── wxPrintDialog16.png │ │ │ │ ├── wxPrintDialog32.png │ │ │ │ ├── wxProgressDialog16.png │ │ │ │ ├── wxProgressDialog32.png │ │ │ │ ├── wxRadioBox16.png │ │ │ │ ├── wxRadioBox32.png │ │ │ │ ├── wxRadioButton16.png │ │ │ │ ├── wxRadioButton32.png │ │ │ │ ├── wxRichTextCtrl16.png │ │ │ │ ├── wxRichTextCtrl32.png │ │ │ │ ├── wxRichTextFormattingDialog16.png │ │ │ │ ├── wxRichTextFormattingDialog32.png │ │ │ │ ├── wxRichTextStyleComboCtrl16.png │ │ │ │ ├── wxRichTextStyleComboCtrl32.png │ │ │ │ ├── wxRichTextStyleListBox16.png │ │ │ │ ├── wxRichTextStyleListBox32.png │ │ │ │ ├── wxRichTextStyleListCtrl16.png │ │ │ │ ├── wxRichTextStyleListCtrl32.png │ │ │ │ ├── wxRichTextStyleOrganiserDialog16.png │ │ │ │ ├── wxRichTextStyleOrganiserDialog32.png │ │ │ │ ├── wxSashLayoutWindow16.png │ │ │ │ ├── wxSashLayoutWindow32.png │ │ │ │ ├── wxSashWindow16.png │ │ │ │ ├── wxSashWindow32.png │ │ │ │ ├── wxScrollBar16.png │ │ │ │ ├── wxScrollBar32.png │ │ │ │ ├── wxScrolledWindow16.png │ │ │ │ ├── wxScrolledWindow32.png │ │ │ │ ├── wxScrollingDialog16.png │ │ │ │ ├── wxScrollingDialog32.png │ │ │ │ ├── wxSearchCtrl16.png │ │ │ │ ├── wxSearchCtrl32.png │ │ │ │ ├── wxSimpleHtmlListBox16.png │ │ │ │ ├── wxSimpleHtmlListBox32.png │ │ │ │ ├── wxSingleChoiceDialog16.png │ │ │ │ ├── wxSingleChoiceDialog32.png │ │ │ │ ├── wxSingleInstanceChecker16.png │ │ │ │ ├── wxSingleInstanceChecker32.png │ │ │ │ ├── wxSlider16.png │ │ │ │ ├── wxSlider32.png │ │ │ │ ├── wxSmith16.png │ │ │ │ ├── wxSmith32.png │ │ │ │ ├── wxSpinButton16.png │ │ │ │ ├── wxSpinButton32.png │ │ │ │ ├── wxSpinCtrl16.png │ │ │ │ ├── wxSpinCtrl32.png │ │ │ │ ├── wxSpinCtrlDouble16.png │ │ │ │ ├── wxSpinCtrlDouble32.png │ │ │ │ ├── wxSplitterWindow16.png │ │ │ │ ├── wxSplitterWindow32.png │ │ │ │ ├── wxStaticBitmap16.png │ │ │ │ ├── wxStaticBitmap32.png │ │ │ │ ├── wxStaticBox16.png │ │ │ │ ├── wxStaticBox32.png │ │ │ │ ├── wxStaticBoxSizer16.png │ │ │ │ ├── wxStaticBoxSizer32.png │ │ │ │ ├── wxStaticLine16.png │ │ │ │ ├── wxStaticLine32.png │ │ │ │ ├── wxStaticText16.png │ │ │ │ ├── wxStaticText32.png │ │ │ │ ├── wxStatusBar16.png │ │ │ │ ├── wxStatusBar32.png │ │ │ │ ├── wxStdDialogButtonSizer16.png │ │ │ │ ├── wxStdDialogButtonSizer32.png │ │ │ │ ├── wxStopWatch16.png │ │ │ │ ├── wxStopWatch32.png │ │ │ │ ├── wxSymbolPickerDialog16.png │ │ │ │ ├── wxSymbolPickerDialog32.png │ │ │ │ ├── wxTextCtrl16.png │ │ │ │ ├── wxTextCtrl32.png │ │ │ │ ├── wxTextEntryDialog16.png │ │ │ │ ├── wxTextEntryDialog32.png │ │ │ │ ├── wxTimer16.png │ │ │ │ ├── wxTimer32.png │ │ │ │ ├── wxToggleButton16.png │ │ │ │ ├── wxToggleButton32.png │ │ │ │ ├── wxToolBar16.png │ │ │ │ ├── wxToolBar32.png │ │ │ │ ├── wxToolBarItem16.png │ │ │ │ ├── wxToolBarItem32.png │ │ │ │ ├── wxTreeCtrl16.png │ │ │ │ ├── wxTreeCtrl32.png │ │ │ │ ├── wxTreebook16.png │ │ │ │ └── wxTreebook32.png │ │ │ │ ├── properties │ │ │ │ ├── Makefile.am │ │ │ │ ├── wxsarraystringcheckeditordlg.cpp │ │ │ │ ├── wxsarraystringcheckeditordlg.h │ │ │ │ ├── wxsarraystringcheckproperty.cpp │ │ │ │ ├── wxsarraystringcheckproperty.h │ │ │ │ ├── wxsbitmapiconeditordlg.cpp │ │ │ │ ├── wxsbitmapiconeditordlg.h │ │ │ │ ├── wxsbitmapiconproperty.cpp │ │ │ │ ├── wxsbitmapiconproperty.h │ │ │ │ ├── wxscolourproperty.cpp │ │ │ │ ├── wxscolourproperty.h │ │ │ │ ├── wxsdimensionproperty.cpp │ │ │ │ ├── wxsdimensionproperty.h │ │ │ │ ├── wxsfonteditordlg.cpp │ │ │ │ ├── wxsfonteditordlg.h │ │ │ │ ├── wxsfontfaceeditordlg.cpp │ │ │ │ ├── wxsfontfaceeditordlg.h │ │ │ │ ├── wxsfontproperty.cpp │ │ │ │ ├── wxsfontproperty.h │ │ │ │ ├── wxsimagecomboeditordlg.cpp │ │ │ │ ├── wxsimagecomboeditordlg.h │ │ │ │ ├── wxsimagecomboproperty.cpp │ │ │ │ ├── wxsimagecomboproperty.h │ │ │ │ ├── wxsimagelisteditordlg.cpp │ │ │ │ ├── wxsimagelisteditordlg.h │ │ │ │ ├── wxsimagelistproperty.cpp │ │ │ │ ├── wxsimagelistproperty.h │ │ │ │ ├── wxsimageproperty.cpp │ │ │ │ ├── wxsimageproperty.h │ │ │ │ ├── wxsimagetreeeditordlg.cpp │ │ │ │ ├── wxsimagetreeeditordlg.h │ │ │ │ ├── wxsimagetreeproperty.cpp │ │ │ │ ├── wxsimagetreeproperty.h │ │ │ │ ├── wxspositionsizeproperty.cpp │ │ │ │ ├── wxspositionsizeproperty.h │ │ │ │ ├── wxssimplefonteditordlg.cpp │ │ │ │ ├── wxssimplefonteditordlg.h │ │ │ │ ├── wxssizerflagsproperty.cpp │ │ │ │ ├── wxssizerflagsproperty.h │ │ │ │ ├── wxsstyleproperty.cpp │ │ │ │ └── wxsstyleproperty.h │ │ │ │ ├── wxsbaseproperties.cpp │ │ │ │ ├── wxsbaseproperties.h │ │ │ │ ├── wxscodegenerator.cpp │ │ │ │ ├── wxscodegenerator.h │ │ │ │ ├── wxscodercontext.cpp │ │ │ │ ├── wxscodercontext.h │ │ │ │ ├── wxscontainer.cpp │ │ │ │ ├── wxscontainer.h │ │ │ │ ├── wxscorrector.cpp │ │ │ │ ├── wxscorrector.h │ │ │ │ ├── wxscustomwidgetxmlhandler.cpp │ │ │ │ ├── wxscustomwidgetxmlhandler.h │ │ │ │ ├── wxsdeleteitemres.cpp │ │ │ │ ├── wxsdeleteitemres.h │ │ │ │ ├── wxsdialogres.cpp │ │ │ │ ├── wxsdialogres.h │ │ │ │ ├── wxsdrawingwindow.cpp │ │ │ │ ├── wxsdrawingwindow.h │ │ │ │ ├── wxsevents.cpp │ │ │ │ ├── wxsevents.h │ │ │ │ ├── wxseventseditor.cpp │ │ │ │ ├── wxseventseditor.h │ │ │ │ ├── wxsexproperties.h │ │ │ │ ├── wxsflags.h │ │ │ │ ├── wxsframeres.cpp │ │ │ │ ├── wxsframeres.h │ │ │ │ ├── wxsgridpanel.cpp │ │ │ │ ├── wxsgridpanel.h │ │ │ │ ├── wxsitem.cpp │ │ │ │ ├── wxsitem.h │ │ │ │ ├── wxsitemeditor.cpp │ │ │ │ ├── wxsitemeditor.h │ │ │ │ ├── wxsitemeditorcontent.cpp │ │ │ │ ├── wxsitemeditorcontent.h │ │ │ │ ├── wxsitemeditordragassist.cpp │ │ │ │ ├── wxsitemeditordragassist.h │ │ │ │ ├── wxsitemfactory.cpp │ │ │ │ ├── wxsitemfactory.h │ │ │ │ ├── wxsiteminfo.h │ │ │ │ ├── wxsitemres.cpp │ │ │ │ ├── wxsitemres.h │ │ │ │ ├── wxsitemresdata.cpp │ │ │ │ ├── wxsitemresdata.h │ │ │ │ ├── wxsitemresdataobject.cpp │ │ │ │ ├── wxsitemresdataobject.h │ │ │ │ ├── wxsitemrestreedata.cpp │ │ │ │ ├── wxsitemrestreedata.h │ │ │ │ ├── wxsitemundobuffer.cpp │ │ │ │ ├── wxsitemundobuffer.h │ │ │ │ ├── wxsnewwindowdlg.cpp │ │ │ │ ├── wxsnewwindowdlg.h │ │ │ │ ├── wxspanelres.cpp │ │ │ │ ├── wxspanelres.h │ │ │ │ ├── wxsparent.cpp │ │ │ │ ├── wxsparent.h │ │ │ │ ├── wxspredefinedids.cpp │ │ │ │ ├── wxspredefinedids.h │ │ │ │ ├── wxsscrollingdialogres.cpp │ │ │ │ ├── wxsscrollingdialogres.h │ │ │ │ ├── wxssizer.cpp │ │ │ │ ├── wxssizer.h │ │ │ │ ├── wxssizerparentqp.cpp │ │ │ │ ├── wxssizerparentqp.h │ │ │ │ ├── wxsstyle.cpp │ │ │ │ ├── wxsstyle.h │ │ │ │ ├── wxstool.cpp │ │ │ │ ├── wxstool.h │ │ │ │ ├── wxstoolspace.cpp │ │ │ │ ├── wxstoolspace.h │ │ │ │ ├── wxswidget.cpp │ │ │ │ ├── wxswidget.h │ │ │ │ ├── wxwidgetsgui.cpp │ │ │ │ ├── wxwidgetsgui.h │ │ │ │ ├── wxwidgetsguiappadoptingdlg.cpp │ │ │ │ ├── wxwidgetsguiappadoptingdlg.h │ │ │ │ ├── wxwidgetsguiconfigpanel.cpp │ │ │ │ ├── wxwidgetsguiconfigpanel.h │ │ │ │ ├── wxwidgetsres.cpp │ │ │ │ ├── wxwidgetsres.h │ │ │ │ ├── wxwidgetsresfactory.cpp │ │ │ │ └── wxwidgetsresfactory.h │ │ ├── wxSmithAui │ │ │ ├── Makefile.am │ │ │ ├── images │ │ │ │ ├── wxsAuiManager.xcf │ │ │ │ ├── wxsAuiManager16.xpm │ │ │ │ ├── wxsAuiManager32.xpm │ │ │ │ ├── wxsAuiNotebook.xcf │ │ │ │ ├── wxsAuiNotebook16.xpm │ │ │ │ ├── wxsAuiNotebook32.xpm │ │ │ │ ├── wxsAuiToolBar.xcf │ │ │ │ ├── wxsAuiToolBar16.xpm │ │ │ │ ├── wxsAuiToolBar32.xpm │ │ │ │ ├── wxsAuiToolBarItem.xcf │ │ │ │ ├── wxsAuiToolBarItem16.xpm │ │ │ │ ├── wxsAuiToolBarItem32.xpm │ │ │ │ ├── wxsAuiToolBarItemBase.xcf │ │ │ │ ├── wxsAuiToolBarLabel.xcf │ │ │ │ ├── wxsAuiToolBarLabel16.xpm │ │ │ │ ├── wxsAuiToolBarLabel32.xpm │ │ │ │ ├── wxsAuiToolBarSeparator.xcf │ │ │ │ ├── wxsAuiToolBarSeparator16.xpm │ │ │ │ ├── wxsAuiToolBarSeparator32.xpm │ │ │ │ ├── wxsAuiToolBarSpacer.xcf │ │ │ │ ├── wxsAuiToolBarSpacer16.xpm │ │ │ │ └── wxsAuiToolBarSpacer32.xpm │ │ │ ├── manifest.xml │ │ │ ├── wxAuiManager │ │ │ │ ├── wxSmithAuiManager.h │ │ │ │ ├── wxsAuiManager.cpp │ │ │ │ ├── wxsAuiManager.h │ │ │ │ ├── wxsAuiManagerParentQP.cpp │ │ │ │ ├── wxsAuiManagerParentQP.h │ │ │ │ ├── wxsAuiPaneInfoProperty.cpp │ │ │ │ └── wxsAuiPaneInfoProperty.h │ │ │ ├── wxAuiNotebook │ │ │ │ ├── wxSmithAuiNotebook.cpp │ │ │ │ ├── wxSmithAuiNotebook.h │ │ │ │ ├── wxsAuiNotebook.cpp │ │ │ │ └── wxsAuiNotebook.h │ │ │ ├── wxAuiToolBar │ │ │ │ ├── wxSmithAuiToolBar.cpp │ │ │ │ ├── wxSmithAuiToolBar.h │ │ │ │ ├── wxsAuiToolBar.cpp │ │ │ │ ├── wxsAuiToolBar.h │ │ │ │ ├── wxsAuiToolBarItem.cpp │ │ │ │ ├── wxsAuiToolBarItem.h │ │ │ │ ├── wxsAuiToolBarItemBase.cpp │ │ │ │ ├── wxsAuiToolBarItemBase.h │ │ │ │ ├── wxsAuiToolBarLabel.cpp │ │ │ │ ├── wxsAuiToolBarLabel.h │ │ │ │ ├── wxsAuiToolBarSeparator.cpp │ │ │ │ ├── wxsAuiToolBarSeparator.h │ │ │ │ ├── wxsAuiToolBarSpacer.cpp │ │ │ │ └── wxsAuiToolBarSpacer.h │ │ │ ├── wxSmithAui.cpp │ │ │ ├── wxSmithAui.h │ │ │ ├── wxSmithAui_wx30-unix.cbp │ │ │ ├── wxSmithAui_wx31.cbp │ │ │ ├── wxSmithAui_wx31_64.cbp │ │ │ ├── wxsmith │ │ │ │ ├── wxsAuiManagerParentQP.wxs │ │ │ │ └── wxsAuiNotebookParentQP.wxs │ │ │ └── wxsmithaui.pc.in │ │ ├── wxSmithContribItems │ │ │ ├── Makefile.am │ │ │ ├── manifest.xml │ │ │ ├── wxSmithContribItems.cpp │ │ │ ├── wxSmithContribItems.h │ │ │ ├── wxSmithContribItems_wx30-unix.cbp │ │ │ ├── wxSmithContribItems_wx31.cbp │ │ │ ├── wxSmithContribItems_wx31_64.cbp │ │ │ ├── wxSmithKWIC │ │ │ │ ├── images │ │ │ │ │ ├── angmet16.xpm │ │ │ │ │ ├── angmet32.xpm │ │ │ │ │ ├── angreg16.xpm │ │ │ │ │ ├── angreg32.xpm │ │ │ │ │ ├── bmpchk16.xpm │ │ │ │ │ ├── bmpchk32.xpm │ │ │ │ │ ├── bmpswi16.xpm │ │ │ │ │ ├── bmpswi32.xpm │ │ │ │ │ ├── lcd16.xpm │ │ │ │ │ ├── lcd32.xpm │ │ │ │ │ ├── linmet16.xpm │ │ │ │ │ ├── linmet32.xpm │ │ │ │ │ ├── linreg16.xpm │ │ │ │ │ └── linreg32.xpm │ │ │ │ ├── wxsangularmeter.cpp │ │ │ │ ├── wxsangularmeter.h │ │ │ │ ├── wxsangularregulator.cpp │ │ │ │ ├── wxsangularregulator.h │ │ │ │ ├── wxsbmpcheckbox.cpp │ │ │ │ ├── wxsbmpcheckbox.h │ │ │ │ ├── wxsbmpswitcher.cpp │ │ │ │ ├── wxsbmpswitcher.h │ │ │ │ ├── wxslcdclock.cpp │ │ │ │ ├── wxslcdclock.h │ │ │ │ ├── wxslcddisplay.cpp │ │ │ │ ├── wxslcddisplay.h │ │ │ │ ├── wxslinearmeter.cpp │ │ │ │ ├── wxslinearmeter.h │ │ │ │ ├── wxslinearregulator.cpp │ │ │ │ └── wxslinearregulator.h │ │ │ ├── wxSmithPlot │ │ │ │ ├── README │ │ │ │ ├── images │ │ │ │ │ ├── axis16.bmp │ │ │ │ │ ├── axis16.xpm │ │ │ │ │ ├── axis32.bmp │ │ │ │ │ ├── axis32.xpm │ │ │ │ │ ├── marker16.bmp │ │ │ │ │ ├── marker16.xpm │ │ │ │ │ ├── marker32.bmp │ │ │ │ │ ├── marker32.xpm │ │ │ │ │ ├── plot16.bmp │ │ │ │ │ ├── plot16.xpm │ │ │ │ │ ├── plot32.bmp │ │ │ │ │ ├── plot32.xpm │ │ │ │ │ ├── text16.bmp │ │ │ │ │ ├── text16.xpm │ │ │ │ │ ├── text32.bmp │ │ │ │ │ ├── text32.xpm │ │ │ │ │ ├── vector16.bmp │ │ │ │ │ ├── vector16.xpm │ │ │ │ │ ├── vector32.bmp │ │ │ │ │ └── vector32.xpm │ │ │ │ ├── test │ │ │ │ │ ├── TestPlot.cbp │ │ │ │ │ ├── TestPlotApp.cpp │ │ │ │ │ ├── TestPlotApp.h │ │ │ │ │ ├── TestPlotMain.cpp │ │ │ │ │ ├── TestPlotMain.h │ │ │ │ │ ├── resource.rc │ │ │ │ │ └── wxsmith │ │ │ │ │ │ └── TestPlotframe.wxs │ │ │ │ ├── wxsAxis.cpp │ │ │ │ ├── wxsAxis.h │ │ │ │ ├── wxsMarker.cpp │ │ │ │ ├── wxsMarker.h │ │ │ │ ├── wxsMathPlot.cpp │ │ │ │ ├── wxsMathPlot.h │ │ │ │ ├── wxsText.cpp │ │ │ │ ├── wxsText.h │ │ │ │ ├── wxsVector.cpp │ │ │ │ └── wxsVector.h │ │ │ ├── wxchart │ │ │ │ ├── wxchart16.png │ │ │ │ ├── wxchart16.xpm │ │ │ │ ├── wxchart32.png │ │ │ │ ├── wxchart32.xpm │ │ │ │ ├── wxschart.cpp │ │ │ │ └── wxschart.h │ │ │ ├── wxdatetimepicker │ │ │ │ ├── images │ │ │ │ │ ├── wxTimePickCtrl16.xpm │ │ │ │ │ └── wxTimePickCtrl32.xpm │ │ │ │ ├── wxsTimePickerCtrl.cpp │ │ │ │ └── wxsTimePickerCtrl.h │ │ │ ├── wxflatnotebook │ │ │ │ ├── images │ │ │ │ │ ├── flatnote16.png │ │ │ │ │ ├── flatnote16.xpm │ │ │ │ │ ├── flatnote32.png │ │ │ │ │ └── flatnote32.xpm │ │ │ │ ├── wxsFlatNotebook.cpp │ │ │ │ └── wxsFlatNotebook.h │ │ │ ├── wxgbsizer │ │ │ │ ├── images │ │ │ │ │ ├── wxGridBagSizer16.xpm │ │ │ │ │ └── wxGridBagSizer32.xpm │ │ │ │ ├── wxsGridBagSizer.cpp │ │ │ │ └── wxsGridBagSizer.h │ │ │ ├── wximagebutton │ │ │ │ ├── wxImageButton16.xpm │ │ │ │ ├── wxImageButton32.xpm │ │ │ │ ├── wxsimagebutton.cpp │ │ │ │ └── wxsimagebutton.h │ │ │ ├── wximagepanel │ │ │ │ ├── wxImagePanel16.xpm │ │ │ │ ├── wxImagePanel32.xpm │ │ │ │ ├── wxsimagepanel.cpp │ │ │ │ └── wxsimagepanel.h │ │ │ ├── wxled │ │ │ │ ├── images │ │ │ │ │ ├── LedNumber16.xpm │ │ │ │ │ ├── LedNumber32.xpm │ │ │ │ │ ├── wxLcdWindow16.xpm │ │ │ │ │ ├── wxLcdWindow32.xpm │ │ │ │ │ ├── wxLedPanel16.xpm │ │ │ │ │ ├── wxLedPanel32.xpm │ │ │ │ │ ├── wxled16.xpm │ │ │ │ │ ├── wxled32.xpm │ │ │ │ │ ├── wxstateled16.xpm │ │ │ │ │ └── wxstateled32.xpm │ │ │ │ ├── wxsLcdWindow.cpp │ │ │ │ ├── wxsLcdWindow.h │ │ │ │ ├── wxsLed.cpp │ │ │ │ ├── wxsLed.h │ │ │ │ ├── wxsLedNumber.cpp │ │ │ │ ├── wxsLedNumber.h │ │ │ │ ├── wxsLedPanel.cpp │ │ │ │ ├── wxsLedPanel.h │ │ │ │ ├── wxsStateLed.cpp │ │ │ │ └── wxsStateLed.h │ │ │ ├── wxspeedbutton │ │ │ │ ├── SpeedButton16.xpm │ │ │ │ ├── SpeedButton32.xpm │ │ │ │ ├── wxsSpeedButton.cpp │ │ │ │ └── wxsSpeedButton.h │ │ │ ├── wxthings │ │ │ │ ├── wxcustombutton16.png │ │ │ │ ├── wxcustombutton16.xpm │ │ │ │ ├── wxcustombutton32.png │ │ │ │ ├── wxcustombutton32.xpm │ │ │ │ ├── wxscustombutton.cpp │ │ │ │ └── wxscustombutton.h │ │ │ └── wxtreelist │ │ │ │ ├── images │ │ │ │ ├── TreeList16.xpm │ │ │ │ └── TreeList32.xpm │ │ │ │ ├── wxsTreeListCtrl.cpp │ │ │ │ └── wxsTreeListCtrl.h │ │ ├── wxSmithDemo │ │ │ ├── ListViewComboPopup.cpp │ │ │ ├── ListViewComboPopup.h │ │ │ ├── Makefile.am │ │ │ ├── media │ │ │ │ ├── EarthImpactSml_512kb.mp4 │ │ │ │ ├── bird_44.gif │ │ │ │ ├── bmpcombobox.xpm │ │ │ │ ├── button.xpm │ │ │ │ ├── checkbox.xpm │ │ │ │ ├── choicebk.xpm │ │ │ │ ├── clrpicker.xpm │ │ │ │ ├── combobox.xpm │ │ │ │ ├── smiley.xpm │ │ │ │ ├── wxsmith.ico │ │ │ │ ├── wxsmith.png │ │ │ │ ├── wxsmith.xpm │ │ │ │ ├── wxsmith16.xpm │ │ │ │ └── zebra.xpm │ │ │ ├── resource.rc │ │ │ ├── version.h │ │ │ ├── wxSmithDemo.cbp │ │ │ ├── wxSmithDemoApp.cpp │ │ │ ├── wxSmithDemoApp.h │ │ │ ├── wxSmithDemoMain.cpp │ │ │ ├── wxSmithDemoMain.h │ │ │ ├── wximages │ │ │ │ ├── wxSmithDemoMain_Image1_XPM.xpm │ │ │ │ └── wxSmithDemoMain_ImageList1.xpm │ │ │ └── wxsmith │ │ │ │ └── wxSmithDemoframe.wxs │ │ ├── wxSmithIExplore │ │ │ ├── IEHtmlWin.cpp │ │ │ ├── IEHtmlWin.h │ │ │ ├── Makefile.am │ │ │ ├── ReadMe.txt │ │ │ ├── cguid.cpp │ │ │ ├── images │ │ │ │ ├── IE16.bmp │ │ │ │ ├── IE16.xpm │ │ │ │ ├── IE32.bmp │ │ │ │ ├── IE32.xpm │ │ │ │ ├── The Internet_ico_2.ico │ │ │ │ └── The Internet_ico_4.ico │ │ │ ├── manifest.xml │ │ │ ├── test │ │ │ │ ├── IETest.cbp │ │ │ │ ├── IETestApp.cpp │ │ │ │ ├── IETestApp.h │ │ │ │ ├── IETestMain.cpp │ │ │ │ ├── IETestMain.h │ │ │ │ ├── resource.rc │ │ │ │ └── wxsmith │ │ │ │ │ └── IETestframe.wxs │ │ │ ├── wxactivex.cpp │ │ │ ├── wxactivex.h │ │ │ ├── wxsIExplore.cpp │ │ │ ├── wxsIExplore.h │ │ │ ├── wxsSmithIExplore.cbp │ │ │ ├── wxsSmithIExplore.cpp │ │ │ └── wxsSmithIExplore.h │ │ └── wxSmithSTC │ │ │ ├── Makefile.am │ │ │ ├── images │ │ │ ├── EDIT.BMP │ │ │ ├── RTF16.bmp │ │ │ ├── RTF16.xpm │ │ │ ├── RTF32.bmp │ │ │ ├── RTF32.xpm │ │ │ ├── STC16.bmp │ │ │ ├── STC16.xpm │ │ │ ├── STC32.bmp │ │ │ ├── STC32.xpm │ │ │ ├── STE16.bmp │ │ │ ├── STE16.xpm │ │ │ ├── STE32.bmp │ │ │ ├── STE32.xpm │ │ │ ├── Text Files.bmp │ │ │ ├── Text Files.ico │ │ │ └── sedit.bmp │ │ │ ├── manifest.xml │ │ │ ├── stc │ │ │ ├── Makefile.in │ │ │ ├── PlatWX.cpp │ │ │ ├── PlatWX.h │ │ │ ├── README.txt │ │ │ ├── ScintillaWX.cpp │ │ │ ├── ScintillaWX.h │ │ │ ├── include │ │ │ │ └── wx │ │ │ │ │ └── stc │ │ │ │ │ └── stc.h │ │ │ ├── scintilla │ │ │ │ ├── README.txt │ │ │ │ ├── include │ │ │ │ │ ├── Accessor.h │ │ │ │ │ ├── KeyWords.h │ │ │ │ │ ├── Platform.h │ │ │ │ │ ├── PropSet.h │ │ │ │ │ ├── SString.h │ │ │ │ │ ├── SciLexer.h │ │ │ │ │ ├── Scintilla.h │ │ │ │ │ ├── ScintillaWidget.h │ │ │ │ │ └── WindowAccessor.h │ │ │ │ └── src │ │ │ │ │ ├── AutoComplete.cxx │ │ │ │ │ ├── AutoComplete.h │ │ │ │ │ ├── CallTip.cxx │ │ │ │ │ ├── CallTip.h │ │ │ │ │ ├── CellBuffer.cxx │ │ │ │ │ ├── CellBuffer.h │ │ │ │ │ ├── CharClassify.cxx │ │ │ │ │ ├── CharClassify.h │ │ │ │ │ ├── ContractionState.cxx │ │ │ │ │ ├── ContractionState.h │ │ │ │ │ ├── Document.cxx │ │ │ │ │ ├── Document.h │ │ │ │ │ ├── DocumentAccessor.cxx │ │ │ │ │ ├── DocumentAccessor.h │ │ │ │ │ ├── Editor.cxx │ │ │ │ │ ├── Editor.h │ │ │ │ │ ├── ExternalLexer.cxx │ │ │ │ │ ├── ExternalLexer.h │ │ │ │ │ ├── Indicator.cxx │ │ │ │ │ ├── Indicator.h │ │ │ │ │ ├── KeyMap.cxx │ │ │ │ │ ├── KeyMap.h │ │ │ │ │ ├── KeyWords.cxx │ │ │ │ │ ├── LexAPDL.cxx │ │ │ │ │ ├── LexAU3.cxx │ │ │ │ │ ├── LexAVE.cxx │ │ │ │ │ ├── LexAda.cxx │ │ │ │ │ ├── LexAsm.cxx │ │ │ │ │ ├── LexAsn1.cxx │ │ │ │ │ ├── LexBaan.cxx │ │ │ │ │ ├── LexBash.cxx │ │ │ │ │ ├── LexBasic.cxx │ │ │ │ │ ├── LexBullant.cxx │ │ │ │ │ ├── LexCLW.cxx │ │ │ │ │ ├── LexCPP.cxx │ │ │ │ │ ├── LexCSS.cxx │ │ │ │ │ ├── LexCaml.cxx │ │ │ │ │ ├── LexConf.cxx │ │ │ │ │ ├── LexCrontab.cxx │ │ │ │ │ ├── LexCsound.cxx │ │ │ │ │ ├── LexEScript.cxx │ │ │ │ │ ├── LexEiffel.cxx │ │ │ │ │ ├── LexErlang.cxx │ │ │ │ │ ├── LexFlagship.cxx │ │ │ │ │ ├── LexForth.cxx │ │ │ │ │ ├── LexFortran.cxx │ │ │ │ │ ├── LexGui4Cli.cxx │ │ │ │ │ ├── LexHTML.cxx │ │ │ │ │ ├── LexHaskell.cxx │ │ │ │ │ ├── LexInno.cxx │ │ │ │ │ ├── LexKix.cxx │ │ │ │ │ ├── LexLisp.cxx │ │ │ │ │ ├── LexLout.cxx │ │ │ │ │ ├── LexLua.cxx │ │ │ │ │ ├── LexMMIXAL.cxx │ │ │ │ │ ├── LexMPT.cxx │ │ │ │ │ ├── LexMSSQL.cxx │ │ │ │ │ ├── LexMatlab.cxx │ │ │ │ │ ├── LexMetapost.cxx │ │ │ │ │ ├── LexNsis.cxx │ │ │ │ │ ├── LexOpal.cxx │ │ │ │ │ ├── LexOthers.cxx │ │ │ │ │ ├── LexPB.cxx │ │ │ │ │ ├── LexPOV.cxx │ │ │ │ │ ├── LexPS.cxx │ │ │ │ │ ├── LexPascal.cxx │ │ │ │ │ ├── LexPerl.cxx │ │ │ │ │ ├── LexPython.cxx │ │ │ │ │ ├── LexRebol.cxx │ │ │ │ │ ├── LexRuby.cxx │ │ │ │ │ ├── LexSQL.cxx │ │ │ │ │ ├── LexScriptol.cxx │ │ │ │ │ ├── LexSmalltalk.cxx │ │ │ │ │ ├── LexSpecman.cxx │ │ │ │ │ ├── LexSpice.cxx │ │ │ │ │ ├── LexTADS3.cxx │ │ │ │ │ ├── LexTCL.cxx │ │ │ │ │ ├── LexTeX.cxx │ │ │ │ │ ├── LexVB.cxx │ │ │ │ │ ├── LexVHDL.cxx │ │ │ │ │ ├── LexVerilog.cxx │ │ │ │ │ ├── LexYAML.cxx │ │ │ │ │ ├── LineMarker.cxx │ │ │ │ │ ├── LineMarker.h │ │ │ │ │ ├── PropSet.cxx │ │ │ │ │ ├── RESearch.cxx │ │ │ │ │ ├── RESearch.h │ │ │ │ │ ├── SVector.h │ │ │ │ │ ├── ScintillaBase.cxx │ │ │ │ │ ├── ScintillaBase.h │ │ │ │ │ ├── Style.cxx │ │ │ │ │ ├── Style.h │ │ │ │ │ ├── StyleContext.cxx │ │ │ │ │ ├── StyleContext.h │ │ │ │ │ ├── UniConversion.cxx │ │ │ │ │ ├── UniConversion.h │ │ │ │ │ ├── ViewStyle.cxx │ │ │ │ │ ├── ViewStyle.h │ │ │ │ │ ├── WindowAccessor.cxx │ │ │ │ │ ├── XPM.cxx │ │ │ │ │ └── XPM.h │ │ │ ├── stc.cpp │ │ │ ├── stc_cw.h │ │ │ ├── stc_cw_d.h │ │ │ ├── stc_cwc.h │ │ │ └── stc_cwc_d.h │ │ │ ├── stedit │ │ │ ├── art │ │ │ │ ├── copy.xpm │ │ │ │ ├── cross.xpm │ │ │ │ ├── cut.xpm │ │ │ │ ├── find.xpm │ │ │ │ ├── finddown.xpm │ │ │ │ ├── findnext.xpm │ │ │ │ ├── findup.xpm │ │ │ │ ├── new.xpm │ │ │ │ ├── open.xpm │ │ │ │ ├── paste.xpm │ │ │ │ ├── pencil.ico │ │ │ │ ├── pencil16.xpm │ │ │ │ ├── pencil32.xpm │ │ │ │ ├── print.xpm │ │ │ │ ├── print_page_setup.xpm │ │ │ │ ├── print_preview.xpm │ │ │ │ ├── print_setup.xpm │ │ │ │ ├── redo.xpm │ │ │ │ ├── replace.xpm │ │ │ │ ├── save.xpm │ │ │ │ ├── saveall.xpm │ │ │ │ ├── saveas.xpm │ │ │ │ ├── undo.xpm │ │ │ │ └── x_red.xpm │ │ │ ├── include │ │ │ │ └── wx │ │ │ │ │ └── stedit │ │ │ │ │ ├── pairarr.h │ │ │ │ │ ├── setup.h │ │ │ │ │ ├── setup0.h │ │ │ │ │ ├── steart.h │ │ │ │ │ ├── stedefs.h │ │ │ │ │ ├── stedit.h │ │ │ │ │ ├── stedlgs.h │ │ │ │ │ ├── steevent.h │ │ │ │ │ ├── steexprt.h │ │ │ │ │ ├── stefindr.h │ │ │ │ │ ├── steframe.h │ │ │ │ │ ├── stelangs.h │ │ │ │ │ ├── stemenum.h │ │ │ │ │ ├── stenoteb.h │ │ │ │ │ ├── steopts.h │ │ │ │ │ ├── steprefs.h │ │ │ │ │ ├── steprint.h │ │ │ │ │ ├── steshell.h │ │ │ │ │ ├── stesplit.h │ │ │ │ │ ├── stestyls.h │ │ │ │ │ └── stetree.h │ │ │ └── src │ │ │ │ ├── precomp.cpp │ │ │ │ ├── precomp.h │ │ │ │ ├── steart.cpp │ │ │ │ ├── stedit.cpp │ │ │ │ ├── stedit.xrc │ │ │ │ ├── stedlgs.cpp │ │ │ │ ├── stedlgs.wdr │ │ │ │ ├── stedlgs_wdr.cpp │ │ │ │ ├── stedlgs_wdr.h │ │ │ │ ├── steevent.cpp │ │ │ │ ├── steexprt.cpp │ │ │ │ ├── stefindr.cpp │ │ │ │ ├── steframe.cpp │ │ │ │ ├── stelangs.cpp │ │ │ │ ├── stemenum.cpp │ │ │ │ ├── stenoteb.cpp │ │ │ │ ├── steopts.cpp │ │ │ │ ├── steprefs.cpp │ │ │ │ ├── steprint.cpp │ │ │ │ ├── steshell.cpp │ │ │ │ ├── stesplit.cpp │ │ │ │ ├── stestyls.cpp │ │ │ │ ├── stetree.cpp │ │ │ │ ├── wxext.cpp │ │ │ │ ├── wxext.h │ │ │ │ └── wxtrunk.h │ │ │ ├── wxsRichTextCtrl.cpp │ │ │ ├── wxsRichTextCtrl.h │ │ │ ├── wxsSTEditor.cpp │ │ │ ├── wxsSTEditor.h │ │ │ ├── wxsScintilla.cpp │ │ │ ├── wxsScintilla.h │ │ │ ├── wxsSmithSTC.cbp │ │ │ ├── wxsSmithSTC.cpp │ │ │ └── wxsSmithSTC.h │ ├── debuggergdb │ │ ├── Makefile.am │ │ ├── cdb_commands.h │ │ ├── cdb_driver.cpp │ │ ├── cdb_driver.h │ │ ├── databreakpointdlg.cpp │ │ ├── databreakpointdlg.h │ │ ├── debugger_defs.cpp │ │ ├── debugger_defs.h │ │ ├── debuggerdriver.cpp │ │ ├── debuggerdriver.h │ │ ├── debuggergdb.cpp │ │ ├── debuggergdb.h │ │ ├── debuggergdb_test.cbp │ │ ├── debuggergdb_test_backtrace.cpp │ │ ├── debuggergdb_test_common.h │ │ ├── debuggergdb_test_defs.cpp │ │ ├── debuggergdb_test_examine_memory.cpp │ │ ├── debuggergdb_test_main.cpp │ │ ├── debuggergdb_test_parse_locals.cpp │ │ ├── debuggergdb_test_parser.cpp │ │ ├── debuggergdb_test_parser_cdb.cpp │ │ ├── debuggergdb_test_wx30-unix.cbp │ │ ├── debuggeroptionsdlg.cpp │ │ ├── debuggeroptionsdlg.h │ │ ├── debuggeroptionsprjdlg.cpp │ │ ├── debuggeroptionsprjdlg.h │ │ ├── debuggerstate.cpp │ │ ├── debuggerstate.h │ │ ├── editbreakpointdlg.cpp │ │ ├── editbreakpointdlg.h │ │ ├── editwatchdlg.cpp │ │ ├── editwatchdlg.h │ │ ├── gdb_commands.h │ │ ├── gdb_driver.cpp │ │ ├── gdb_driver.h │ │ ├── parsewatchvalue.cpp │ │ ├── parsewatchvalue.h │ │ ├── remotedebugging.h │ │ └── resources │ │ │ ├── Makefile.am │ │ │ ├── breakpoints.xrc │ │ │ ├── debugger_options_dlg.xrc │ │ │ ├── debugger_project_options_dlg.xrc │ │ │ ├── edit_watches_dlg.xrc │ │ │ └── manifest.xml │ ├── defaultmimehandler │ │ ├── EmbeddedHtmlPanel.cpp │ │ ├── EmbeddedHtmlPanel.h │ │ ├── Makefile.am │ │ ├── defaultmimehandler.cpp │ │ ├── defaultmimehandler.h │ │ ├── editmimetypesdlg.cpp │ │ ├── editmimetypesdlg.h │ │ ├── mimetypesarray.h │ │ └── resources │ │ │ ├── Makefile.am │ │ │ ├── edit_files_handling.xrc │ │ │ └── manifest.xml │ ├── headerguard │ │ ├── headerguard.cpp │ │ ├── headerguard.h │ │ ├── headerguard_wx31.cbp │ │ ├── headerguard_wx31_64.cbp │ │ └── manifest.xml │ ├── loghacker │ │ ├── loghacker.cpp │ │ ├── loghacker.h │ │ ├── loghacker_wx31.cbp │ │ ├── loghacker_wx31_64.cbp │ │ └── manifest.xml │ ├── modpoller │ │ ├── ModPoller.cpp │ │ ├── ModPoller.h │ │ ├── ModPoller_wx31.cbp │ │ ├── ModPoller_wx31_64.cbp │ │ └── manifest.xml │ ├── occurrenceshighlighting │ │ ├── Makefile.am │ │ ├── highlighter.cpp │ │ ├── highlighter.h │ │ ├── occurrenceshighlighting.cpp │ │ ├── occurrenceshighlighting.h │ │ ├── occurrenceshighlightingconfigurationpanel.cpp │ │ ├── occurrenceshighlightingconfigurationpanel.h │ │ ├── occurrencespanel.cpp │ │ ├── occurrencespanel.h │ │ └── resources │ │ │ ├── Makefile.am │ │ │ ├── manifest.xml │ │ │ └── occurrenceshighlightingconfigurationpanel.xrc │ ├── openfileslist │ │ ├── Makefile.am │ │ ├── manifest.xml │ │ ├── openfileslistplugin.cpp │ │ └── openfileslistplugin.h │ ├── projectsimporter │ │ ├── Makefile.am │ │ ├── devcpploader.cpp │ │ ├── devcpploader.h │ │ ├── msvc10loader.cpp │ │ ├── msvc10loader.h │ │ ├── msvc7loader.cpp │ │ ├── msvc7loader.h │ │ ├── msvc7workspaceloader.cpp │ │ ├── msvc7workspaceloader.h │ │ ├── msvcloader.cpp │ │ ├── msvcloader.h │ │ ├── msvcworkspacebase.cpp │ │ ├── msvcworkspacebase.h │ │ ├── msvcworkspaceloader.cpp │ │ ├── msvcworkspaceloader.h │ │ ├── projectsimporter.cpp │ │ ├── projectsimporter.h │ │ └── resources │ │ │ ├── Makefile.am │ │ │ ├── manifest.xml │ │ │ └── project_import_menu.xrc │ ├── scriptedwizard │ │ ├── Makefile.am │ │ ├── buildtargetpanel.cpp │ │ ├── buildtargetpanel.h │ │ ├── compilerpanel.cpp │ │ ├── compilerpanel.h │ │ ├── filepathpanel.cpp │ │ ├── filepathpanel.h │ │ ├── genericselectpath.cpp │ │ ├── genericselectpath.h │ │ ├── genericsinglechoicelist.cpp │ │ ├── genericsinglechoicelist.h │ │ ├── infopanel.cpp │ │ ├── infopanel.h │ │ ├── projectpathpanel.cpp │ │ ├── projectpathpanel.h │ │ ├── resources │ │ │ ├── Makefile.am │ │ │ ├── arduino │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ ├── cores │ │ │ │ │ │ ├── CDC.cpp │ │ │ │ │ │ ├── HID.cpp │ │ │ │ │ │ ├── HardwareSerial.cpp │ │ │ │ │ │ ├── IPAddress.cpp │ │ │ │ │ │ ├── Print.cpp │ │ │ │ │ │ ├── Stream.cpp │ │ │ │ │ │ ├── Tone.cpp │ │ │ │ │ │ ├── USBCore.cpp │ │ │ │ │ │ ├── WInterrupts.c │ │ │ │ │ │ ├── WMath.cpp │ │ │ │ │ │ ├── WString.cpp │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── new.cpp │ │ │ │ │ │ ├── wiring.c │ │ │ │ │ │ ├── wiring_analog.c │ │ │ │ │ │ ├── wiring_digital.c │ │ │ │ │ │ ├── wiring_pulse.c │ │ │ │ │ │ └── wiring_shift.c │ │ │ │ │ ├── libraries │ │ │ │ │ │ └── libraries.cpp │ │ │ │ │ └── sketch.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ ├── wizard.script │ │ │ │ └── wizard.xrc │ │ │ ├── arm │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ ├── ARM-eval7t │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── evaluator7t.h │ │ │ │ │ │ ├── ld │ │ │ │ │ │ │ └── target.ld │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ └── vectors.S │ │ │ │ │ ├── ek-at91sam7a3 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ ├── at91sam7a3.h │ │ │ │ │ │ │ └── sam7a3ek.h │ │ │ │ │ │ ├── ld │ │ │ │ │ │ │ ├── target.ld │ │ │ │ │ │ │ └── targetRAM.ld │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ └── vectors.S │ │ │ │ │ ├── lpd-lh7a404 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ ├── arm9_mm.h │ │ │ │ │ │ │ ├── lh7a404.h │ │ │ │ │ │ │ └── lpd404.h │ │ │ │ │ │ ├── ld │ │ │ │ │ │ │ └── target.ld │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── lh7a404_mm.c │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ └── vectors.S │ │ │ │ │ ├── olimex-at91sam7sx │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ ├── at91sam7sx.h │ │ │ │ │ │ │ └── sam7p64.h │ │ │ │ │ │ ├── ld │ │ │ │ │ │ │ ├── target_s128.ld │ │ │ │ │ │ │ ├── target_s256.ld │ │ │ │ │ │ │ ├── target_s32.ld │ │ │ │ │ │ │ └── target_s64.ld │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ └── vectors.S │ │ │ │ │ ├── olimex-lpc213x │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ ├── lpc-p2138.h │ │ │ │ │ │ │ └── lpc213x.h │ │ │ │ │ │ ├── ld │ │ │ │ │ │ │ ├── target_2132.ld │ │ │ │ │ │ │ ├── target_2134.ld │ │ │ │ │ │ │ ├── target_2136.ld │ │ │ │ │ │ │ └── target_2138.ld │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ └── vectors.S │ │ │ │ │ ├── phyCORE-AT91M55800 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── at91m55800.h │ │ │ │ │ │ ├── ld │ │ │ │ │ │ │ ├── target.ld │ │ │ │ │ │ │ ├── targetRAM_1MB.ld │ │ │ │ │ │ │ ├── targetRAM_512kB.ld │ │ │ │ │ │ │ └── targetROM.ld │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ └── vectors.S │ │ │ │ │ ├── phyCORE-LPC2294 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── lpc2294.h │ │ │ │ │ │ ├── ld │ │ │ │ │ │ │ ├── target.ld │ │ │ │ │ │ │ ├── targetRAM_1MB.ld │ │ │ │ │ │ │ └── targetROM.ld │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ └── vectors.S │ │ │ │ │ └── phyCORE-PXA255 │ │ │ │ │ │ ├── h │ │ │ │ │ │ ├── pxa255regs.h │ │ │ │ │ │ └── pxa_mm.h │ │ │ │ │ │ ├── ld │ │ │ │ │ │ └── target.ld │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── irq.c │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ ├── pxa_mm.c │ │ │ │ │ │ └── vectors.S │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── avr │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ ├── FuseExt.c │ │ │ │ │ ├── FuseFuse0to4.c │ │ │ │ │ ├── FuseHigh.c │ │ │ │ │ ├── FuseLow.c │ │ │ │ │ └── main.c │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ ├── wizard.script │ │ │ │ └── wizard.xrc │ │ │ ├── base_wiz.xcf │ │ │ ├── c_file │ │ │ │ ├── Makefile.am │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── common_functions.script │ │ │ ├── config.script │ │ │ ├── console │ │ │ │ ├── Makefile.am │ │ │ │ ├── c │ │ │ │ │ └── main.c │ │ │ │ ├── cpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── d │ │ │ │ ├── Makefile.am │ │ │ │ ├── console │ │ │ │ │ └── hello.d │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── d_source │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.txt │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── directx │ │ │ │ ├── Makefile.am │ │ │ │ ├── dx8 │ │ │ │ │ └── main.cpp │ │ │ │ ├── dx9 │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── dll │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── main.h │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── empty │ │ │ │ ├── Makefile.am │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── empty_file │ │ │ │ ├── Makefile.am │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── fltk │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.cpp │ │ │ │ ├── fluid │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── main.fld │ │ │ │ │ └── main.h │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── fortran │ │ │ │ ├── Makefile.am │ │ │ │ ├── app │ │ │ │ │ ├── files │ │ │ │ │ │ └── main.f90 │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── wizard.png │ │ │ │ │ └── wizard.script │ │ │ │ ├── dll │ │ │ │ │ ├── files │ │ │ │ │ │ └── main.f90 │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── wizard.png │ │ │ │ │ └── wizard.script │ │ │ │ ├── file │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── wizard.png │ │ │ │ │ └── wizard.script │ │ │ │ └── lib │ │ │ │ │ ├── files │ │ │ │ │ └── main.f90 │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── wizard.png │ │ │ │ │ └── wizard.script │ │ │ ├── glfw │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── glut │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── gtk │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.c │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── h_file │ │ │ │ ├── Makefile.am │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── irrlicht │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── java │ │ │ │ ├── Makefile.am │ │ │ │ ├── file │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── wizard.png │ │ │ │ │ └── wizard.script │ │ │ │ ├── files │ │ │ │ │ └── Main.java │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── lf │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ ├── quick │ │ │ │ │ │ └── main.cpp │ │ │ │ │ └── structured │ │ │ │ │ │ ├── CMain.cpp │ │ │ │ │ │ ├── CMain.h │ │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ ├── wizard.script │ │ │ │ └── wizard.xrc │ │ │ ├── manifest.xml │ │ │ ├── matlab_csf │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ ├── mexversion.rc │ │ │ │ │ └── sfuntmpl.c │ │ │ │ ├── lccstub │ │ │ │ │ └── lccstub.c │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ ├── wizard.script │ │ │ │ └── wizard.xrc │ │ │ ├── mcs51 │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.c │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ ├── wizard.script │ │ │ │ └── wizard.xrc │ │ │ ├── msp430 │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.c │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ ├── wizard.script │ │ │ │ └── wizard.xrc │ │ │ ├── ogre │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── opencv │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ ├── arnold_schwarzenegger.jpg │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ ├── wizard.script │ │ │ │ └── wizard.xrc │ │ │ ├── opengl │ │ │ │ ├── Makefile.am │ │ │ │ ├── files_unix │ │ │ │ │ └── main.c │ │ │ │ ├── files_win │ │ │ │ │ └── main.c │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── plugins │ │ │ │ ├── Makefile.am │ │ │ │ ├── logo.png │ │ │ │ ├── plugins.xcf │ │ │ │ ├── templates │ │ │ │ │ ├── generic_template.cpp │ │ │ │ │ ├── generic_template.h │ │ │ │ │ ├── manifest_template.xml │ │ │ │ │ ├── mime_template.cpp │ │ │ │ │ ├── mime_template.h │ │ │ │ │ ├── tool_template.cpp │ │ │ │ │ ├── tool_template.h │ │ │ │ │ ├── wizard_template.cpp │ │ │ │ │ └── wizard_template.h │ │ │ │ ├── wizard.png │ │ │ │ ├── wizard.script │ │ │ │ └── wizard.xrc │ │ │ ├── ppc │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ ├── MPC5200 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── mpc5200.h │ │ │ │ │ │ ├── ld │ │ │ │ │ │ │ └── target.ld │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── crt0.S │ │ │ │ │ │ │ ├── main.c │ │ │ │ │ │ │ └── traptable.S │ │ │ │ │ └── MPC565 │ │ │ │ │ │ ├── h │ │ │ │ │ │ └── mpc555.h │ │ │ │ │ │ ├── ld │ │ │ │ │ │ └── target.ld │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── crt0.S │ │ │ │ │ │ └── main.c │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── qt4 │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── qt4dll │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── qt5 │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── sdl │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── cb.bmp │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── sdl2 │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── sfml │ │ │ │ ├── Makefile.am │ │ │ │ ├── logo.png │ │ │ │ ├── sfml1 │ │ │ │ │ ├── cb.bmp │ │ │ │ │ └── main.cpp │ │ │ │ ├── sfml2 │ │ │ │ │ ├── cb.bmp │ │ │ │ │ └── main.cpp │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── sharedlib │ │ │ │ ├── Makefile.am │ │ │ │ ├── c │ │ │ │ │ └── main.c │ │ │ │ ├── cpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── smartwin │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── staticlib │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.c │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── stlport │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── sys │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ └── driver.c │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ ├── tricore │ │ │ │ ├── Makefile.am │ │ │ │ ├── logo.png │ │ │ │ ├── templates │ │ │ │ │ ├── EasyKit-TC1767 │ │ │ │ │ │ ├── target.ld │ │ │ │ │ │ └── targetIntResources.ld │ │ │ │ │ ├── EasyRun-TC1796 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── easyrun_setup.h │ │ │ │ │ │ ├── memoryROM.x │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── setup.c │ │ │ │ │ ├── TriBoard-TC1130 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── triboard_setup.h │ │ │ │ │ │ ├── memoryROM.x │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── setup.c │ │ │ │ │ ├── TriBoard-TC1161 │ │ │ │ │ │ ├── target.ld │ │ │ │ │ │ └── targetIntResources.ld │ │ │ │ │ ├── TriBoard-TC1162 │ │ │ │ │ │ ├── target.ld │ │ │ │ │ │ └── targetIntResources.ld │ │ │ │ │ ├── TriBoard-TC1762 │ │ │ │ │ │ ├── target.ld │ │ │ │ │ │ └── targetIntResources.ld │ │ │ │ │ ├── TriBoard-TC1765 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── triboard_setup.h │ │ │ │ │ │ ├── memoryROM.x │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── setup.c │ │ │ │ │ ├── TriBoard-TC1766 │ │ │ │ │ │ ├── target.ld │ │ │ │ │ │ └── targetIntResources.ld │ │ │ │ │ ├── TriBoard-TC1775 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── triboard_setup.h │ │ │ │ │ │ ├── memoryROM.x │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── setup.c │ │ │ │ │ ├── TriBoard-TC1792 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── triboard_setup.h │ │ │ │ │ │ ├── memoryROM-intern.x │ │ │ │ │ │ ├── memoryROM.x │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── setup.c │ │ │ │ │ ├── TriBoard-TC1796 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── triboard_setup.h │ │ │ │ │ │ ├── memoryROM-intern.x │ │ │ │ │ │ ├── memoryROM.x │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── setup.c │ │ │ │ │ ├── TriBoard-TC1797 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── triboard_setup.h │ │ │ │ │ │ ├── memoryROM-intern.x │ │ │ │ │ │ ├── memoryROM.x │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── setup.c │ │ │ │ │ ├── TriBoard-TC1920 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── triboard_setup.h │ │ │ │ │ │ ├── memoryROM.x │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── setup.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── phyCORE-TC1130 │ │ │ │ │ │ ├── h │ │ │ │ │ │ │ └── phycore_setup.h │ │ │ │ │ │ ├── memoryROM.x │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── setup.c │ │ │ │ │ └── phyCORE-TC1775 │ │ │ │ │ │ ├── h │ │ │ │ │ │ └── phycore_setup.h │ │ │ │ │ │ ├── memoryROM.x │ │ │ │ │ │ └── src │ │ │ │ │ │ └── setup.c │ │ │ │ ├── wizard.png │ │ │ │ ├── wizard.script │ │ │ │ └── wizard.xrc │ │ │ ├── win32gui │ │ │ │ ├── Makefile.am │ │ │ │ ├── files │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ ├── manifest.xml │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ └── resource.rc │ │ │ │ │ └── frame │ │ │ │ │ │ └── main.cpp │ │ │ │ ├── logo.png │ │ │ │ ├── wizard.png │ │ │ │ └── wizard.script │ │ │ └── wxwidgets │ │ │ │ ├── Makefile.am │ │ │ │ ├── common │ │ │ │ ├── app.cpp │ │ │ │ ├── app.h │ │ │ │ ├── main.cpp │ │ │ │ └── main.h │ │ │ │ ├── logo.png │ │ │ │ ├── pch │ │ │ │ └── wx_pch.h │ │ │ │ ├── rc │ │ │ │ └── resource.rc │ │ │ │ ├── wizard.png │ │ │ │ ├── wizard.script │ │ │ │ ├── wizard.xrc │ │ │ │ ├── wxfb │ │ │ │ ├── dialog │ │ │ │ │ ├── GUIDialog.cpp │ │ │ │ │ ├── GUIDialog.h │ │ │ │ │ └── WxWizDialog.fbp │ │ │ │ └── frame │ │ │ │ │ ├── GUIFrame.cpp │ │ │ │ │ ├── GUIFrame.h │ │ │ │ │ └── WxWizFrame.fbp │ │ │ │ └── wxsmith │ │ │ │ ├── app.cpp │ │ │ │ ├── main.cpp │ │ │ │ ├── main.h │ │ │ │ └── resource.wxs │ │ ├── wiz.cpp │ │ ├── wiz.h │ │ ├── wizpage.cpp │ │ └── wizpage.h │ ├── tidycmt │ │ ├── manifest.xml │ │ ├── tidycmt.cpp │ │ ├── tidycmt.h │ │ ├── tidycmt_wx31.cbp │ │ ├── tidycmt_wx31_64.cbp │ │ ├── tidycmtconfig.h │ │ ├── tidycmtsettings.cpp │ │ ├── tidycmtsettings.h │ │ ├── tidycmtsettingswrapper.cpp │ │ ├── tidycmtsettingswrapper.h │ │ └── wxsmith │ │ │ └── TidyCmtSettings.wxs │ ├── todo │ │ ├── Makefile.am │ │ ├── addtododlg.cpp │ │ ├── addtododlg.h │ │ ├── asktypedlg.cpp │ │ ├── asktypedlg.h │ │ ├── fuzzer │ │ │ ├── main.cpp │ │ │ └── sdk.h │ │ ├── resources │ │ │ ├── Makefile.am │ │ │ ├── add_todo.xrc │ │ │ ├── ask_type.xrc │ │ │ ├── manifest.xml │ │ │ └── settings.xrc │ │ ├── todo_parser.cpp │ │ ├── todo_parser.h │ │ ├── todo_parser_fuzzer_wx30-unix.cbp │ │ ├── todolist.cpp │ │ ├── todolist.h │ │ ├── todolistview.cpp │ │ ├── todolistview.h │ │ ├── todosettingsdlg.cpp │ │ └── todosettingsdlg.h │ └── xpmanifest │ │ ├── Makefile.am │ │ ├── manifest.xml │ │ ├── windowsxplooknfeel.cpp │ │ └── windowsxplooknfeel.h ├── scripts │ ├── Makefile.am │ ├── edit_startup_script.script │ ├── make_dist.script │ ├── plugin_find_broken_files.script │ ├── sample_plugin.script │ ├── startup.script │ ├── tests │ │ ├── menu_test_plugin.script │ │ ├── script_test_plugin.script │ │ ├── sdk_test.script │ │ ├── test_base.script │ │ ├── user_dialog_test_plugin.script │ │ └── wx_test.script │ └── wx_help.script ├── sdk.doxy ├── sdk │ ├── Makefile.am │ ├── annoyingdialog.cpp │ ├── autodetectcompilers.cpp │ ├── base64.cpp │ ├── blockallocated.cpp │ ├── cbart_provider.cpp │ ├── cbauibook.cpp │ ├── cbcolourmanager.cpp │ ├── cbdebugger_interfaces.cpp │ ├── cbeditor.cpp │ ├── cbeditorprintout.cpp │ ├── cbexception.cpp │ ├── cbplugin.cpp │ ├── cbproject.cpp │ ├── cbstatusbar.cpp │ ├── cbstyledtextctrl.cpp │ ├── cbthreadpool.cpp │ ├── cbtreectrl.cpp │ ├── cbworkspace.cpp │ ├── ccmanager.cpp │ ├── compileoptionsbase.cpp │ ├── compiler.cpp │ ├── compilercommandgenerator.cpp │ ├── compilerfactory.cpp │ ├── compileroptions.cpp │ ├── compiletargetbase.cpp │ ├── configmanager-revision.cpp │ ├── configmanager.cpp │ ├── configurationpanel.cpp │ ├── configuretoolsdlg.cpp │ ├── confirmreplacedlg.cpp │ ├── crc32.cpp │ ├── cygwin.cpp │ ├── debuggermanager.cpp │ ├── editarrayfiledlg.cpp │ ├── editarrayorderdlg.cpp │ ├── editarraystringdlg.cpp │ ├── editor_hooks.cpp │ ├── editor_utils.cpp │ ├── editorbase.cpp │ ├── editorcolourset.cpp │ ├── editorlexerloader.cpp │ ├── editormanager.cpp │ ├── editpairdlg.cpp │ ├── editpathdlg.cpp │ ├── edittooldlg.cpp │ ├── encodingdetector.cpp │ ├── externaldepsdlg.cpp │ ├── filefilters.cpp │ ├── filegroupsandmasks.cpp │ ├── filemanager.cpp │ ├── findreplacedlg.cpp │ ├── genericmultilinenotesdlg.cpp │ ├── globals.cpp │ ├── importers_globals.cpp │ ├── incremental_select_helper.cpp │ ├── infowindow.cpp │ ├── loggers.cpp │ ├── logmanager.cpp │ ├── macrosmanager.cpp │ ├── manager.cpp │ ├── menuitemsmanager.cpp │ ├── mozilla_chardet │ │ ├── include │ │ │ ├── CharDistribution.h │ │ │ ├── JpCntx.h │ │ │ ├── mfbt │ │ │ │ └── mozilla │ │ │ │ │ ├── Alignment.h │ │ │ │ │ ├── Assertions.h │ │ │ │ │ ├── Attributes.h │ │ │ │ │ ├── Compiler.h │ │ │ │ │ ├── Compiler.h.org │ │ │ │ │ ├── Likely.h │ │ │ │ │ ├── NullPtr.h │ │ │ │ │ ├── NullPtr.h.org │ │ │ │ │ ├── TypedEnum.h │ │ │ │ │ ├── Types.h │ │ │ │ │ └── Util.h │ │ │ ├── nsBig5Prober.h │ │ │ ├── nsCharSetProber.h │ │ │ ├── nsCodingStateMachine.h │ │ │ ├── nsEUCJPProber.h │ │ │ ├── nsEUCKRProber.h │ │ │ ├── nsEUCTWProber.h │ │ │ ├── nsEscCharsetProber.h │ │ │ ├── nsGB2312Prober.h │ │ │ ├── nsHebrewProber.h │ │ │ ├── nsLatin1Prober.h │ │ │ ├── nsMBCSGroupProber.h │ │ │ ├── nsPkgInt.h │ │ │ ├── nsSBCSGroupProber.h │ │ │ ├── nsSBCSGroupProber.h.org │ │ │ ├── nsSBCharSetProber.h │ │ │ ├── nsSJISProber.h │ │ │ ├── nsUTF8Prober.h │ │ │ ├── nsUniversalDetector.h │ │ │ ├── nsUniversalDetector.h.org │ │ │ ├── nsprpub │ │ │ │ └── pr │ │ │ │ │ └── include │ │ │ │ │ ├── prcpucfg.h │ │ │ │ │ ├── prcpucfg_darwin.h │ │ │ │ │ ├── prcpucfg_linux.h │ │ │ │ │ ├── prcpucfg_openbsd.h │ │ │ │ │ ├── prcpucfg_win95.h │ │ │ │ │ ├── prcpucfg_winnt.h │ │ │ │ │ ├── prmem.h │ │ │ │ │ ├── prmem.h.org │ │ │ │ │ ├── prtypes.h │ │ │ │ │ └── prtypes.h.org │ │ │ └── xpcom │ │ │ │ ├── base │ │ │ │ ├── ErrorList.h │ │ │ │ ├── nsError.h │ │ │ │ ├── nsError.h.org │ │ │ │ ├── nscore.h │ │ │ │ └── nscore.h.org │ │ │ │ └── glue │ │ │ │ ├── nsDebug.h │ │ │ │ ├── nsDebug.h.org │ │ │ │ ├── nsMemory.h │ │ │ │ └── nsMemory.h.org │ │ └── src │ │ │ ├── Big5Freq.tab │ │ │ ├── CharDistribution.cpp │ │ │ ├── EUCKRFreq.tab │ │ │ ├── EUCTWFreq.tab │ │ │ ├── GB2312Freq.tab │ │ │ ├── JISFreq.tab │ │ │ ├── JpCntx.cpp │ │ │ ├── JpCntx.cpp.org │ │ │ ├── LangBulgarianModel.cpp │ │ │ ├── LangCyrillicModel.cpp │ │ │ ├── LangGreekModel.cpp │ │ │ ├── LangHebrewModel.cpp │ │ │ ├── LangHungarianModel.cpp │ │ │ ├── LangThaiModel.cpp │ │ │ ├── nsBig5Prober.cpp │ │ │ ├── nsCharSetProber.cpp │ │ │ ├── nsEUCJPProber.cpp │ │ │ ├── nsEUCKRProber.cpp │ │ │ ├── nsEUCTWProber.cpp │ │ │ ├── nsEscCharsetProber.cpp │ │ │ ├── nsEscCharsetProber.cpp.org │ │ │ ├── nsEscSM.cpp │ │ │ ├── nsGB2312Prober.cpp │ │ │ ├── nsHebrewProber.cpp │ │ │ ├── nsLatin1Prober.cpp │ │ │ ├── nsMBCSGroupProber.cpp │ │ │ ├── nsMBCSGroupProber.cpp.org │ │ │ ├── nsMBCSSM.cpp │ │ │ ├── nsSBCSGroupProber.cpp │ │ │ ├── nsSBCSGroupProber.cpp.org │ │ │ ├── nsSBCharSetProber.cpp │ │ │ ├── nsSBCharSetProber.cpp.org │ │ │ ├── nsSJISProber.cpp │ │ │ ├── nsUTF8Prober.cpp │ │ │ ├── nsUniversalDetector.cpp │ │ │ └── nsUniversalDetector.cpp.org │ ├── multiselectdlg.cpp │ ├── newfromtemplatedlg.cpp │ ├── nullptr.cpp │ ├── personalitymanager.cpp │ ├── pipedprocess.cpp │ ├── pluginmanager.cpp │ ├── pluginsconfigurationdlg.cpp │ ├── printing_types.cpp │ ├── projectbuildtarget.cpp │ ├── projectfile.cpp │ ├── projectfileoptionsdlg.cpp │ ├── projectlayoutloader.cpp │ ├── projectloader.cpp │ ├── projectloader_hooks.cpp │ ├── projectmanager.cpp │ ├── projectsfilemasksdlg.cpp │ ├── projecttemplateloader.cpp │ ├── resources │ │ ├── Makefile.am │ │ ├── auto_detect_compilers.xrc │ │ ├── configure_tools.xrc │ │ ├── confirm_replace.xrc │ │ ├── confirm_replace_multiple.xrc │ │ ├── edit_array_order.xrc │ │ ├── edit_array_string.xrc │ │ ├── edit_pair.xrc │ │ ├── edit_path.xrc │ │ ├── edit_tool.xrc │ │ ├── external_deps.xrc │ │ ├── findreplacedlg.xrc │ │ ├── generic_multi_select.xrc │ │ ├── generic_multiline_notes.xrc │ │ ├── get_global_uservar.xrc │ │ ├── global_uservars.xrc │ │ ├── images │ │ │ ├── 10x10 │ │ │ │ ├── breakpoint.png │ │ │ │ ├── breakpoint_disabled.png │ │ │ │ └── breakpoint_other.png │ │ │ ├── 12x12 │ │ │ │ ├── breakpoint.png │ │ │ │ ├── breakpoint_disabled.png │ │ │ │ └── breakpoint_other.png │ │ │ ├── 16x16 │ │ │ │ ├── breakpoint.png │ │ │ │ ├── breakpoint_disabled.png │ │ │ │ ├── breakpoint_other.png │ │ │ │ ├── missing_icon.png │ │ │ │ ├── readonly.png │ │ │ │ └── select_target.png │ │ │ ├── 20x20 │ │ │ │ ├── breakpoint.png │ │ │ │ ├── breakpoint_disabled.png │ │ │ │ ├── breakpoint_other.png │ │ │ │ ├── missing_icon.png │ │ │ │ ├── readonly.png │ │ │ │ └── select_target.png │ │ │ ├── 24x24 │ │ │ │ ├── breakpoint.png │ │ │ │ ├── breakpoint_disabled.png │ │ │ │ ├── breakpoint_other.png │ │ │ │ ├── missing_icon.png │ │ │ │ ├── readonly.png │ │ │ │ └── select_target.png │ │ │ ├── 28x28 │ │ │ │ ├── breakpoint.png │ │ │ │ ├── breakpoint_disabled.png │ │ │ │ ├── breakpoint_other.png │ │ │ │ ├── missing_icon.png │ │ │ │ ├── readonly.png │ │ │ │ └── select_target.png │ │ │ ├── 32x32 │ │ │ │ ├── breakpoint.png │ │ │ │ ├── breakpoint_disabled.png │ │ │ │ ├── breakpoint_other.png │ │ │ │ ├── missing_icon.png │ │ │ │ ├── readonly.png │ │ │ │ └── select_target.png │ │ │ ├── 40x40 │ │ │ │ ├── breakpoint.png │ │ │ │ ├── breakpoint_disabled.png │ │ │ │ ├── breakpoint_other.png │ │ │ │ ├── missing_icon.png │ │ │ │ ├── readonly.png │ │ │ │ └── select_target.png │ │ │ ├── 48x48 │ │ │ │ ├── breakpoint.png │ │ │ │ ├── breakpoint_disabled.png │ │ │ │ ├── breakpoint_other.png │ │ │ │ ├── missing_icon.png │ │ │ │ ├── readonly.png │ │ │ │ └── select_target.png │ │ │ ├── 56x56 │ │ │ │ ├── breakpoint.png │ │ │ │ ├── breakpoint_disabled.png │ │ │ │ ├── breakpoint_other.png │ │ │ │ ├── missing_icon.png │ │ │ │ ├── readonly.png │ │ │ │ └── select_target.png │ │ │ ├── 64x64 │ │ │ │ ├── breakpoint.png │ │ │ │ ├── breakpoint_disabled.png │ │ │ │ ├── breakpoint_other.png │ │ │ │ ├── missing_icon.png │ │ │ │ ├── readonly.png │ │ │ │ └── select_target.png │ │ │ └── 8x8 │ │ │ │ ├── breakpoint.png │ │ │ │ ├── breakpoint_disabled.png │ │ │ │ └── breakpoint_other.png │ │ ├── lexers │ │ │ ├── Makefile.am │ │ │ ├── README.txt │ │ │ ├── lexer_A68k.sample │ │ │ ├── lexer_A68k.xml │ │ │ ├── lexer_OgreCompositor.sample │ │ │ ├── lexer_OgreCompositor.xml │ │ │ ├── lexer_OgreMaterial.sample │ │ │ ├── lexer_OgreMaterial.xml │ │ │ ├── lexer_ada.sample │ │ │ ├── lexer_ada.xml │ │ │ ├── lexer_angelscript.sample │ │ │ ├── lexer_angelscript.xml │ │ │ ├── lexer_autotools.sample │ │ │ ├── lexer_autotools.xml │ │ │ ├── lexer_bash.sample │ │ │ ├── lexer_bash.xml │ │ │ ├── lexer_batch.sample │ │ │ ├── lexer_batch.xml │ │ │ ├── lexer_bibtex.sample │ │ │ ├── lexer_bibtex.xml │ │ │ ├── lexer_caml.sample │ │ │ ├── lexer_caml.xml │ │ │ ├── lexer_cg.sample │ │ │ ├── lexer_cg.xml │ │ │ ├── lexer_cmake.sample │ │ │ ├── lexer_cmake.xml │ │ │ ├── lexer_coffee.sample │ │ │ ├── lexer_coffee.xml │ │ │ ├── lexer_cpp.sample │ │ │ ├── lexer_cpp.xml │ │ │ ├── lexer_css.sample │ │ │ ├── lexer_css.xml │ │ │ ├── lexer_cu.sample │ │ │ ├── lexer_cu.xml │ │ │ ├── lexer_d.sample │ │ │ ├── lexer_d.xml │ │ │ ├── lexer_diff.sample │ │ │ ├── lexer_diff.xml │ │ │ ├── lexer_f77.sample │ │ │ ├── lexer_f77.xml │ │ │ ├── lexer_fortran.sample │ │ │ ├── lexer_fortran.xml │ │ │ ├── lexer_glsl.sample │ │ │ ├── lexer_glsl.xml │ │ │ ├── lexer_gm.sample │ │ │ ├── lexer_gm.xml │ │ │ ├── lexer_haskell.sample │ │ │ ├── lexer_haskell.xml │ │ │ ├── lexer_hitasm.sample │ │ │ ├── lexer_hitasm.xml │ │ │ ├── lexer_html.sample │ │ │ ├── lexer_html.xml │ │ │ ├── lexer_ihex.sample │ │ │ ├── lexer_ihex.xml │ │ │ ├── lexer_inno.sample │ │ │ ├── lexer_inno.xml │ │ │ ├── lexer_java.sample │ │ │ ├── lexer_java.xml │ │ │ ├── lexer_javascript.sample │ │ │ ├── lexer_javascript.xml │ │ │ ├── lexer_latex.sample │ │ │ ├── lexer_latex.xml │ │ │ ├── lexer_lisp.sample │ │ │ ├── lexer_lisp.xml │ │ │ ├── lexer_lua.sample │ │ │ ├── lexer_lua.xml │ │ │ ├── lexer_make.sample │ │ │ ├── lexer_make.xml │ │ │ ├── lexer_markdown.sample │ │ │ ├── lexer_markdown.xml │ │ │ ├── lexer_masm.sample │ │ │ ├── lexer_masm.xml │ │ │ ├── lexer_matlab.sample │ │ │ ├── lexer_matlab.xml │ │ │ ├── lexer_nim.sample │ │ │ ├── lexer_nim.xml │ │ │ ├── lexer_nsis.sample │ │ │ ├── lexer_nsis.xml │ │ │ ├── lexer_objc.sample │ │ │ ├── lexer_objc.xml │ │ │ ├── lexer_pascal.sample │ │ │ ├── lexer_pascal.xml │ │ │ ├── lexer_perl.sample │ │ │ ├── lexer_perl.xml │ │ │ ├── lexer_plain.xml │ │ │ ├── lexer_postscript.sample │ │ │ ├── lexer_postscript.xml │ │ │ ├── lexer_powershell.sample │ │ │ ├── lexer_powershell.xml │ │ │ ├── lexer_prg.sample │ │ │ ├── lexer_prg.xml │ │ │ ├── lexer_properties.sample │ │ │ ├── lexer_properties.xml │ │ │ ├── lexer_proto.xml │ │ │ ├── lexer_python.sample │ │ │ ├── lexer_python.xml │ │ │ ├── lexer_rc.sample │ │ │ ├── lexer_rc.xml │ │ │ ├── lexer_registry.sample │ │ │ ├── lexer_registry.xml │ │ │ ├── lexer_ruby.sample │ │ │ ├── lexer_ruby.xml │ │ │ ├── lexer_smalltalk.sample │ │ │ ├── lexer_smalltalk.xml │ │ │ ├── lexer_sql.sample │ │ │ ├── lexer_sql.xml │ │ │ ├── lexer_squirrel.sample │ │ │ ├── lexer_squirrel.xml │ │ │ ├── lexer_srec.sample │ │ │ ├── lexer_srec.xml │ │ │ ├── lexer_tehex.sample │ │ │ ├── lexer_tehex.xml │ │ │ ├── lexer_vbscript.sample │ │ │ ├── lexer_vbscript.xml │ │ │ ├── lexer_verilog.sample │ │ │ ├── lexer_verilog.xml │ │ │ ├── lexer_vhdl.sample │ │ │ ├── lexer_vhdl.xml │ │ │ ├── lexer_xml.sample │ │ │ ├── lexer_xml.xml │ │ │ ├── lexer_yaml.sample │ │ │ └── lexer_yaml.xml │ │ ├── new_from_template.xrc │ │ ├── plugins_configuration.xrc │ │ ├── project_manager_file_types.xrc │ │ ├── projectfile_options.xrc │ │ ├── scripting_security_dlg.xrc │ │ └── select_target.xrc │ ├── scripting │ │ ├── COPYRIGHT │ │ ├── HISTORY │ │ ├── Makefile.am │ │ ├── README │ │ ├── bindings │ │ │ ├── Makefile.am │ │ │ ├── sc_consts.cpp │ │ │ ├── sc_globals.cpp │ │ │ ├── sc_io.cpp │ │ │ ├── sc_plugin.cpp │ │ │ ├── sc_progress.cpp │ │ │ ├── sc_util_dialogs.cpp │ │ │ ├── sc_utils.cpp │ │ │ ├── sc_wxtypes.cpp │ │ │ └── scriptbindings.cpp │ │ ├── sqstdlib │ │ │ ├── Makefile.am │ │ │ ├── sqstdaux.cpp │ │ │ ├── sqstdblob.cpp │ │ │ ├── sqstdblobimpl.h │ │ │ ├── sqstdio.cpp │ │ │ ├── sqstdlib.dsp │ │ │ ├── sqstdmath.cpp │ │ │ ├── sqstdrex.cpp │ │ │ ├── sqstdstream.cpp │ │ │ ├── sqstdstream.h │ │ │ ├── sqstdstring.cpp │ │ │ └── sqstdsystem.cpp │ │ └── squirrel │ │ │ ├── Makefile.am │ │ │ ├── sqapi.cpp │ │ │ ├── sqarray.h │ │ │ ├── sqbaselib.cpp │ │ │ ├── sqclass.cpp │ │ │ ├── sqclass.h │ │ │ ├── sqclosure.h │ │ │ ├── sqcompiler.cpp │ │ │ ├── sqcompiler.h │ │ │ ├── sqdebug.cpp │ │ │ ├── sqfuncproto.h │ │ │ ├── sqfuncstate.cpp │ │ │ ├── sqfuncstate.h │ │ │ ├── sqlexer.cpp │ │ │ ├── sqlexer.h │ │ │ ├── sqmem.cpp │ │ │ ├── sqobject.cpp │ │ │ ├── sqobject.h │ │ │ ├── sqopcodes.h │ │ │ ├── sqpcheader.h │ │ │ ├── sqstate.cpp │ │ │ ├── sqstate.h │ │ │ ├── sqstring.h │ │ │ ├── sqtable.cpp │ │ │ ├── sqtable.h │ │ │ ├── squirrel.dsp │ │ │ ├── squserdata.h │ │ │ ├── squtils.h │ │ │ ├── sqvm.cpp │ │ │ └── sqvm.h │ ├── scriptingmanager.cpp │ ├── scriptsecuritywarningdlg.cpp │ ├── scrollingdialog.cpp │ ├── sdk_events.cpp │ ├── searchresultslog.cpp │ ├── selecttargetdlg.cpp │ ├── templatemanager.cpp │ ├── tinywxuni.cpp │ ├── toolsmanager.cpp │ ├── uservarmanager.cpp │ ├── workspaceloader.cpp │ ├── wxscintilla │ │ ├── Makefile.am │ │ ├── Readme │ │ ├── build │ │ │ ├── BuildInfo.txt │ │ │ ├── Makefile │ │ │ ├── wxscintilla.dsp │ │ │ └── wxscintilla.dsw │ │ ├── include │ │ │ └── wx │ │ │ │ └── wxscintilla.h │ │ ├── lib │ │ │ └── dummy │ │ └── src │ │ │ ├── PlatWX.cpp │ │ │ ├── PlatWX.h │ │ │ ├── ScintillaWX.cpp │ │ │ ├── ScintillaWX.h │ │ │ ├── scintilla │ │ │ ├── License.txt │ │ │ ├── README │ │ │ ├── bin │ │ │ │ └── __init__.py │ │ │ ├── cppcheck.suppress │ │ │ ├── delbin.bat │ │ │ ├── doc │ │ │ │ ├── Design.html │ │ │ │ ├── Icons.html │ │ │ │ ├── Indicators.png │ │ │ │ ├── Lexer.txt │ │ │ │ ├── Markers.png │ │ │ │ ├── Privacy.html │ │ │ │ ├── SciBreak.jpg │ │ │ │ ├── SciCoding.html │ │ │ │ ├── SciRest.jpg │ │ │ │ ├── SciTEIco.png │ │ │ │ ├── SciWord.jpg │ │ │ │ ├── ScintillaDoc.html │ │ │ │ ├── ScintillaDownload.html │ │ │ │ ├── ScintillaHistory.html │ │ │ │ ├── ScintillaRelated.html │ │ │ │ ├── ScintillaToDo.html │ │ │ │ ├── ScintillaUsage.html │ │ │ │ ├── Steps.html │ │ │ │ ├── annotations.png │ │ │ │ ├── index.html │ │ │ │ └── styledmargin.png │ │ │ ├── include │ │ │ │ ├── ILexer.h │ │ │ │ ├── Platform.h │ │ │ │ ├── SciLexer.h │ │ │ │ ├── Sci_Position.h │ │ │ │ ├── Scintilla.h │ │ │ │ ├── Scintilla.iface │ │ │ │ └── ScintillaWidget.h │ │ │ ├── lexers │ │ │ │ ├── LexA68k.cxx │ │ │ │ ├── LexAPDL.cxx │ │ │ │ ├── LexASY.cxx │ │ │ │ ├── LexAU3.cxx │ │ │ │ ├── LexAVE.cxx │ │ │ │ ├── LexAVS.cxx │ │ │ │ ├── LexAbaqus.cxx │ │ │ │ ├── LexAda.cxx │ │ │ │ ├── LexAsm.cxx │ │ │ │ ├── LexAsn1.cxx │ │ │ │ ├── LexBaan.cxx │ │ │ │ ├── LexBash.cxx │ │ │ │ ├── LexBasic.cxx │ │ │ │ ├── LexBatch.cxx │ │ │ │ ├── LexBibTeX.cxx │ │ │ │ ├── LexBullant.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 │ │ │ │ ├── LexDiff.cxx │ │ │ │ ├── LexECL.cxx │ │ │ │ ├── LexEDIFACT.cxx │ │ │ │ ├── LexEScript.cxx │ │ │ │ ├── LexEiffel.cxx │ │ │ │ ├── LexErlang.cxx │ │ │ │ ├── LexErrorList.cxx │ │ │ │ ├── LexFlagship.cxx │ │ │ │ ├── LexForth.cxx │ │ │ │ ├── LexFortran.cxx │ │ │ │ ├── LexGAP.cxx │ │ │ │ ├── LexGui4Cli.cxx │ │ │ │ ├── LexHTML.cxx │ │ │ │ ├── LexHaskell.cxx │ │ │ │ ├── LexHex.cxx │ │ │ │ ├── LexIndent.cxx │ │ │ │ ├── LexInno.cxx │ │ │ │ ├── LexJSON.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 │ │ │ │ ├── LexMetapost.cxx │ │ │ │ ├── LexModula.cxx │ │ │ │ ├── LexMySQL.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 │ │ │ │ ├── LexRebol.cxx │ │ │ │ ├── LexRegistry.cxx │ │ │ │ ├── LexRuby.cxx │ │ │ │ ├── LexRust.cxx │ │ │ │ ├── LexSML.cxx │ │ │ │ ├── LexSQL.cxx │ │ │ │ ├── LexSTTXT.cxx │ │ │ │ ├── LexScriptol.cxx │ │ │ │ ├── LexSmalltalk.cxx │ │ │ │ ├── LexSorcus.cxx │ │ │ │ ├── LexSpecman.cxx │ │ │ │ ├── LexSpice.cxx │ │ │ │ ├── LexTACL.cxx │ │ │ │ ├── LexTADS3.cxx │ │ │ │ ├── LexTAL.cxx │ │ │ │ ├── LexTCL.cxx │ │ │ │ ├── LexTCMD.cxx │ │ │ │ ├── LexTeX.cxx │ │ │ │ ├── LexTxt2tags.cxx │ │ │ │ ├── LexVB.cxx │ │ │ │ ├── LexVHDL.cxx │ │ │ │ ├── LexVerilog.cxx │ │ │ │ ├── LexVisualProlog.cxx │ │ │ │ └── LexYAML.cxx │ │ │ ├── lexlib │ │ │ │ ├── Accessor.cxx │ │ │ │ ├── Accessor.h │ │ │ │ ├── CharacterCategory.cxx │ │ │ │ ├── CharacterCategory.h │ │ │ │ ├── CharacterSet.cxx │ │ │ │ ├── CharacterSet.h │ │ │ │ ├── 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 │ │ │ │ ├── Face.py │ │ │ │ ├── FileGenerator.py │ │ │ │ ├── GenerateCaseConvert.py │ │ │ │ ├── GenerateCharacterCategory.py │ │ │ │ ├── HFacer.py │ │ │ │ ├── HeaderCheck.py │ │ │ │ ├── HeaderOrder.txt │ │ │ │ ├── LexGen.py │ │ │ │ └── ScintillaData.py │ │ │ ├── src │ │ │ │ ├── AutoComplete.cxx │ │ │ │ ├── AutoComplete.h │ │ │ │ ├── CallTip.cxx │ │ │ │ ├── CallTip.h │ │ │ │ ├── CaseConvert.cxx │ │ │ │ ├── CaseConvert.h │ │ │ │ ├── CaseFolder.cxx │ │ │ │ ├── CaseFolder.h │ │ │ │ ├── Catalogue.cxx │ │ │ │ ├── Catalogue.h │ │ │ │ ├── CellBuffer.cxx │ │ │ │ ├── CellBuffer.h │ │ │ │ ├── CharClassify.cxx │ │ │ │ ├── CharClassify.h │ │ │ │ ├── ContractionState.cxx │ │ │ │ ├── ContractionState.h │ │ │ │ ├── Decoration.cxx │ │ │ │ ├── Decoration.h │ │ │ │ ├── Document.cxx │ │ │ │ ├── Document.h │ │ │ │ ├── EditModel.cxx │ │ │ │ ├── EditModel.h │ │ │ │ ├── EditView.cxx │ │ │ │ ├── EditView.h │ │ │ │ ├── Editor.cxx │ │ │ │ ├── Editor.h │ │ │ │ ├── ExternalLexer.cxx │ │ │ │ ├── ExternalLexer.h │ │ │ │ ├── FontQuality.h │ │ │ │ ├── Indicator.cxx │ │ │ │ ├── Indicator.h │ │ │ │ ├── KeyMap.cxx │ │ │ │ ├── KeyMap.h │ │ │ │ ├── LineMarker.cxx │ │ │ │ ├── LineMarker.h │ │ │ │ ├── MarginView.cxx │ │ │ │ ├── MarginView.h │ │ │ │ ├── Partitioning.h │ │ │ │ ├── PerLine.cxx │ │ │ │ ├── PerLine.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 │ │ │ │ ├── UniConversion.cxx │ │ │ │ ├── UniConversion.h │ │ │ │ ├── UnicodeFromUTF8.h │ │ │ │ ├── UniqueString.h │ │ │ │ ├── ViewStyle.cxx │ │ │ │ ├── ViewStyle.h │ │ │ │ ├── XPM.cxx │ │ │ │ └── XPM.h │ │ │ └── version.txt │ │ │ ├── scintilla_generator │ │ │ ├── gen_iface.py │ │ │ ├── readme.txt │ │ │ ├── stc.cpp.in │ │ │ ├── stc.h.in │ │ │ └── stc.interface.h.in │ │ │ └── wxscintilla.cpp │ └── xtra_res.cpp ├── src │ ├── Makefile.am │ ├── app.cpp │ ├── app.h │ ├── appglobals.cpp │ ├── appglobals.h │ ├── associations.cpp │ ├── associations.h │ ├── backtracedlg.cpp │ ├── backtracedlg.h │ ├── batchbuild.h │ ├── breakpointsdlg.cpp │ ├── breakpointsdlg.h │ ├── codeblocks.1 │ ├── compilersettingsdlg.cpp │ ├── compilersettingsdlg.h │ ├── cpuregistersdlg.cpp │ ├── cpuregistersdlg.h │ ├── crashhandler.cpp │ ├── crashhandler.h │ ├── debugger_interface_creator.cpp │ ├── debugger_interface_creator.h │ ├── debuggermenu.cpp │ ├── debuggermenu.h │ ├── debuggersettingscommonpanel.cpp │ ├── debuggersettingscommonpanel.h │ ├── debuggersettingsdlg.cpp │ ├── debuggersettingsdlg.h │ ├── debuggersettingspanel.cpp │ ├── debuggersettingspanel.h │ ├── disassemblydlg.cpp │ ├── disassemblydlg.h │ ├── dlgabout.cpp │ ├── dlgabout.h │ ├── dlgaboutplugin.cpp │ ├── dlgaboutplugin.h │ ├── editkeywordsdlg.cpp │ ├── editkeywordsdlg.h │ ├── editorconfigurationdlg.cpp │ ├── editorconfigurationdlg.h │ ├── environmentsettingsdlg.cpp │ ├── environmentsettingsdlg.h │ ├── examinememorydlg.cpp │ ├── examinememorydlg.h │ ├── find_replace.cpp │ ├── find_replace.h │ ├── goto_file.cpp │ ├── goto_file.h │ ├── infopane.cpp │ ├── infopane.h │ ├── ipc.cpp │ ├── ipc.h │ ├── main.cpp │ ├── main.h │ ├── notebookstyles.cpp │ ├── notebookstyles.h │ ├── printdlg.cpp │ ├── printdlg.h │ ├── projectdepsdlg.cpp │ ├── projectdepsdlg.h │ ├── projectmanagerui.cpp │ ├── projectmanagerui.h │ ├── projectoptionsdlg.cpp │ ├── projectoptionsdlg.h │ ├── recentitemslist.cpp │ ├── recentitemslist.h │ ├── resources │ │ ├── Makefile.am │ │ ├── amd64.manifest │ │ ├── amd64_dpi_aware_on.manifest │ │ ├── app_compiler_settings.xrc │ │ ├── ask_assocs.xrc │ │ ├── debugger_menu.xrc │ │ ├── debugger_toolbar.xrc │ │ ├── disassembly.xrc │ │ ├── dlg_about.xrc │ │ ├── dlg_about_plugin.xrc │ │ ├── edit_keywords.xrc │ │ ├── editor_configuration.xrc │ │ ├── env_settings.xrc │ │ ├── ia64.manifest │ │ ├── icons │ │ │ ├── Makefile.am │ │ │ ├── app.icns │ │ │ ├── app.ico │ │ │ ├── app.r │ │ │ ├── app.xpm │ │ │ ├── app_64.xpm │ │ │ ├── asm.ico │ │ │ ├── c.icns │ │ │ ├── c.ico │ │ │ ├── c64.xpm │ │ │ ├── cbp.icns │ │ │ ├── cbp.ico │ │ │ ├── cbp64.xpm │ │ │ ├── cg.icns │ │ │ ├── cg.ico │ │ │ ├── cg64.xpm │ │ │ ├── cpp.icns │ │ │ ├── cpp.ico │ │ │ ├── cpp64.xpm │ │ │ ├── csd.icns │ │ │ ├── csd.ico │ │ │ ├── csd64.xpm │ │ │ ├── d.icns │ │ │ ├── d.ico │ │ │ ├── d64.xpm │ │ │ ├── dev.ico │ │ │ ├── dev64.xpm │ │ │ ├── dsp.ico │ │ │ ├── dsp64.xpm │ │ │ ├── dsw.ico │ │ │ ├── dsw64.xpm │ │ │ ├── f.icns │ │ │ ├── f.ico │ │ │ ├── f64.xpm │ │ │ ├── filetempl.ico │ │ │ ├── h.icns │ │ │ ├── h.ico │ │ │ ├── h64.xpm │ │ │ ├── j.ico │ │ │ ├── proj.ico │ │ │ ├── proj64.xpm │ │ │ ├── rc.icns │ │ │ ├── rc.ico │ │ │ ├── rc64.xpm │ │ │ └── template.ico │ │ ├── images │ │ │ ├── 16x16 │ │ │ │ ├── README.txt │ │ │ │ ├── bookmark_add.png │ │ │ │ ├── common.xcf │ │ │ │ ├── dbginfo.png │ │ │ │ ├── dbgnext.png │ │ │ │ ├── dbgnexti.png │ │ │ │ ├── dbgpause.png │ │ │ │ ├── dbgrun.png │ │ │ │ ├── dbgrunto.png │ │ │ │ ├── dbgstep.png │ │ │ │ ├── dbgstepi.png │ │ │ │ ├── dbgstepout.png │ │ │ │ ├── dbgstop.png │ │ │ │ ├── dbgwindow.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editcut.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── exit.png │ │ │ │ ├── fileclose.png │ │ │ │ ├── filefind.png │ │ │ │ ├── filefindnext.png │ │ │ │ ├── filefindprev.png │ │ │ │ ├── filenew.png │ │ │ │ ├── fileopen.png │ │ │ │ ├── fileprint.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filesaveall.png │ │ │ │ ├── filesaveas.png │ │ │ │ ├── findf.png │ │ │ │ ├── goto.png │ │ │ │ ├── history_clear.png │ │ │ │ ├── idea.png │ │ │ │ ├── info.png │ │ │ │ ├── plug.png │ │ │ │ ├── project.xcf │ │ │ │ ├── redo.png │ │ │ │ ├── searchreplace.png │ │ │ │ ├── searchreplacef.png │ │ │ │ └── undo.png │ │ │ ├── 20x20 │ │ │ │ ├── bookmark_add.png │ │ │ │ ├── dbginfo.png │ │ │ │ ├── dbgnext.png │ │ │ │ ├── dbgnexti.png │ │ │ │ ├── dbgpause.png │ │ │ │ ├── dbgrun.png │ │ │ │ ├── dbgrunto.png │ │ │ │ ├── dbgstep.png │ │ │ │ ├── dbgstepi.png │ │ │ │ ├── dbgstepout.png │ │ │ │ ├── dbgstop.png │ │ │ │ ├── dbgwindow.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editcut.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── exit.png │ │ │ │ ├── fileclose.png │ │ │ │ ├── filefind.png │ │ │ │ ├── filefindnext.png │ │ │ │ ├── filefindprev.png │ │ │ │ ├── filenew.png │ │ │ │ ├── fileopen.png │ │ │ │ ├── fileprint.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filesaveall.png │ │ │ │ ├── filesaveas.png │ │ │ │ ├── findf.png │ │ │ │ ├── goto.png │ │ │ │ ├── history_clear.png │ │ │ │ ├── idea.png │ │ │ │ ├── info.png │ │ │ │ ├── plug.png │ │ │ │ ├── redo.png │ │ │ │ ├── searchreplace.png │ │ │ │ ├── searchreplacef.png │ │ │ │ └── undo.png │ │ │ ├── 24x24 │ │ │ │ ├── bookmark_add.png │ │ │ │ ├── dbginfo.png │ │ │ │ ├── dbgnext.png │ │ │ │ ├── dbgnexti.png │ │ │ │ ├── dbgpause.png │ │ │ │ ├── dbgrun.png │ │ │ │ ├── dbgrunto.png │ │ │ │ ├── dbgstep.png │ │ │ │ ├── dbgstepi.png │ │ │ │ ├── dbgstepout.png │ │ │ │ ├── dbgstop.png │ │ │ │ ├── dbgwindow.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editcut.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── exit.png │ │ │ │ ├── fileclose.png │ │ │ │ ├── filefind.png │ │ │ │ ├── filefindnext.png │ │ │ │ ├── filefindprev.png │ │ │ │ ├── filenew.png │ │ │ │ ├── fileopen.png │ │ │ │ ├── fileprint.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filesaveall.png │ │ │ │ ├── filesaveas.png │ │ │ │ ├── findf.png │ │ │ │ ├── goto.png │ │ │ │ ├── history_clear.png │ │ │ │ ├── idea.png │ │ │ │ ├── info.png │ │ │ │ ├── plug.png │ │ │ │ ├── redo.png │ │ │ │ ├── searchreplace.png │ │ │ │ ├── searchreplacef.png │ │ │ │ └── undo.png │ │ │ ├── 28x28 │ │ │ │ ├── bookmark_add.png │ │ │ │ ├── dbginfo.png │ │ │ │ ├── dbgnext.png │ │ │ │ ├── dbgnexti.png │ │ │ │ ├── dbgpause.png │ │ │ │ ├── dbgrun.png │ │ │ │ ├── dbgrunto.png │ │ │ │ ├── dbgstep.png │ │ │ │ ├── dbgstepi.png │ │ │ │ ├── dbgstepout.png │ │ │ │ ├── dbgstop.png │ │ │ │ ├── dbgwindow.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editcut.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── exit.png │ │ │ │ ├── fileclose.png │ │ │ │ ├── filefind.png │ │ │ │ ├── filefindnext.png │ │ │ │ ├── filefindprev.png │ │ │ │ ├── filenew.png │ │ │ │ ├── fileopen.png │ │ │ │ ├── fileprint.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filesaveall.png │ │ │ │ ├── filesaveas.png │ │ │ │ ├── findf.png │ │ │ │ ├── goto.png │ │ │ │ ├── history_clear.png │ │ │ │ ├── idea.png │ │ │ │ ├── info.png │ │ │ │ ├── plug.png │ │ │ │ ├── redo.png │ │ │ │ ├── searchreplace.png │ │ │ │ ├── searchreplacef.png │ │ │ │ └── undo.png │ │ │ ├── 32x32 │ │ │ │ ├── bookmark_add.png │ │ │ │ ├── dbginfo.png │ │ │ │ ├── dbgnext.png │ │ │ │ ├── dbgnexti.png │ │ │ │ ├── dbgpause.png │ │ │ │ ├── dbgrun.png │ │ │ │ ├── dbgrunto.png │ │ │ │ ├── dbgstep.png │ │ │ │ ├── dbgstepi.png │ │ │ │ ├── dbgstepout.png │ │ │ │ ├── dbgstop.png │ │ │ │ ├── dbgwindow.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editcut.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── exit.png │ │ │ │ ├── fileclose.png │ │ │ │ ├── filefind.png │ │ │ │ ├── filefindnext.png │ │ │ │ ├── filefindprev.png │ │ │ │ ├── filenew.png │ │ │ │ ├── fileopen.png │ │ │ │ ├── fileprint.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filesaveall.png │ │ │ │ ├── filesaveas.png │ │ │ │ ├── findf.png │ │ │ │ ├── goto.png │ │ │ │ ├── history_clear.png │ │ │ │ ├── idea.png │ │ │ │ ├── info.png │ │ │ │ ├── plug.png │ │ │ │ ├── redo.png │ │ │ │ ├── searchreplace.png │ │ │ │ ├── searchreplacef.png │ │ │ │ └── undo.png │ │ │ ├── 40x40 │ │ │ │ ├── bookmark_add.png │ │ │ │ ├── dbginfo.png │ │ │ │ ├── dbgnext.png │ │ │ │ ├── dbgnexti.png │ │ │ │ ├── dbgpause.png │ │ │ │ ├── dbgrun.png │ │ │ │ ├── dbgrunto.png │ │ │ │ ├── dbgstep.png │ │ │ │ ├── dbgstepi.png │ │ │ │ ├── dbgstepout.png │ │ │ │ ├── dbgstop.png │ │ │ │ ├── dbgwindow.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editcut.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── exit.png │ │ │ │ ├── fileclose.png │ │ │ │ ├── filefind.png │ │ │ │ ├── filefindnext.png │ │ │ │ ├── filefindprev.png │ │ │ │ ├── filenew.png │ │ │ │ ├── fileopen.png │ │ │ │ ├── fileprint.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filesaveall.png │ │ │ │ ├── filesaveas.png │ │ │ │ ├── findf.png │ │ │ │ ├── goto.png │ │ │ │ ├── history_clear.png │ │ │ │ ├── idea.png │ │ │ │ ├── info.png │ │ │ │ ├── plug.png │ │ │ │ ├── redo.png │ │ │ │ ├── searchreplace.png │ │ │ │ ├── searchreplacef.png │ │ │ │ └── undo.png │ │ │ ├── 48x48 │ │ │ │ ├── bookmark_add.png │ │ │ │ ├── dbginfo.png │ │ │ │ ├── dbgnext.png │ │ │ │ ├── dbgnexti.png │ │ │ │ ├── dbgpause.png │ │ │ │ ├── dbgrun.png │ │ │ │ ├── dbgrunto.png │ │ │ │ ├── dbgstep.png │ │ │ │ ├── dbgstepi.png │ │ │ │ ├── dbgstepout.png │ │ │ │ ├── dbgstop.png │ │ │ │ ├── dbgwindow.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editcut.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── exit.png │ │ │ │ ├── fileclose.png │ │ │ │ ├── filefind.png │ │ │ │ ├── filefindnext.png │ │ │ │ ├── filefindprev.png │ │ │ │ ├── filenew.png │ │ │ │ ├── fileopen.png │ │ │ │ ├── fileprint.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filesaveall.png │ │ │ │ ├── filesaveas.png │ │ │ │ ├── findf.png │ │ │ │ ├── goto.png │ │ │ │ ├── history_clear.png │ │ │ │ ├── idea.png │ │ │ │ ├── info.png │ │ │ │ ├── plug.png │ │ │ │ ├── redo.png │ │ │ │ ├── searchreplace.png │ │ │ │ ├── searchreplacef.png │ │ │ │ └── undo.png │ │ │ ├── 56x56 │ │ │ │ ├── bookmark_add.png │ │ │ │ ├── dbginfo.png │ │ │ │ ├── dbgnext.png │ │ │ │ ├── dbgnexti.png │ │ │ │ ├── dbgpause.png │ │ │ │ ├── dbgrun.png │ │ │ │ ├── dbgrunto.png │ │ │ │ ├── dbgstep.png │ │ │ │ ├── dbgstepi.png │ │ │ │ ├── dbgstepout.png │ │ │ │ ├── dbgstop.png │ │ │ │ ├── dbgwindow.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editcut.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── exit.png │ │ │ │ ├── fileclose.png │ │ │ │ ├── filefind.png │ │ │ │ ├── filefindnext.png │ │ │ │ ├── filefindprev.png │ │ │ │ ├── filenew.png │ │ │ │ ├── fileopen.png │ │ │ │ ├── fileprint.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filesaveall.png │ │ │ │ ├── filesaveas.png │ │ │ │ ├── findf.png │ │ │ │ ├── goto.png │ │ │ │ ├── history_clear.png │ │ │ │ ├── idea.png │ │ │ │ ├── info.png │ │ │ │ ├── plug.png │ │ │ │ ├── redo.png │ │ │ │ ├── searchreplace.png │ │ │ │ ├── searchreplacef.png │ │ │ │ └── undo.png │ │ │ ├── 64x64 │ │ │ │ ├── bookmark_add.png │ │ │ │ ├── dbginfo.png │ │ │ │ ├── dbgnext.png │ │ │ │ ├── dbgnexti.png │ │ │ │ ├── dbgpause.png │ │ │ │ ├── dbgrun.png │ │ │ │ ├── dbgrunto.png │ │ │ │ ├── dbgstep.png │ │ │ │ ├── dbgstepi.png │ │ │ │ ├── dbgstepout.png │ │ │ │ ├── dbgstop.png │ │ │ │ ├── dbgwindow.png │ │ │ │ ├── editcopy.png │ │ │ │ ├── editcut.png │ │ │ │ ├── editpaste.png │ │ │ │ ├── exit.png │ │ │ │ ├── fileclose.png │ │ │ │ ├── filefind.png │ │ │ │ ├── filefindnext.png │ │ │ │ ├── filefindprev.png │ │ │ │ ├── filenew.png │ │ │ │ ├── fileopen.png │ │ │ │ ├── fileprint.png │ │ │ │ ├── filesave.png │ │ │ │ ├── filesaveall.png │ │ │ │ ├── filesaveas.png │ │ │ │ ├── findf.png │ │ │ │ ├── goto.png │ │ │ │ ├── history_clear.png │ │ │ │ ├── idea.png │ │ │ │ ├── info.png │ │ │ │ ├── plug.png │ │ │ │ ├── redo.png │ │ │ │ ├── searchreplace.png │ │ │ │ ├── searchreplacef.png │ │ │ │ └── undo.png │ │ │ ├── Makefile.am │ │ │ ├── closebutton.png │ │ │ ├── codeblocks.png │ │ │ ├── common_22p.xcf │ │ │ ├── compile.png │ │ │ ├── compilerun.png │ │ │ ├── folder.png │ │ │ ├── folder_new.png │ │ │ ├── infopane │ │ │ │ ├── 16x16 │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── flag.png │ │ │ │ │ └── misc.png │ │ │ │ ├── 20x20 │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── flag.png │ │ │ │ │ └── misc.png │ │ │ │ ├── 24x24 │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── flag.png │ │ │ │ │ └── misc.png │ │ │ │ ├── 28x28 │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── flag.png │ │ │ │ │ └── misc.png │ │ │ │ ├── 32x32 │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── flag.png │ │ │ │ │ └── misc.png │ │ │ │ ├── 40x40 │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── flag.png │ │ │ │ │ └── misc.png │ │ │ │ ├── 48x48 │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── flag.png │ │ │ │ │ └── misc.png │ │ │ │ ├── 56x56 │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── flag.png │ │ │ │ │ └── misc.png │ │ │ │ └── 64x64 │ │ │ │ │ ├── edit.png │ │ │ │ │ ├── flag.png │ │ │ │ │ └── misc.png │ │ │ ├── rebuild.png │ │ │ ├── settings │ │ │ │ ├── Makefile.am │ │ │ │ ├── abbrev-off.png │ │ │ │ ├── abbrev.png │ │ │ │ ├── astyle-plugin-off.png │ │ │ │ ├── astyle-plugin.png │ │ │ │ ├── autosave-off.png │ │ │ │ ├── autosave.png │ │ │ │ ├── batch-off.png │ │ │ │ ├── batch.png │ │ │ │ ├── browsetracker-off.png │ │ │ │ ├── browsetracker.png │ │ │ │ ├── codecompletion-off.png │ │ │ │ ├── codecompletion.png │ │ │ │ ├── codestats-off.png │ │ │ │ ├── codestats.png │ │ │ │ ├── colours-off.png │ │ │ │ ├── colours.png │ │ │ │ ├── compiler-off.png │ │ │ │ ├── compiler.png │ │ │ │ ├── debugger-off.png │ │ │ │ ├── debugger.png │ │ │ │ ├── default-code-off.png │ │ │ │ ├── default-code.png │ │ │ │ ├── dialogs-off.png │ │ │ │ ├── dialogs.png │ │ │ │ ├── dragscroll-off.png │ │ │ │ ├── dragscroll.png │ │ │ │ ├── editor-off.png │ │ │ │ ├── editor.png │ │ │ │ ├── envvars-off.png │ │ │ │ ├── envvars.png │ │ │ │ ├── extensions-off.png │ │ │ │ ├── extensions.png │ │ │ │ ├── folding-off.png │ │ │ │ ├── folding.png │ │ │ │ ├── general-prefs-off.png │ │ │ │ ├── general-prefs.png │ │ │ │ ├── generic-plugin-off.png │ │ │ │ ├── generic-plugin.png │ │ │ │ ├── gutter-margin-off.png │ │ │ │ ├── gutter-margin.png │ │ │ │ ├── help-plugin-off.png │ │ │ │ ├── help-plugin.png │ │ │ │ ├── mousesap-off.png │ │ │ │ ├── mousesap.png │ │ │ │ ├── net-off.png │ │ │ │ ├── net.png │ │ │ │ ├── notebook-appearance-off.png │ │ │ │ ├── notebook-appearance.png │ │ │ │ ├── onekeytobindthem-off.png │ │ │ │ ├── onekeytobindthem.png │ │ │ │ ├── profiler-off.png │ │ │ │ ├── profiler.png │ │ │ │ ├── syntax-highlight-off.png │ │ │ │ ├── syntax-highlight.png │ │ │ │ ├── todo-off.png │ │ │ │ ├── todo.png │ │ │ │ ├── view-off.png │ │ │ │ ├── view.png │ │ │ │ ├── wxsmith-off.png │ │ │ │ └── wxsmith.png │ │ │ ├── source.png │ │ │ ├── splash.png │ │ │ ├── splash_0802.png │ │ │ ├── splash_1005.png │ │ │ ├── splash_1211.png │ │ │ ├── splash_1312.png │ │ │ ├── stop.png │ │ │ └── tree │ │ │ │ ├── 16x16 │ │ │ │ ├── file-missing.png │ │ │ │ ├── file-modified.png │ │ │ │ ├── file-readonly.png │ │ │ │ ├── file.png │ │ │ │ ├── folder_open.png │ │ │ │ ├── project-readonly.png │ │ │ │ ├── project.png │ │ │ │ ├── rc-file-added.png │ │ │ │ ├── rc-file-conflict.png │ │ │ │ ├── rc-file-external.png │ │ │ │ ├── rc-file-gotlock.png │ │ │ │ ├── rc-file-lockstolen.png │ │ │ │ ├── rc-file-mismatch.png │ │ │ │ ├── rc-file-missing.png │ │ │ │ ├── rc-file-modified.png │ │ │ │ ├── rc-file-noncontrolled.png │ │ │ │ ├── rc-file-outofdate.png │ │ │ │ ├── rc-file-requireslock.png │ │ │ │ ├── rc-file-uptodate.png │ │ │ │ ├── vfolder_open.png │ │ │ │ ├── workspace-readonly.png │ │ │ │ └── workspace.png │ │ │ │ ├── 20x20 │ │ │ │ ├── file-missing.png │ │ │ │ ├── file-modified.png │ │ │ │ ├── file-readonly.png │ │ │ │ ├── file.png │ │ │ │ ├── folder_open.png │ │ │ │ ├── project-readonly.png │ │ │ │ ├── project.png │ │ │ │ ├── rc-file-added.png │ │ │ │ ├── rc-file-conflict.png │ │ │ │ ├── rc-file-external.png │ │ │ │ ├── rc-file-gotlock.png │ │ │ │ ├── rc-file-lockstolen.png │ │ │ │ ├── rc-file-mismatch.png │ │ │ │ ├── rc-file-missing.png │ │ │ │ ├── rc-file-modified.png │ │ │ │ ├── rc-file-noncontrolled.png │ │ │ │ ├── rc-file-outofdate.png │ │ │ │ ├── rc-file-requireslock.png │ │ │ │ ├── rc-file-uptodate.png │ │ │ │ ├── vfolder_open.png │ │ │ │ ├── workspace-readonly.png │ │ │ │ └── workspace.png │ │ │ │ ├── 24x24 │ │ │ │ ├── file-missing.png │ │ │ │ ├── file-modified.png │ │ │ │ ├── file-readonly.png │ │ │ │ ├── file.png │ │ │ │ ├── folder_open.png │ │ │ │ ├── project-readonly.png │ │ │ │ ├── project.png │ │ │ │ ├── rc-file-added.png │ │ │ │ ├── rc-file-conflict.png │ │ │ │ ├── rc-file-external.png │ │ │ │ ├── rc-file-gotlock.png │ │ │ │ ├── rc-file-lockstolen.png │ │ │ │ ├── rc-file-mismatch.png │ │ │ │ ├── rc-file-missing.png │ │ │ │ ├── rc-file-modified.png │ │ │ │ ├── rc-file-noncontrolled.png │ │ │ │ ├── rc-file-outofdate.png │ │ │ │ ├── rc-file-requireslock.png │ │ │ │ ├── rc-file-uptodate.png │ │ │ │ ├── vfolder_open.png │ │ │ │ ├── workspace-readonly.png │ │ │ │ └── workspace.png │ │ │ │ ├── 28x28 │ │ │ │ ├── file-missing.png │ │ │ │ ├── file-modified.png │ │ │ │ ├── file-readonly.png │ │ │ │ ├── file.png │ │ │ │ ├── folder_open.png │ │ │ │ ├── project-readonly.png │ │ │ │ ├── project.png │ │ │ │ ├── rc-file-added.png │ │ │ │ ├── rc-file-conflict.png │ │ │ │ ├── rc-file-external.png │ │ │ │ ├── rc-file-gotlock.png │ │ │ │ ├── rc-file-lockstolen.png │ │ │ │ ├── rc-file-mismatch.png │ │ │ │ ├── rc-file-missing.png │ │ │ │ ├── rc-file-modified.png │ │ │ │ ├── rc-file-noncontrolled.png │ │ │ │ ├── rc-file-outofdate.png │ │ │ │ ├── rc-file-requireslock.png │ │ │ │ ├── rc-file-uptodate.png │ │ │ │ ├── vfolder_open.png │ │ │ │ ├── workspace-readonly.png │ │ │ │ └── workspace.png │ │ │ │ ├── 32x32 │ │ │ │ ├── file-missing.png │ │ │ │ ├── file-modified.png │ │ │ │ ├── file-readonly.png │ │ │ │ ├── file.png │ │ │ │ ├── folder_open.png │ │ │ │ ├── project-readonly.png │ │ │ │ ├── project.png │ │ │ │ ├── rc-file-added.png │ │ │ │ ├── rc-file-conflict.png │ │ │ │ ├── rc-file-external.png │ │ │ │ ├── rc-file-gotlock.png │ │ │ │ ├── rc-file-lockstolen.png │ │ │ │ ├── rc-file-mismatch.png │ │ │ │ ├── rc-file-missing.png │ │ │ │ ├── rc-file-modified.png │ │ │ │ ├── rc-file-noncontrolled.png │ │ │ │ ├── rc-file-outofdate.png │ │ │ │ ├── rc-file-requireslock.png │ │ │ │ ├── rc-file-uptodate.png │ │ │ │ ├── vfolder_open.png │ │ │ │ ├── workspace-readonly.png │ │ │ │ └── workspace.png │ │ │ │ ├── 40x40 │ │ │ │ ├── file-missing.png │ │ │ │ ├── file-modified.png │ │ │ │ ├── file-readonly.png │ │ │ │ ├── file.png │ │ │ │ ├── folder_open.png │ │ │ │ ├── project-readonly.png │ │ │ │ ├── project.png │ │ │ │ ├── rc-file-added.png │ │ │ │ ├── rc-file-conflict.png │ │ │ │ ├── rc-file-external.png │ │ │ │ ├── rc-file-gotlock.png │ │ │ │ ├── rc-file-lockstolen.png │ │ │ │ ├── rc-file-mismatch.png │ │ │ │ ├── rc-file-missing.png │ │ │ │ ├── rc-file-modified.png │ │ │ │ ├── rc-file-noncontrolled.png │ │ │ │ ├── rc-file-outofdate.png │ │ │ │ ├── rc-file-requireslock.png │ │ │ │ ├── rc-file-uptodate.png │ │ │ │ ├── vfolder_open.png │ │ │ │ ├── workspace-readonly.png │ │ │ │ └── workspace.png │ │ │ │ ├── 48x48 │ │ │ │ ├── file-missing.png │ │ │ │ ├── file-modified.png │ │ │ │ ├── file-readonly.png │ │ │ │ ├── file.png │ │ │ │ ├── folder_open.png │ │ │ │ ├── project-readonly.png │ │ │ │ ├── project.png │ │ │ │ ├── rc-file-added.png │ │ │ │ ├── rc-file-conflict.png │ │ │ │ ├── rc-file-external.png │ │ │ │ ├── rc-file-gotlock.png │ │ │ │ ├── rc-file-lockstolen.png │ │ │ │ ├── rc-file-mismatch.png │ │ │ │ ├── rc-file-missing.png │ │ │ │ ├── rc-file-modified.png │ │ │ │ ├── rc-file-noncontrolled.png │ │ │ │ ├── rc-file-outofdate.png │ │ │ │ ├── rc-file-requireslock.png │ │ │ │ ├── rc-file-uptodate.png │ │ │ │ ├── vfolder_open.png │ │ │ │ ├── workspace-readonly.png │ │ │ │ └── workspace.png │ │ │ │ ├── 56x56 │ │ │ │ ├── file-missing.png │ │ │ │ ├── file-modified.png │ │ │ │ ├── file-readonly.png │ │ │ │ ├── file.png │ │ │ │ ├── folder_open.png │ │ │ │ ├── project-readonly.png │ │ │ │ ├── project.png │ │ │ │ ├── rc-file-added.png │ │ │ │ ├── rc-file-conflict.png │ │ │ │ ├── rc-file-external.png │ │ │ │ ├── rc-file-gotlock.png │ │ │ │ ├── rc-file-lockstolen.png │ │ │ │ ├── rc-file-mismatch.png │ │ │ │ ├── rc-file-missing.png │ │ │ │ ├── rc-file-modified.png │ │ │ │ ├── rc-file-noncontrolled.png │ │ │ │ ├── rc-file-outofdate.png │ │ │ │ ├── rc-file-requireslock.png │ │ │ │ ├── rc-file-uptodate.png │ │ │ │ ├── vfolder_open.png │ │ │ │ ├── workspace-readonly.png │ │ │ │ └── workspace.png │ │ │ │ └── 64x64 │ │ │ │ ├── file-missing.png │ │ │ │ ├── file-modified.png │ │ │ │ ├── file-readonly.png │ │ │ │ ├── file.png │ │ │ │ ├── folder_open.png │ │ │ │ ├── project-readonly.png │ │ │ │ ├── project.png │ │ │ │ ├── rc-file-added.png │ │ │ │ ├── rc-file-conflict.png │ │ │ │ ├── rc-file-external.png │ │ │ │ ├── rc-file-gotlock.png │ │ │ │ ├── rc-file-lockstolen.png │ │ │ │ ├── rc-file-mismatch.png │ │ │ │ ├── rc-file-missing.png │ │ │ │ ├── rc-file-modified.png │ │ │ │ ├── rc-file-noncontrolled.png │ │ │ │ ├── rc-file-outofdate.png │ │ │ │ ├── rc-file-requireslock.png │ │ │ │ ├── rc-file-uptodate.png │ │ │ │ ├── vfolder_open.png │ │ │ │ ├── workspace-readonly.png │ │ │ │ └── workspace.png │ │ ├── main_menu.xrc │ │ ├── main_toolbar.xrc │ │ ├── manage_assocs.xrc │ │ ├── memdump.xrc │ │ ├── print_dialog.xrc │ │ ├── project_deps.xrc │ │ ├── project_options.xrc │ │ ├── resources.rc │ │ ├── scripting_settings.xrc │ │ ├── start_here │ │ │ ├── blank.png │ │ │ ├── cb.png │ │ │ ├── new.png │ │ │ ├── open.png │ │ │ ├── reopen.png │ │ │ ├── start_here.html │ │ │ ├── tip.png │ │ │ ├── title_0802.png │ │ │ ├── title_1005.png │ │ │ ├── title_1211.png │ │ │ ├── title_1312.png │ │ │ ├── title_1312.svg │ │ │ ├── title_1601.png │ │ │ ├── title_1712.png │ │ │ ├── trash.png │ │ │ ├── trash_16x16.png │ │ │ └── www.png │ │ ├── virtualbuildtargetsdlg.xrc │ │ └── x86.manifest │ ├── scriptconsole.cpp │ ├── scriptconsole.h │ ├── scriptingsettingsdlg.cpp │ ├── scriptingsettingsdlg.h │ ├── splashscreen.cpp │ ├── splashscreen.h │ ├── startherepage.cpp │ ├── startherepage.h │ ├── switcherdlg.cpp │ ├── switcherdlg.h │ ├── threadsdlg.cpp │ ├── threadsdlg.h │ ├── virtualbuildtargetsdlg.cpp │ ├── virtualbuildtargetsdlg.h │ ├── watchesdlg.cpp │ └── watchesdlg.h ├── templates │ ├── Makefile.am │ ├── common │ │ ├── Makefile.am │ │ ├── console-main-c.cpp │ │ ├── console-main-cpp.cpp │ │ ├── console.cbp │ │ ├── console.png │ │ ├── console.template │ │ ├── dll.png │ │ ├── glfw-main.cpp │ │ ├── glfw.png │ │ ├── glfw.template │ │ ├── glut-main.cpp │ │ ├── glut.png │ │ ├── irr_main.cpp │ │ ├── irrlicht.png │ │ ├── ogre-main.cpp │ │ ├── ogrelogo.png │ │ ├── qt-main.cpp │ │ ├── qt.cbp │ │ ├── qt.template │ │ ├── qtlogo32.png │ │ ├── sdccapp-main.c │ │ ├── sdccapp.cbp │ │ ├── sdccapp.png │ │ ├── sdccapp.template │ │ ├── sdl-cb.bmp │ │ ├── sdl-main.cpp │ │ ├── sdl.png │ │ ├── sdl2-main.cpp │ │ ├── sdl2.png │ │ ├── sdl2app.cbp │ │ ├── sdl2app.template │ │ ├── sdlapp.template │ │ ├── sfml-cb.bmp │ │ ├── sfml-main.cpp │ │ ├── sfml.cbp │ │ ├── sfml.png │ │ ├── sfml.template │ │ ├── sharedlib-sample.c │ │ ├── sharedlib.cbp │ │ ├── sharedlib.template │ │ ├── staticlib-sample.c │ │ ├── staticlib.cbp │ │ ├── staticlib.template │ │ ├── wx-app-ash.cpp │ │ ├── wx-app-ash.h │ │ ├── wx-main-ash.cpp │ │ ├── wx-main-ash.h │ │ ├── wx-main-s.cpp │ │ ├── wx-main-sh.cpp │ │ ├── wx-main-sh.h │ │ ├── wx_pch.h │ │ └── wxwidgets.png │ ├── unix │ │ ├── Makefile.am │ │ ├── glfw-static.cbp │ │ ├── irr_linux.cbp │ │ ├── irrlicht.template │ │ ├── ogre.template │ │ ├── ogre_linux.cbp │ │ ├── sdlapp.cbp │ │ ├── wxwidgets.cbp │ │ └── wxwidgets.template │ └── win32 │ │ ├── Makefile.am │ │ ├── SmartWin-main.cpp │ │ ├── SmartWin.cbp │ │ ├── SmartWin.png │ │ ├── SmartWin.template │ │ ├── directx.png │ │ ├── directx.template │ │ ├── directx_gcc.cbp │ │ ├── directx_main.cpp │ │ ├── directx_vctk.cbp │ │ ├── dll-main.cpp │ │ ├── dll.cbp │ │ ├── dll.template │ │ ├── fltk-main.cpp │ │ ├── fltk.cbp │ │ ├── fltk.png │ │ ├── fltk.template │ │ ├── fluid-main.cpp │ │ ├── fluid-main_ui.cxx │ │ ├── fluid-main_ui.h │ │ ├── fluid.cbp │ │ ├── fluid.template │ │ ├── glfw-static.cbp │ │ ├── glut.cbp │ │ ├── glut.template │ │ ├── gui.png │ │ ├── irr_gcc.cbp │ │ ├── irr_vctk.cbp │ │ ├── irrlicht.template │ │ ├── ogre.template │ │ ├── ogre_gcc.cbp │ │ ├── ogre_vctk.cbp │ │ ├── opengl-main.cpp │ │ ├── opengl.cbp │ │ ├── opengl.png │ │ ├── opengl.template │ │ ├── sdlapp.cbp │ │ ├── win32-main.cpp │ │ ├── win32.cbp │ │ ├── win32gui.template │ │ ├── wxwidgets.cbp │ │ ├── wxwidgets.template │ │ ├── wxwidgets_static.cbp │ │ ├── wxwidgets_static_u.cbp │ │ └── wxwidgets_u.cbp ├── tips.txt ├── tools │ ├── Addr2LineUI │ │ ├── Addr2LineUIApp.cpp │ │ ├── Addr2LineUIApp.h │ │ ├── Addr2LineUIMain.cpp │ │ ├── Addr2LineUIMain.h │ │ ├── Addr2LineUI_wx31.cbp │ │ ├── Addr2LineUI_wx31_64.cbp │ │ ├── resource.rc │ │ └── wxsmith │ │ │ └── Addr2LineUIDialog.wxs │ ├── CBLauncher │ │ ├── CbLauncher_wx31.cbp │ │ ├── CbLauncher_wx31_64.cbp │ │ ├── Makefile.am │ │ ├── doc │ │ │ ├── CBicon.png │ │ │ ├── README.txt │ │ │ ├── doxyfile │ │ │ └── gpl-3.0.txt │ │ ├── icon.rc │ │ ├── icons │ │ │ ├── README_4_icon.txt │ │ │ ├── hires.ico │ │ │ ├── launcher.ico │ │ │ └── lores.ico │ │ ├── launcher.cpp │ │ └── mainpage.h │ ├── ConsoleRunner │ │ ├── Makefile.am │ │ ├── cb_console_runner.1 │ │ └── main.cpp │ ├── Jing │ │ ├── jing-20150407.bat │ │ └── jing-20150407.jar │ ├── Makefile.am │ ├── cb_share_config │ │ ├── Makefile.am │ │ ├── app.cpp │ │ ├── app.h │ │ ├── cb_share_config.1 │ │ ├── cb_share_config_wx30-unix.cbp │ │ ├── cb_share_config_wx31.cbp │ │ ├── cb_share_config_wx31_64.cbp │ │ ├── mainframe.cpp │ │ ├── mainframe.h │ │ └── wxsmith │ │ │ └── MainFrame.wxs │ ├── cbp2make │ │ ├── COPYING │ │ ├── Doxyfile │ │ ├── cbp2make.cbp.mak.unix │ │ ├── cbp2make.cbp.mak.windows │ │ ├── cbp2make.cfg │ │ ├── cbp2make_wx30-unix.cbp │ │ ├── cbp2make_wx31.cbp │ │ ├── cbp2make_wx31_64.cbp │ │ ├── changelog.txt │ │ ├── lib │ │ │ ├── doc │ │ │ │ ├── macros.dox │ │ │ │ └── stringhash.dox │ │ │ ├── macros.h │ │ │ ├── stlconfig.cpp │ │ │ ├── stlconfig.h │ │ │ ├── stlconvert.cpp │ │ │ ├── stlconvert.h │ │ │ ├── stlfutils.cpp │ │ │ ├── stlfutils.h │ │ │ ├── stlgpm.cpp │ │ │ ├── stlgpm.h │ │ │ ├── stlstrings.cpp │ │ │ ├── stlstrings.h │ │ │ ├── stlvariables.cpp │ │ │ ├── stlvariables.h │ │ │ ├── stringhash.cpp │ │ │ ├── stringhash.h │ │ │ └── tinyxml │ │ │ │ ├── ._Makefile │ │ │ │ ├── Makefile │ │ │ │ ├── changes.txt │ │ │ │ ├── echo.dsp │ │ │ │ ├── readme.txt │ │ │ │ ├── tinyXmlTest.dsp │ │ │ │ ├── tinyXmlTest.vcproj │ │ │ │ ├── tinyXmlTestSTL.dsp │ │ │ │ ├── tinyXmlTestSTL.vcproj │ │ │ │ ├── tinystr.cpp │ │ │ │ ├── tinystr.h │ │ │ │ ├── tinyxml.cpp │ │ │ │ ├── tinyxml.dsw │ │ │ │ ├── tinyxml.h │ │ │ │ ├── tinyxml.sln │ │ │ │ ├── tinyxmlSTL.dsp │ │ │ │ ├── tinyxmlSTL.vcproj │ │ │ │ ├── tinyxml_lib.dsp │ │ │ │ ├── tinyxml_lib.vcproj │ │ │ │ ├── tinyxmlerror.cpp │ │ │ │ ├── tinyxmlparser.cpp │ │ │ │ ├── utf8test.gif │ │ │ │ ├── utf8test.xml │ │ │ │ ├── utf8testverify.xml │ │ │ │ └── xmltest.cpp │ │ ├── res │ │ │ ├── cbp2make.png │ │ │ └── cbp2make.svg │ │ ├── src │ │ │ ├── buildtools.cpp │ │ │ ├── buildtools.h │ │ │ ├── cbbuildcfg.cpp │ │ │ ├── cbbuildcfg.h │ │ │ ├── cbbuildmgr.cpp │ │ │ ├── cbbuildmgr.h │ │ │ ├── cbglobalvar.cpp │ │ │ ├── cbglobalvar.h │ │ │ ├── cbhelper.cpp │ │ │ ├── cbhelper.h │ │ │ ├── cbp2make.cpp │ │ │ ├── cbproject.cpp │ │ │ ├── cbproject.h │ │ │ ├── cbptarget.cpp │ │ │ ├── cbptarget.h │ │ │ ├── cbpunit.cpp │ │ │ ├── cbpunit.h │ │ │ ├── cbworkspace.cpp │ │ │ ├── cbworkspace.h │ │ │ ├── depsearch.cpp │ │ │ ├── depsearch.h │ │ │ ├── doc │ │ │ │ ├── cbbuildcfg.dox │ │ │ │ ├── cbbuildmgr.dox │ │ │ │ ├── cbglobalvar.dox │ │ │ │ ├── cbhelper.dox │ │ │ │ ├── cbproject.dox │ │ │ │ ├── cbpunit.dox │ │ │ │ ├── cbworkspace.dox │ │ │ │ ├── depsearch.dox │ │ │ │ ├── mainpage.dox │ │ │ │ ├── makefile.dox │ │ │ │ ├── platforms.dox │ │ │ │ ├── toolchains.dox │ │ │ │ └── usage.txt │ │ │ ├── makefile.cpp │ │ │ ├── makefile.h │ │ │ ├── platforms.cpp │ │ │ ├── platforms.h │ │ │ ├── revision.h │ │ │ ├── revision.h.tpl │ │ │ ├── toolchains.cpp │ │ │ └── toolchains.h │ │ ├── usage.txt │ │ └── wx-config.sh │ └── test │ │ └── macrosmanager │ │ └── macrosmanager.cbp ├── update ├── update.bat ├── update30 ├── update31.bat ├── update31_64.bat └── wxsmith │ ├── BuildTargetPanel.wxs │ ├── CCDebugInfo.wxs │ ├── CompilerPanel.wxs │ ├── EmbeddedHtmlPanel.wxs │ ├── FilePathPanel.wxs │ ├── GenericSelectPath.wxs │ ├── GenericSingleChoiceList.wxs │ ├── InfoPanel.wxs │ ├── Makefile.am │ ├── ProjectPathPanel.wxs │ ├── ScriptConsole.wxs │ ├── VirtualBuildTargetsDlg.wxs │ ├── databreakpointdlg.wxs │ ├── debuggersettingscommonpanel.wxs │ ├── debuggersettingsdlg.wxs │ ├── debuggersettingspanel.wxs │ └── goto_file.wxs ├── updateChangeLog.sh └── update_revision.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/BUGS -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/BUILD -------------------------------------------------------------------------------- /COMPILERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/COMPILERS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/ChangeLog.xsl -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/README -------------------------------------------------------------------------------- /README.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/README.debian -------------------------------------------------------------------------------- /README.release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/README.release -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/TODO -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/bootstrap -------------------------------------------------------------------------------- /bundle.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/bundle.sh.in -------------------------------------------------------------------------------- /codeblocks-contrib.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/codeblocks-contrib.metainfo.xml -------------------------------------------------------------------------------- /codeblocks.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/codeblocks.appdata.xml -------------------------------------------------------------------------------- /codeblocks.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/codeblocks.pc.in -------------------------------------------------------------------------------- /codeblocks.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/codeblocks.plist.in -------------------------------------------------------------------------------- /codeblocks.spec.fedora.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/codeblocks.spec.fedora.in -------------------------------------------------------------------------------- /codeblocks.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/codeblocks.spec.in -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/codeblocks-common.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/codeblocks-common.install -------------------------------------------------------------------------------- /debian/codeblocks-contrib.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/codeblocks-contrib.install -------------------------------------------------------------------------------- /debian/codeblocks-contrib.postinst: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -e 3 | 4 | #DEBHELPER# 5 | 6 | exit 0 7 | -------------------------------------------------------------------------------- /debian/codeblocks-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/codeblocks-dev.install -------------------------------------------------------------------------------- /debian/codeblocks-libwxcontrib0.install: -------------------------------------------------------------------------------- 1 | usr/lib/codeblocks/wxContribItems/*.so.* 2 | 3 | -------------------------------------------------------------------------------- /debian/codeblocks-wxcontrib-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/codeblocks-wxcontrib-dev.install -------------------------------------------------------------------------------- /debian/codeblocks-wxcontrib-headers.install: -------------------------------------------------------------------------------- 1 | usr/include/codeblocks/wxContribItems/ 2 | -------------------------------------------------------------------------------- /debian/codeblocks.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/codeblocks.install -------------------------------------------------------------------------------- /debian/codeblocks.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/codeblocks.menu -------------------------------------------------------------------------------- /debian/codeblocks.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/codeblocks.package -------------------------------------------------------------------------------- /debian/codeblocks.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/codeblocks.postinst -------------------------------------------------------------------------------- /debian/codeblocks.sharedmime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/codeblocks.sharedmime -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/control.in -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/docs -------------------------------------------------------------------------------- /debian/get-orig-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/get-orig-source -------------------------------------------------------------------------------- /debian/get-orig-source-from-svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/get-orig-source-from-svn -------------------------------------------------------------------------------- /debian/libcodeblocks0.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/libcodeblocks0.install -------------------------------------------------------------------------------- /debian/libwxsmithlib0.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/libwxsmithlib0.install -------------------------------------------------------------------------------- /debian/lintian/codeblocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/lintian/codeblocks -------------------------------------------------------------------------------- /debian/lintian/codeblocks-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/lintian/codeblocks-common -------------------------------------------------------------------------------- /debian/lintian/codeblocks-contrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/lintian/codeblocks-contrib -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/setup_control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/setup_control.sh -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/wxsmith-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/debian/wxsmith-dev.install -------------------------------------------------------------------------------- /debian/wxsmith-headers.install: -------------------------------------------------------------------------------- 1 | usr/include/wxsmith/ 2 | -------------------------------------------------------------------------------- /m4/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/m4/acinclude.m4 -------------------------------------------------------------------------------- /m4/ax_boost_base.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/m4/ax_boost_base.m4 -------------------------------------------------------------------------------- /m4/ax_boost_system.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/m4/ax_boost_system.m4 -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/m4/ax_cxx_compile_stdcxx.m4 -------------------------------------------------------------------------------- /src/CodeBlocks_wx30-unix.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/CodeBlocks_wx30-unix.cbp -------------------------------------------------------------------------------- /src/CodeBlocks_wx30-unix.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/CodeBlocks_wx30-unix.workspace -------------------------------------------------------------------------------- /src/CodeBlocks_wx31.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/CodeBlocks_wx31.cbp -------------------------------------------------------------------------------- /src/CodeBlocks_wx31.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/CodeBlocks_wx31.workspace -------------------------------------------------------------------------------- /src/CodeBlocks_wx31_64.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/CodeBlocks_wx31_64.cbp -------------------------------------------------------------------------------- /src/CodeBlocks_wx31_64.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/CodeBlocks_wx31_64.workspace -------------------------------------------------------------------------------- /src/ContribPlugins_wx30-unix.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/ContribPlugins_wx30-unix.workspace -------------------------------------------------------------------------------- /src/ContribPlugins_wx31.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/ContribPlugins_wx31.workspace -------------------------------------------------------------------------------- /src/ContribPlugins_wx31_64.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/ContribPlugins_wx31_64.workspace -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/base/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/base/Makefile.am -------------------------------------------------------------------------------- /src/base/tinyxml/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/base/tinyxml/Makefile.am -------------------------------------------------------------------------------- /src/base/tinyxml/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/base/tinyxml/tinystr.cpp -------------------------------------------------------------------------------- /src/base/tinyxml/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/base/tinyxml/tinyxml.cpp -------------------------------------------------------------------------------- /src/base/tinyxml/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/base/tinyxml/tinyxmlerror.cpp -------------------------------------------------------------------------------- /src/base/tinyxml/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/base/tinyxml/tinyxmlparser.cpp -------------------------------------------------------------------------------- /src/batch_build_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/batch_build_all -------------------------------------------------------------------------------- /src/batch_build_all_31.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/batch_build_all_31.bat -------------------------------------------------------------------------------- /src/batch_build_all_31_64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/batch_build_all_31_64.bat -------------------------------------------------------------------------------- /src/batch_build_core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/batch_build_core -------------------------------------------------------------------------------- /src/batch_build_core_31.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/batch_build_core_31.bat -------------------------------------------------------------------------------- /src/batch_build_core_31_64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/batch_build_core_31_64.bat -------------------------------------------------------------------------------- /src/batch_build_plugins.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/batch_build_plugins.bat -------------------------------------------------------------------------------- /src/build_tools/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/build_tools/Info.plist -------------------------------------------------------------------------------- /src/build_tools/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = autorevision 2 | -------------------------------------------------------------------------------- /src/build_tools/scrooge/scrooge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/build_tools/scrooge/scrooge.cpp -------------------------------------------------------------------------------- /src/exchndl/win32/bin/addr2line.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win32/bin/addr2line.exe -------------------------------------------------------------------------------- /src/exchndl/win32/bin/dbgcore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win32/bin/dbgcore.dll -------------------------------------------------------------------------------- /src/exchndl/win32/bin/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win32/bin/dbghelp.dll -------------------------------------------------------------------------------- /src/exchndl/win32/bin/exchndl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win32/bin/exchndl.dll -------------------------------------------------------------------------------- /src/exchndl/win32/bin/mgwhelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win32/bin/mgwhelp.dll -------------------------------------------------------------------------------- /src/exchndl/win32/bin/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win32/bin/symsrv.dll -------------------------------------------------------------------------------- /src/exchndl/win32/bin/symsrv.yes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/exchndl/win32/include/exchndl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win32/include/exchndl.h -------------------------------------------------------------------------------- /src/exchndl/win32/lib/libexchndl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win32/lib/libexchndl.a -------------------------------------------------------------------------------- /src/exchndl/win32/lib/libmgwhelp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win32/lib/libmgwhelp.a -------------------------------------------------------------------------------- /src/exchndl/win64/bin/addr2line.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win64/bin/addr2line.exe -------------------------------------------------------------------------------- /src/exchndl/win64/bin/dbgcore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win64/bin/dbgcore.dll -------------------------------------------------------------------------------- /src/exchndl/win64/bin/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win64/bin/dbghelp.dll -------------------------------------------------------------------------------- /src/exchndl/win64/bin/exchndl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win64/bin/exchndl.dll -------------------------------------------------------------------------------- /src/exchndl/win64/bin/mgwhelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win64/bin/mgwhelp.dll -------------------------------------------------------------------------------- /src/exchndl/win64/bin/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win64/bin/symsrv.dll -------------------------------------------------------------------------------- /src/exchndl/win64/bin/symsrv.yes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/exchndl/win64/include/exchndl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win64/include/exchndl.h -------------------------------------------------------------------------------- /src/exchndl/win64/lib/libexchndl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win64/lib/libexchndl.a -------------------------------------------------------------------------------- /src/exchndl/win64/lib/libmgwhelp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/exchndl/win64/lib/libmgwhelp.a -------------------------------------------------------------------------------- /src/i18n/byogames.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/byogames.pot -------------------------------------------------------------------------------- /src/i18n/cb_koders.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/cb_koders.pot -------------------------------------------------------------------------------- /src/i18n/codeblocks.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/codeblocks.pot -------------------------------------------------------------------------------- /src/i18n/codesnippets.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/codesnippets.pot -------------------------------------------------------------------------------- /src/i18n/codestat.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/codestat.pot -------------------------------------------------------------------------------- /src/i18n/copystrings.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/copystrings.pot -------------------------------------------------------------------------------- /src/i18n/coreplugins.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/coreplugins.pot -------------------------------------------------------------------------------- /src/i18n/devpak_plugin.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/devpak_plugin.pot -------------------------------------------------------------------------------- /src/i18n/dragscroll.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/dragscroll.pot -------------------------------------------------------------------------------- /src/i18n/extract.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/extract.bash -------------------------------------------------------------------------------- /src/i18n/extract.bat: -------------------------------------------------------------------------------- 1 | bash extract.bash 2 | -------------------------------------------------------------------------------- /src/i18n/extract_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/extract_win.bat -------------------------------------------------------------------------------- /src/i18n/help_plugin.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/help_plugin.pot -------------------------------------------------------------------------------- /src/i18n/keybinder.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/keybinder.pot -------------------------------------------------------------------------------- /src/i18n/profiler.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/profiler.pot -------------------------------------------------------------------------------- /src/i18n/source_exporter.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/source_exporter.pot -------------------------------------------------------------------------------- /src/i18n/wxsmith.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/i18n/wxsmith.pot -------------------------------------------------------------------------------- /src/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/Makefile.am -------------------------------------------------------------------------------- /src/include/annoyingdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/annoyingdialog.h -------------------------------------------------------------------------------- /src/include/autodetectcompilers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/autodetectcompilers.h -------------------------------------------------------------------------------- /src/include/autorevision.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/autorevision.h.in -------------------------------------------------------------------------------- /src/include/backgroundthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/backgroundthread.h -------------------------------------------------------------------------------- /src/include/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/base64.h -------------------------------------------------------------------------------- /src/include/blockallocated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/blockallocated.h -------------------------------------------------------------------------------- /src/include/cbart_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbart_provider.h -------------------------------------------------------------------------------- /src/include/cbauibook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbauibook.h -------------------------------------------------------------------------------- /src/include/cbcolourmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbcolourmanager.h -------------------------------------------------------------------------------- /src/include/cbdebugger_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbdebugger_interfaces.h -------------------------------------------------------------------------------- /src/include/cbeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbeditor.h -------------------------------------------------------------------------------- /src/include/cbeditorprintout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbeditorprintout.h -------------------------------------------------------------------------------- /src/include/cbexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbexception.h -------------------------------------------------------------------------------- /src/include/cbexecute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbexecute.h -------------------------------------------------------------------------------- /src/include/cbfunctor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbfunctor.h -------------------------------------------------------------------------------- /src/include/cbplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbplugin.h -------------------------------------------------------------------------------- /src/include/cbproject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbproject.h -------------------------------------------------------------------------------- /src/include/cbstatusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbstatusbar.h -------------------------------------------------------------------------------- /src/include/cbstyledtextctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbstyledtextctrl.h -------------------------------------------------------------------------------- /src/include/cbthreadedtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbthreadedtask.h -------------------------------------------------------------------------------- /src/include/cbthreadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbthreadpool.h -------------------------------------------------------------------------------- /src/include/cbtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbtool.h -------------------------------------------------------------------------------- /src/include/cbtreectrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbtreectrl.h -------------------------------------------------------------------------------- /src/include/cbworkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cbworkspace.h -------------------------------------------------------------------------------- /src/include/ccmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/ccmanager.h -------------------------------------------------------------------------------- /src/include/compileoptionsbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/compileoptionsbase.h -------------------------------------------------------------------------------- /src/include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/compiler.h -------------------------------------------------------------------------------- /src/include/compilercommandgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/compilercommandgenerator.h -------------------------------------------------------------------------------- /src/include/compilerfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/compilerfactory.h -------------------------------------------------------------------------------- /src/include/compileroptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/compileroptions.h -------------------------------------------------------------------------------- /src/include/compiletargetbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/compiletargetbase.h -------------------------------------------------------------------------------- /src/include/configmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/configmanager.h -------------------------------------------------------------------------------- /src/include/configurationpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/configurationpanel.h -------------------------------------------------------------------------------- /src/include/configuretoolsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/configuretoolsdlg.h -------------------------------------------------------------------------------- /src/include/confirmreplacedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/confirmreplacedlg.h -------------------------------------------------------------------------------- /src/include/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/crc32.h -------------------------------------------------------------------------------- /src/include/cygwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/cygwin.h -------------------------------------------------------------------------------- /src/include/debuggermanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/debuggermanager.h -------------------------------------------------------------------------------- /src/include/editarrayfiledlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/editarrayfiledlg.h -------------------------------------------------------------------------------- /src/include/editarrayorderdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/editarrayorderdlg.h -------------------------------------------------------------------------------- /src/include/editarraystringdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/editarraystringdlg.h -------------------------------------------------------------------------------- /src/include/editor_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/editor_hooks.h -------------------------------------------------------------------------------- /src/include/editor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/editor_utils.h -------------------------------------------------------------------------------- /src/include/editorbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/editorbase.h -------------------------------------------------------------------------------- /src/include/editorcolourset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/editorcolourset.h -------------------------------------------------------------------------------- /src/include/editorlexerloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/editorlexerloader.h -------------------------------------------------------------------------------- /src/include/editormanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/editormanager.h -------------------------------------------------------------------------------- /src/include/editpairdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/editpairdlg.h -------------------------------------------------------------------------------- /src/include/editpathdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/editpathdlg.h -------------------------------------------------------------------------------- /src/include/edittooldlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/edittooldlg.h -------------------------------------------------------------------------------- /src/include/encodingdetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/encodingdetector.h -------------------------------------------------------------------------------- /src/include/externaldepsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/externaldepsdlg.h -------------------------------------------------------------------------------- /src/include/filefilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/filefilters.h -------------------------------------------------------------------------------- /src/include/filegroupsandmasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/filegroupsandmasks.h -------------------------------------------------------------------------------- /src/include/filemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/filemanager.h -------------------------------------------------------------------------------- /src/include/findreplacebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/findreplacebase.h -------------------------------------------------------------------------------- /src/include/findreplacedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/findreplacedlg.h -------------------------------------------------------------------------------- /src/include/genericmultilinenotesdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/genericmultilinenotesdlg.h -------------------------------------------------------------------------------- /src/include/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/globals.h -------------------------------------------------------------------------------- /src/include/ibaseloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/ibaseloader.h -------------------------------------------------------------------------------- /src/include/ibaseworkspaceloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/ibaseworkspaceloader.h -------------------------------------------------------------------------------- /src/include/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/id.h -------------------------------------------------------------------------------- /src/include/importers_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/importers_globals.h -------------------------------------------------------------------------------- /src/include/incremental_select_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/incremental_select_helper.h -------------------------------------------------------------------------------- /src/include/infowindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/infowindow.h -------------------------------------------------------------------------------- /src/include/licenses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/licenses.h -------------------------------------------------------------------------------- /src/include/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/logger.h -------------------------------------------------------------------------------- /src/include/loggers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/loggers.h -------------------------------------------------------------------------------- /src/include/logmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/logmanager.h -------------------------------------------------------------------------------- /src/include/macrosmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/macrosmanager.h -------------------------------------------------------------------------------- /src/include/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/manager.h -------------------------------------------------------------------------------- /src/include/menuitemsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/menuitemsmanager.h -------------------------------------------------------------------------------- /src/include/misctreeitemdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/misctreeitemdata.h -------------------------------------------------------------------------------- /src/include/multiselectdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/multiselectdlg.h -------------------------------------------------------------------------------- /src/include/newfromtemplatedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/newfromtemplatedlg.h -------------------------------------------------------------------------------- /src/include/personalitymanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/personalitymanager.h -------------------------------------------------------------------------------- /src/include/pipedprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/pipedprocess.h -------------------------------------------------------------------------------- /src/include/pluginmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/pluginmanager.h -------------------------------------------------------------------------------- /src/include/pluginsconfigurationdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/pluginsconfigurationdlg.h -------------------------------------------------------------------------------- /src/include/prep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/prep.h -------------------------------------------------------------------------------- /src/include/printing_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/printing_types.h -------------------------------------------------------------------------------- /src/include/projectbuildtarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/projectbuildtarget.h -------------------------------------------------------------------------------- /src/include/projectfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/projectfile.h -------------------------------------------------------------------------------- /src/include/projectfileoptionsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/projectfileoptionsdlg.h -------------------------------------------------------------------------------- /src/include/projectlayoutloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/projectlayoutloader.h -------------------------------------------------------------------------------- /src/include/projectloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/projectloader.h -------------------------------------------------------------------------------- /src/include/projectloader_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/projectloader_hooks.h -------------------------------------------------------------------------------- /src/include/projectmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/projectmanager.h -------------------------------------------------------------------------------- /src/include/projectsfilemasksdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/projectsfilemasksdlg.h -------------------------------------------------------------------------------- /src/include/projecttemplateloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/projecttemplateloader.h -------------------------------------------------------------------------------- /src/include/safedelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/safedelete.h -------------------------------------------------------------------------------- /src/include/scripting/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/scripting/Makefile.am -------------------------------------------------------------------------------- /src/include/scripting/include/sqstdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/scripting/include/sqstdio.h -------------------------------------------------------------------------------- /src/include/scriptingmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/scriptingmanager.h -------------------------------------------------------------------------------- /src/include/scriptsecuritywarningdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/scriptsecuritywarningdlg.h -------------------------------------------------------------------------------- /src/include/scrollingdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/scrollingdialog.h -------------------------------------------------------------------------------- /src/include/sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/sdk.h -------------------------------------------------------------------------------- /src/include/sdk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/sdk_common.h -------------------------------------------------------------------------------- /src/include/sdk_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/sdk_events.h -------------------------------------------------------------------------------- /src/include/sdk_precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/sdk_precomp.h -------------------------------------------------------------------------------- /src/include/searchresultslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/searchresultslog.h -------------------------------------------------------------------------------- /src/include/selecttargetdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/selecttargetdlg.h -------------------------------------------------------------------------------- /src/include/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/settings.h -------------------------------------------------------------------------------- /src/include/templatemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/templatemanager.h -------------------------------------------------------------------------------- /src/include/tinywxuni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/tinywxuni.h -------------------------------------------------------------------------------- /src/include/tinyxml/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/tinyxml/Makefile.am -------------------------------------------------------------------------------- /src/include/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/tinyxml/tinystr.h -------------------------------------------------------------------------------- /src/include/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /src/include/toolsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/toolsmanager.h -------------------------------------------------------------------------------- /src/include/uservarmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/uservarmanager.h -------------------------------------------------------------------------------- /src/include/workspaceloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/workspaceloader.h -------------------------------------------------------------------------------- /src/include/wxstringhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/wxstringhash.h -------------------------------------------------------------------------------- /src/include/xtra_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/include/xtra_res.h -------------------------------------------------------------------------------- /src/mac_pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/mac_pack -------------------------------------------------------------------------------- /src/mime/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/mime/Makefile.am -------------------------------------------------------------------------------- /src/mime/application-x-codeblocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/mime/application-x-codeblocks.png -------------------------------------------------------------------------------- /src/mime/codeblocks.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/mime/codeblocks.desktop -------------------------------------------------------------------------------- /src/mime/codeblocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/mime/codeblocks.png -------------------------------------------------------------------------------- /src/mime/codeblocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/mime/codeblocks.xml -------------------------------------------------------------------------------- /src/plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/Makefile.am -------------------------------------------------------------------------------- /src/plugins/abbreviations/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/abbreviations/Makefile.am -------------------------------------------------------------------------------- /src/plugins/astyle/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/Makefile.am -------------------------------------------------------------------------------- /src/plugins/astyle/asstreamiterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/asstreamiterator.cpp -------------------------------------------------------------------------------- /src/plugins/astyle/asstreamiterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/asstreamiterator.h -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/ASLocalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/ASLocalizer.h -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/Makefile -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/astyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/astyle.h -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/astyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/astyle.html -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/astyle_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/astyle_main.h -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/favicon.ico -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/index.html -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/install.html -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/links.html -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/news.html -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/notes.html -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/scripts.html -------------------------------------------------------------------------------- /src/plugins/astyle/astyle/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyle/styles.css -------------------------------------------------------------------------------- /src/plugins/astyle/astyleconfigdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyleconfigdlg.cpp -------------------------------------------------------------------------------- /src/plugins/astyle/astyleconfigdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyleconfigdlg.h -------------------------------------------------------------------------------- /src/plugins/astyle/astyleplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyleplugin.cpp -------------------------------------------------------------------------------- /src/plugins/astyle/astyleplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/astyleplugin.h -------------------------------------------------------------------------------- /src/plugins/astyle/formattersettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/astyle/formattersettings.h -------------------------------------------------------------------------------- /src/plugins/autosave/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/autosave/Makefile.am -------------------------------------------------------------------------------- /src/plugins/autosave/autosave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/autosave/autosave.cpp -------------------------------------------------------------------------------- /src/plugins/autosave/autosave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/autosave/autosave.h -------------------------------------------------------------------------------- /src/plugins/autosave/autosave.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/autosave/autosave.xrc -------------------------------------------------------------------------------- /src/plugins/autosave/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/autosave/manifest.xml -------------------------------------------------------------------------------- /src/plugins/classwizard/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/classwizard/Makefile.am -------------------------------------------------------------------------------- /src/plugins/classwizard/classwizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/classwizard/classwizard.cpp -------------------------------------------------------------------------------- /src/plugins/classwizard/classwizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/classwizard/classwizard.h -------------------------------------------------------------------------------- /src/plugins/codecompletion/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/codecompletion/Makefile.am -------------------------------------------------------------------------------- /src/plugins/codecompletion/cctest/resource.rc: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/plugins/codecompletion/cctreectrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/codecompletion/cctreectrl.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/Makefile.am -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerG95.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerG95.cpp -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerG95.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerG95.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerGDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerGDC.cpp -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerGDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerGDC.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerIAR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerIAR.cpp -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerIAR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerIAR.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerICC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerICC.cpp -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerICC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerICC.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerLCC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerLCC.cpp -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerLCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerLCC.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerMINGW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerMINGW.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerMSVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerMSVC.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerMSVC8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerMSVC8.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerOW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerOW.cpp -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerOW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerOW.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerXML.cpp -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilerXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilerXML.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/compiler_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compiler_defs.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilergcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilergcc.cpp -------------------------------------------------------------------------------- /src/plugins/compilergcc/compilergcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/compilergcc/compilergcc.h -------------------------------------------------------------------------------- /src/plugins/compilergcc/depslib/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /src/plugins/contrib/Cccc/Cccc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/Cccc/Cccc.cpp -------------------------------------------------------------------------------- /src/plugins/contrib/Cccc/Cccc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/Cccc/Cccc.h -------------------------------------------------------------------------------- /src/plugins/contrib/Cccc/Cccc_wx31.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/Cccc/Cccc_wx31.cbp -------------------------------------------------------------------------------- /src/plugins/contrib/Cccc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/Cccc/Makefile.am -------------------------------------------------------------------------------- /src/plugins/contrib/CppCheck/CppCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/CppCheck/CppCheck.h -------------------------------------------------------------------------------- /src/plugins/contrib/Cscope/CscopeTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/Cscope/CscopeTab.h -------------------------------------------------------------------------------- /src/plugins/contrib/Cscope/CscopeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/Cscope/CscopeView.h -------------------------------------------------------------------------------- /src/plugins/contrib/Cscope/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/Cscope/Makefile.am -------------------------------------------------------------------------------- /src/plugins/contrib/Cscope/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/Cscope/manifest.xml -------------------------------------------------------------------------------- /src/plugins/contrib/DoxyBlocks/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/DoxyBlocks/Config.h -------------------------------------------------------------------------------- /src/plugins/contrib/DoxyBlocks/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/DoxyBlocks/gpl.txt -------------------------------------------------------------------------------- /src/plugins/contrib/DoxyBlocks/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/DoxyBlocks/update -------------------------------------------------------------------------------- /src/plugins/contrib/DoxyBlocks/update30: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | ./update 30 4 | exit 0 5 | -------------------------------------------------------------------------------- /src/plugins/contrib/DoxyBlocks/update31.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | update.bat 31 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /src/plugins/contrib/DoxyBlocks/update31_64.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | update.bat 31_64 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /src/plugins/contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/Makefile.am -------------------------------------------------------------------------------- /src/plugins/contrib/MouseSap/MouseSap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/MouseSap/MouseSap.h -------------------------------------------------------------------------------- /src/plugins/contrib/SpellChecker/hunspell/README: -------------------------------------------------------------------------------- 1 | link README.md -------------------------------------------------------------------------------- /src/plugins/contrib/SpellChecker/hunspell/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/plugins/contrib/SpellChecker/hunspell/src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=hunspell parsers tools 2 | -------------------------------------------------------------------------------- /src/plugins/contrib/SpellChecker/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/SpellChecker/update -------------------------------------------------------------------------------- /src/plugins/contrib/SpellChecker/update31.bat: -------------------------------------------------------------------------------- 1 | @call update.bat 31 2 | -------------------------------------------------------------------------------- /src/plugins/contrib/SpellChecker/update31_64.bat: -------------------------------------------------------------------------------- 1 | @call update.bat 31_64 2 | -------------------------------------------------------------------------------- /src/plugins/contrib/SpellChecker/wxspellchecker/build/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | -------------------------------------------------------------------------------- /src/plugins/contrib/ThreadSearch/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/ThreadSearch/update -------------------------------------------------------------------------------- /src/plugins/contrib/ThreadSearch/update30: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | ./update 30 4 | exit 0 5 | 6 | -------------------------------------------------------------------------------- /src/plugins/contrib/ToolsPlus/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/ToolsPlus/update -------------------------------------------------------------------------------- /src/plugins/contrib/ToolsPlus/update30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/ToolsPlus/update30 -------------------------------------------------------------------------------- /src/plugins/contrib/Valgrind/Valgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/Valgrind/Valgrind.h -------------------------------------------------------------------------------- /src/plugins/contrib/Valgrind/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/Valgrind/update -------------------------------------------------------------------------------- /src/plugins/contrib/Valgrind/update30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/Valgrind/update30 -------------------------------------------------------------------------------- /src/plugins/contrib/appdata/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/appdata/Makefile.am -------------------------------------------------------------------------------- /src/plugins/contrib/byogames/byoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/byogames/byoconf.h -------------------------------------------------------------------------------- /src/plugins/contrib/byogames/byogame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/byogames/byogame.h -------------------------------------------------------------------------------- /src/plugins/contrib/byogames/byogames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/byogames/byogames.h -------------------------------------------------------------------------------- /src/plugins/contrib/byogames/byosnake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/byogames/byosnake.h -------------------------------------------------------------------------------- /src/plugins/contrib/codesnippets/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/codesnippets/update -------------------------------------------------------------------------------- /src/plugins/contrib/codestat/BuildInstructions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/contrib/codestat/InstallationInstructions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/contrib/codestat/codestat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/codestat/codestat.h -------------------------------------------------------------------------------- /src/plugins/contrib/envvars/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/envvars/Makefile.am -------------------------------------------------------------------------------- /src/plugins/contrib/rndgen/rndgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/rndgen/rndgen.h -------------------------------------------------------------------------------- /src/plugins/contrib/rndgen/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/rndgen/test.c -------------------------------------------------------------------------------- /src/plugins/contrib/source_exporter/wxPdfDocument/samples/minimal/attached.txt: -------------------------------------------------------------------------------- 1 | Sample attached file. 2 | -------------------------------------------------------------------------------- /src/plugins/contrib/symtab/symtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/symtab/symtab.h -------------------------------------------------------------------------------- /src/plugins/contrib/wxContribItems/wxchart/build/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | -------------------------------------------------------------------------------- /src/plugins/contrib/wxContribItems/wxmathplot/README: -------------------------------------------------------------------------------- 1 | Source from https://github.com/R1kk3r/wxMathPlot 2 | -------------------------------------------------------------------------------- /src/plugins/contrib/wxContribItems/wxthings/build/readme.txt: -------------------------------------------------------------------------------- 1 | Build with CMake. 2 | -------------------------------------------------------------------------------- /src/plugins/contrib/wxContribItems/wxthings/samples/filebrws/wxfilebrowser.rc: -------------------------------------------------------------------------------- 1 | #include "wx/msw/wx.rc" 2 | 3 | -------------------------------------------------------------------------------- /src/plugins/contrib/wxContribItems/wxthings/samples/things/thingsdemo.rc: -------------------------------------------------------------------------------- 1 | #include "wx/msw/wx.rc" 2 | -------------------------------------------------------------------------------- /src/plugins/contrib/wxSmith/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/wxSmith/update -------------------------------------------------------------------------------- /src/plugins/contrib/wxSmith/update30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/wxSmith/update30 -------------------------------------------------------------------------------- /src/plugins/contrib/wxSmith/wxs.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/wxSmith/wxs.doxy -------------------------------------------------------------------------------- /src/plugins/contrib/wxSmith/wxsgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/contrib/wxSmith/wxsgui.h -------------------------------------------------------------------------------- /src/plugins/debuggergdb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/debuggergdb/Makefile.am -------------------------------------------------------------------------------- /src/plugins/debuggergdb/cdb_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/debuggergdb/cdb_driver.h -------------------------------------------------------------------------------- /src/plugins/debuggergdb/gdb_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/debuggergdb/gdb_driver.h -------------------------------------------------------------------------------- /src/plugins/headerguard/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/headerguard/manifest.xml -------------------------------------------------------------------------------- /src/plugins/loghacker/loghacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/loghacker/loghacker.cpp -------------------------------------------------------------------------------- /src/plugins/loghacker/loghacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/loghacker/loghacker.h -------------------------------------------------------------------------------- /src/plugins/loghacker/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/loghacker/manifest.xml -------------------------------------------------------------------------------- /src/plugins/modpoller/ModPoller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/modpoller/ModPoller.cpp -------------------------------------------------------------------------------- /src/plugins/modpoller/ModPoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/modpoller/ModPoller.h -------------------------------------------------------------------------------- /src/plugins/modpoller/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/modpoller/manifest.xml -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/Print.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/Stream.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/Tone.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/USBCore.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/WInterrupts.c: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/WMath.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/WString.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/main.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/new.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/wiring.c: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/wiring_analog.c: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/wiring_digital.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/wiring_pulse.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arduino/files/cores/wiring_shift.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arm/files/ARM-eval7t/src/main.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | int main (void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arm/files/ek-at91sam7a3/src/main.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | int main (void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arm/files/lpd-lh7a404/src/main.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | int main (void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arm/files/olimex-at91sam7sx/src/main.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | int main (void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arm/files/olimex-lpc213x/src/main.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | int main (void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arm/files/phyCORE-AT91M55800/src/main.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | int main (void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arm/files/phyCORE-LPC2294/src/main.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | int main (void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/arm/files/phyCORE-PXA255/src/main.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | int main (void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/ppc/files/MPC5200/src/main.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | int main (void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/resources/ppc/files/MPC565/src/main.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | int main (void) { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/wiz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/scriptedwizard/wiz.cpp -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/scriptedwizard/wiz.h -------------------------------------------------------------------------------- /src/plugins/scriptedwizard/wizpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/scriptedwizard/wizpage.h -------------------------------------------------------------------------------- /src/plugins/tidycmt/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/tidycmt/manifest.xml -------------------------------------------------------------------------------- /src/plugins/tidycmt/tidycmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/tidycmt/tidycmt.cpp -------------------------------------------------------------------------------- /src/plugins/tidycmt/tidycmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/tidycmt/tidycmt.h -------------------------------------------------------------------------------- /src/plugins/tidycmt/tidycmt_wx31.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/tidycmt/tidycmt_wx31.cbp -------------------------------------------------------------------------------- /src/plugins/tidycmt/tidycmtconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/tidycmt/tidycmtconfig.h -------------------------------------------------------------------------------- /src/plugins/todo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/Makefile.am -------------------------------------------------------------------------------- /src/plugins/todo/addtododlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/addtododlg.cpp -------------------------------------------------------------------------------- /src/plugins/todo/addtododlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/addtododlg.h -------------------------------------------------------------------------------- /src/plugins/todo/asktypedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/asktypedlg.cpp -------------------------------------------------------------------------------- /src/plugins/todo/asktypedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/asktypedlg.h -------------------------------------------------------------------------------- /src/plugins/todo/fuzzer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/fuzzer/main.cpp -------------------------------------------------------------------------------- /src/plugins/todo/fuzzer/sdk.h: -------------------------------------------------------------------------------- 1 | // just empty 2 | -------------------------------------------------------------------------------- /src/plugins/todo/todo_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/todo_parser.cpp -------------------------------------------------------------------------------- /src/plugins/todo/todo_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/todo_parser.h -------------------------------------------------------------------------------- /src/plugins/todo/todolist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/todolist.cpp -------------------------------------------------------------------------------- /src/plugins/todo/todolist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/todolist.h -------------------------------------------------------------------------------- /src/plugins/todo/todolistview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/todolistview.cpp -------------------------------------------------------------------------------- /src/plugins/todo/todolistview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/todolistview.h -------------------------------------------------------------------------------- /src/plugins/todo/todosettingsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/todosettingsdlg.cpp -------------------------------------------------------------------------------- /src/plugins/todo/todosettingsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/todo/todosettingsdlg.h -------------------------------------------------------------------------------- /src/plugins/xpmanifest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/xpmanifest/Makefile.am -------------------------------------------------------------------------------- /src/plugins/xpmanifest/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/plugins/xpmanifest/manifest.xml -------------------------------------------------------------------------------- /src/scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/scripts/Makefile.am -------------------------------------------------------------------------------- /src/scripts/make_dist.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/scripts/make_dist.script -------------------------------------------------------------------------------- /src/scripts/sample_plugin.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/scripts/sample_plugin.script -------------------------------------------------------------------------------- /src/scripts/startup.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/scripts/startup.script -------------------------------------------------------------------------------- /src/scripts/tests/sdk_test.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/scripts/tests/sdk_test.script -------------------------------------------------------------------------------- /src/scripts/tests/test_base.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/scripts/tests/test_base.script -------------------------------------------------------------------------------- /src/scripts/tests/wx_test.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/scripts/tests/wx_test.script -------------------------------------------------------------------------------- /src/scripts/wx_help.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/scripts/wx_help.script -------------------------------------------------------------------------------- /src/sdk.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk.doxy -------------------------------------------------------------------------------- /src/sdk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/Makefile.am -------------------------------------------------------------------------------- /src/sdk/annoyingdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/annoyingdialog.cpp -------------------------------------------------------------------------------- /src/sdk/autodetectcompilers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/autodetectcompilers.cpp -------------------------------------------------------------------------------- /src/sdk/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/base64.cpp -------------------------------------------------------------------------------- /src/sdk/blockallocated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/blockallocated.cpp -------------------------------------------------------------------------------- /src/sdk/cbart_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbart_provider.cpp -------------------------------------------------------------------------------- /src/sdk/cbauibook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbauibook.cpp -------------------------------------------------------------------------------- /src/sdk/cbcolourmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbcolourmanager.cpp -------------------------------------------------------------------------------- /src/sdk/cbdebugger_interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbdebugger_interfaces.cpp -------------------------------------------------------------------------------- /src/sdk/cbeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbeditor.cpp -------------------------------------------------------------------------------- /src/sdk/cbeditorprintout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbeditorprintout.cpp -------------------------------------------------------------------------------- /src/sdk/cbexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbexception.cpp -------------------------------------------------------------------------------- /src/sdk/cbplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbplugin.cpp -------------------------------------------------------------------------------- /src/sdk/cbproject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbproject.cpp -------------------------------------------------------------------------------- /src/sdk/cbstatusbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbstatusbar.cpp -------------------------------------------------------------------------------- /src/sdk/cbstyledtextctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbstyledtextctrl.cpp -------------------------------------------------------------------------------- /src/sdk/cbthreadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbthreadpool.cpp -------------------------------------------------------------------------------- /src/sdk/cbtreectrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbtreectrl.cpp -------------------------------------------------------------------------------- /src/sdk/cbworkspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cbworkspace.cpp -------------------------------------------------------------------------------- /src/sdk/ccmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/ccmanager.cpp -------------------------------------------------------------------------------- /src/sdk/compileoptionsbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/compileoptionsbase.cpp -------------------------------------------------------------------------------- /src/sdk/compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/compiler.cpp -------------------------------------------------------------------------------- /src/sdk/compilercommandgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/compilercommandgenerator.cpp -------------------------------------------------------------------------------- /src/sdk/compilerfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/compilerfactory.cpp -------------------------------------------------------------------------------- /src/sdk/compileroptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/compileroptions.cpp -------------------------------------------------------------------------------- /src/sdk/compiletargetbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/compiletargetbase.cpp -------------------------------------------------------------------------------- /src/sdk/configmanager-revision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/configmanager-revision.cpp -------------------------------------------------------------------------------- /src/sdk/configmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/configmanager.cpp -------------------------------------------------------------------------------- /src/sdk/configurationpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/configurationpanel.cpp -------------------------------------------------------------------------------- /src/sdk/configuretoolsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/configuretoolsdlg.cpp -------------------------------------------------------------------------------- /src/sdk/confirmreplacedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/confirmreplacedlg.cpp -------------------------------------------------------------------------------- /src/sdk/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/crc32.cpp -------------------------------------------------------------------------------- /src/sdk/cygwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/cygwin.cpp -------------------------------------------------------------------------------- /src/sdk/debuggermanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/debuggermanager.cpp -------------------------------------------------------------------------------- /src/sdk/editarrayfiledlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/editarrayfiledlg.cpp -------------------------------------------------------------------------------- /src/sdk/editarrayorderdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/editarrayorderdlg.cpp -------------------------------------------------------------------------------- /src/sdk/editarraystringdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/editarraystringdlg.cpp -------------------------------------------------------------------------------- /src/sdk/editor_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/editor_hooks.cpp -------------------------------------------------------------------------------- /src/sdk/editor_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/editor_utils.cpp -------------------------------------------------------------------------------- /src/sdk/editorbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/editorbase.cpp -------------------------------------------------------------------------------- /src/sdk/editorcolourset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/editorcolourset.cpp -------------------------------------------------------------------------------- /src/sdk/editorlexerloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/editorlexerloader.cpp -------------------------------------------------------------------------------- /src/sdk/editormanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/editormanager.cpp -------------------------------------------------------------------------------- /src/sdk/editpairdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/editpairdlg.cpp -------------------------------------------------------------------------------- /src/sdk/editpathdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/editpathdlg.cpp -------------------------------------------------------------------------------- /src/sdk/edittooldlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/edittooldlg.cpp -------------------------------------------------------------------------------- /src/sdk/encodingdetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/encodingdetector.cpp -------------------------------------------------------------------------------- /src/sdk/externaldepsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/externaldepsdlg.cpp -------------------------------------------------------------------------------- /src/sdk/filefilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/filefilters.cpp -------------------------------------------------------------------------------- /src/sdk/filegroupsandmasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/filegroupsandmasks.cpp -------------------------------------------------------------------------------- /src/sdk/filemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/filemanager.cpp -------------------------------------------------------------------------------- /src/sdk/findreplacedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/findreplacedlg.cpp -------------------------------------------------------------------------------- /src/sdk/genericmultilinenotesdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/genericmultilinenotesdlg.cpp -------------------------------------------------------------------------------- /src/sdk/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/globals.cpp -------------------------------------------------------------------------------- /src/sdk/importers_globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/importers_globals.cpp -------------------------------------------------------------------------------- /src/sdk/infowindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/infowindow.cpp -------------------------------------------------------------------------------- /src/sdk/loggers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/loggers.cpp -------------------------------------------------------------------------------- /src/sdk/logmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/logmanager.cpp -------------------------------------------------------------------------------- /src/sdk/macrosmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/macrosmanager.cpp -------------------------------------------------------------------------------- /src/sdk/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/manager.cpp -------------------------------------------------------------------------------- /src/sdk/menuitemsmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/menuitemsmanager.cpp -------------------------------------------------------------------------------- /src/sdk/multiselectdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/multiselectdlg.cpp -------------------------------------------------------------------------------- /src/sdk/newfromtemplatedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/newfromtemplatedlg.cpp -------------------------------------------------------------------------------- /src/sdk/nullptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/nullptr.cpp -------------------------------------------------------------------------------- /src/sdk/personalitymanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/personalitymanager.cpp -------------------------------------------------------------------------------- /src/sdk/pipedprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/pipedprocess.cpp -------------------------------------------------------------------------------- /src/sdk/pluginmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/pluginmanager.cpp -------------------------------------------------------------------------------- /src/sdk/pluginsconfigurationdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/pluginsconfigurationdlg.cpp -------------------------------------------------------------------------------- /src/sdk/printing_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/printing_types.cpp -------------------------------------------------------------------------------- /src/sdk/projectbuildtarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/projectbuildtarget.cpp -------------------------------------------------------------------------------- /src/sdk/projectfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/projectfile.cpp -------------------------------------------------------------------------------- /src/sdk/projectfileoptionsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/projectfileoptionsdlg.cpp -------------------------------------------------------------------------------- /src/sdk/projectlayoutloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/projectlayoutloader.cpp -------------------------------------------------------------------------------- /src/sdk/projectloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/projectloader.cpp -------------------------------------------------------------------------------- /src/sdk/projectloader_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/projectloader_hooks.cpp -------------------------------------------------------------------------------- /src/sdk/projectmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/projectmanager.cpp -------------------------------------------------------------------------------- /src/sdk/projectsfilemasksdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/projectsfilemasksdlg.cpp -------------------------------------------------------------------------------- /src/sdk/projecttemplateloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/projecttemplateloader.cpp -------------------------------------------------------------------------------- /src/sdk/resources/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/resources/Makefile.am -------------------------------------------------------------------------------- /src/sdk/resources/edit_pair.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/resources/edit_pair.xrc -------------------------------------------------------------------------------- /src/sdk/resources/edit_path.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/resources/edit_path.xrc -------------------------------------------------------------------------------- /src/sdk/resources/edit_tool.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/resources/edit_tool.xrc -------------------------------------------------------------------------------- /src/sdk/resources/external_deps.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/resources/external_deps.xrc -------------------------------------------------------------------------------- /src/sdk/resources/findreplacedlg.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/resources/findreplacedlg.xrc -------------------------------------------------------------------------------- /src/sdk/resources/lexers/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/resources/lexers/Makefile.am -------------------------------------------------------------------------------- /src/sdk/resources/lexers/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/resources/lexers/README.txt -------------------------------------------------------------------------------- /src/sdk/resources/lexers/lexer_d.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/resources/lexers/lexer_d.xml -------------------------------------------------------------------------------- /src/sdk/resources/select_target.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/resources/select_target.xrc -------------------------------------------------------------------------------- /src/sdk/scripting/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/COPYRIGHT -------------------------------------------------------------------------------- /src/sdk/scripting/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/HISTORY -------------------------------------------------------------------------------- /src/sdk/scripting/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/Makefile.am -------------------------------------------------------------------------------- /src/sdk/scripting/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/README -------------------------------------------------------------------------------- /src/sdk/scripting/bindings/sc_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/bindings/sc_io.cpp -------------------------------------------------------------------------------- /src/sdk/scripting/squirrel/sqapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/squirrel/sqapi.cpp -------------------------------------------------------------------------------- /src/sdk/scripting/squirrel/sqarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/squirrel/sqarray.h -------------------------------------------------------------------------------- /src/sdk/scripting/squirrel/sqclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/squirrel/sqclass.h -------------------------------------------------------------------------------- /src/sdk/scripting/squirrel/sqlexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/squirrel/sqlexer.h -------------------------------------------------------------------------------- /src/sdk/scripting/squirrel/sqmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/squirrel/sqmem.cpp -------------------------------------------------------------------------------- /src/sdk/scripting/squirrel/sqstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/squirrel/sqstate.h -------------------------------------------------------------------------------- /src/sdk/scripting/squirrel/sqtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/squirrel/sqtable.h -------------------------------------------------------------------------------- /src/sdk/scripting/squirrel/squtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/squirrel/squtils.h -------------------------------------------------------------------------------- /src/sdk/scripting/squirrel/sqvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/squirrel/sqvm.cpp -------------------------------------------------------------------------------- /src/sdk/scripting/squirrel/sqvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scripting/squirrel/sqvm.h -------------------------------------------------------------------------------- /src/sdk/scriptingmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scriptingmanager.cpp -------------------------------------------------------------------------------- /src/sdk/scriptsecuritywarningdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scriptsecuritywarningdlg.cpp -------------------------------------------------------------------------------- /src/sdk/scrollingdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/scrollingdialog.cpp -------------------------------------------------------------------------------- /src/sdk/sdk_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/sdk_events.cpp -------------------------------------------------------------------------------- /src/sdk/searchresultslog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/searchresultslog.cpp -------------------------------------------------------------------------------- /src/sdk/selecttargetdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/selecttargetdlg.cpp -------------------------------------------------------------------------------- /src/sdk/templatemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/templatemanager.cpp -------------------------------------------------------------------------------- /src/sdk/tinywxuni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/tinywxuni.cpp -------------------------------------------------------------------------------- /src/sdk/toolsmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/toolsmanager.cpp -------------------------------------------------------------------------------- /src/sdk/uservarmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/uservarmanager.cpp -------------------------------------------------------------------------------- /src/sdk/workspaceloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/workspaceloader.cpp -------------------------------------------------------------------------------- /src/sdk/wxscintilla/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/wxscintilla/Makefile.am -------------------------------------------------------------------------------- /src/sdk/wxscintilla/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/wxscintilla/Readme -------------------------------------------------------------------------------- /src/sdk/wxscintilla/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/wxscintilla/build/Makefile -------------------------------------------------------------------------------- /src/sdk/wxscintilla/lib/dummy: -------------------------------------------------------------------------------- 1 | I'm just here to force the creation of a LIB directory. 2 | -------------------------------------------------------------------------------- /src/sdk/wxscintilla/src/PlatWX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/wxscintilla/src/PlatWX.cpp -------------------------------------------------------------------------------- /src/sdk/wxscintilla/src/PlatWX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/wxscintilla/src/PlatWX.h -------------------------------------------------------------------------------- /src/sdk/wxscintilla/src/scintilla/bin/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/sdk/wxscintilla/src/scintilla/version.txt: -------------------------------------------------------------------------------- 1 | 375 2 | -------------------------------------------------------------------------------- /src/sdk/xtra_res.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/sdk/xtra_res.cpp -------------------------------------------------------------------------------- /src/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/Makefile.am -------------------------------------------------------------------------------- /src/src/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/app.cpp -------------------------------------------------------------------------------- /src/src/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/app.h -------------------------------------------------------------------------------- /src/src/appglobals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/appglobals.cpp -------------------------------------------------------------------------------- /src/src/appglobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/appglobals.h -------------------------------------------------------------------------------- /src/src/associations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/associations.cpp -------------------------------------------------------------------------------- /src/src/associations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/associations.h -------------------------------------------------------------------------------- /src/src/backtracedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/backtracedlg.cpp -------------------------------------------------------------------------------- /src/src/backtracedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/backtracedlg.h -------------------------------------------------------------------------------- /src/src/batchbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/batchbuild.h -------------------------------------------------------------------------------- /src/src/breakpointsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/breakpointsdlg.cpp -------------------------------------------------------------------------------- /src/src/breakpointsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/breakpointsdlg.h -------------------------------------------------------------------------------- /src/src/codeblocks.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/codeblocks.1 -------------------------------------------------------------------------------- /src/src/compilersettingsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/compilersettingsdlg.cpp -------------------------------------------------------------------------------- /src/src/compilersettingsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/compilersettingsdlg.h -------------------------------------------------------------------------------- /src/src/cpuregistersdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/cpuregistersdlg.cpp -------------------------------------------------------------------------------- /src/src/cpuregistersdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/cpuregistersdlg.h -------------------------------------------------------------------------------- /src/src/crashhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/crashhandler.cpp -------------------------------------------------------------------------------- /src/src/crashhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/crashhandler.h -------------------------------------------------------------------------------- /src/src/debugger_interface_creator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/debugger_interface_creator.h -------------------------------------------------------------------------------- /src/src/debuggermenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/debuggermenu.cpp -------------------------------------------------------------------------------- /src/src/debuggermenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/debuggermenu.h -------------------------------------------------------------------------------- /src/src/debuggersettingsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/debuggersettingsdlg.cpp -------------------------------------------------------------------------------- /src/src/debuggersettingsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/debuggersettingsdlg.h -------------------------------------------------------------------------------- /src/src/debuggersettingspanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/debuggersettingspanel.cpp -------------------------------------------------------------------------------- /src/src/debuggersettingspanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/debuggersettingspanel.h -------------------------------------------------------------------------------- /src/src/disassemblydlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/disassemblydlg.cpp -------------------------------------------------------------------------------- /src/src/disassemblydlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/disassemblydlg.h -------------------------------------------------------------------------------- /src/src/dlgabout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/dlgabout.cpp -------------------------------------------------------------------------------- /src/src/dlgabout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/dlgabout.h -------------------------------------------------------------------------------- /src/src/dlgaboutplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/dlgaboutplugin.cpp -------------------------------------------------------------------------------- /src/src/dlgaboutplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/dlgaboutplugin.h -------------------------------------------------------------------------------- /src/src/editkeywordsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/editkeywordsdlg.cpp -------------------------------------------------------------------------------- /src/src/editkeywordsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/editkeywordsdlg.h -------------------------------------------------------------------------------- /src/src/editorconfigurationdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/editorconfigurationdlg.cpp -------------------------------------------------------------------------------- /src/src/editorconfigurationdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/editorconfigurationdlg.h -------------------------------------------------------------------------------- /src/src/environmentsettingsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/environmentsettingsdlg.cpp -------------------------------------------------------------------------------- /src/src/environmentsettingsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/environmentsettingsdlg.h -------------------------------------------------------------------------------- /src/src/examinememorydlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/examinememorydlg.cpp -------------------------------------------------------------------------------- /src/src/examinememorydlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/examinememorydlg.h -------------------------------------------------------------------------------- /src/src/find_replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/find_replace.cpp -------------------------------------------------------------------------------- /src/src/find_replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/find_replace.h -------------------------------------------------------------------------------- /src/src/goto_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/goto_file.cpp -------------------------------------------------------------------------------- /src/src/goto_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/goto_file.h -------------------------------------------------------------------------------- /src/src/infopane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/infopane.cpp -------------------------------------------------------------------------------- /src/src/infopane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/infopane.h -------------------------------------------------------------------------------- /src/src/ipc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/ipc.cpp -------------------------------------------------------------------------------- /src/src/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/ipc.h -------------------------------------------------------------------------------- /src/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/main.cpp -------------------------------------------------------------------------------- /src/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/main.h -------------------------------------------------------------------------------- /src/src/notebookstyles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/notebookstyles.cpp -------------------------------------------------------------------------------- /src/src/notebookstyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/notebookstyles.h -------------------------------------------------------------------------------- /src/src/printdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/printdlg.cpp -------------------------------------------------------------------------------- /src/src/printdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/printdlg.h -------------------------------------------------------------------------------- /src/src/projectdepsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/projectdepsdlg.cpp -------------------------------------------------------------------------------- /src/src/projectdepsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/projectdepsdlg.h -------------------------------------------------------------------------------- /src/src/projectmanagerui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/projectmanagerui.cpp -------------------------------------------------------------------------------- /src/src/projectmanagerui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/projectmanagerui.h -------------------------------------------------------------------------------- /src/src/projectoptionsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/projectoptionsdlg.cpp -------------------------------------------------------------------------------- /src/src/projectoptionsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/projectoptionsdlg.h -------------------------------------------------------------------------------- /src/src/recentitemslist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/recentitemslist.cpp -------------------------------------------------------------------------------- /src/src/recentitemslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/recentitemslist.h -------------------------------------------------------------------------------- /src/src/resources/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/Makefile.am -------------------------------------------------------------------------------- /src/src/resources/amd64.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/amd64.manifest -------------------------------------------------------------------------------- /src/src/resources/ask_assocs.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/ask_assocs.xrc -------------------------------------------------------------------------------- /src/src/resources/debugger_menu.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/debugger_menu.xrc -------------------------------------------------------------------------------- /src/src/resources/disassembly.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/disassembly.xrc -------------------------------------------------------------------------------- /src/src/resources/dlg_about.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/dlg_about.xrc -------------------------------------------------------------------------------- /src/src/resources/edit_keywords.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/edit_keywords.xrc -------------------------------------------------------------------------------- /src/src/resources/env_settings.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/env_settings.xrc -------------------------------------------------------------------------------- /src/src/resources/ia64.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/ia64.manifest -------------------------------------------------------------------------------- /src/src/resources/icons/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/Makefile.am -------------------------------------------------------------------------------- /src/src/resources/icons/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/app.icns -------------------------------------------------------------------------------- /src/src/resources/icons/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/app.ico -------------------------------------------------------------------------------- /src/src/resources/icons/app.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/app.r -------------------------------------------------------------------------------- /src/src/resources/icons/app.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/app.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/app_64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/app_64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/asm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/asm.ico -------------------------------------------------------------------------------- /src/src/resources/icons/c.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/c.icns -------------------------------------------------------------------------------- /src/src/resources/icons/c.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/c.ico -------------------------------------------------------------------------------- /src/src/resources/icons/c64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/c64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/cbp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/cbp.icns -------------------------------------------------------------------------------- /src/src/resources/icons/cbp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/cbp.ico -------------------------------------------------------------------------------- /src/src/resources/icons/cbp64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/cbp64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/cg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/cg.icns -------------------------------------------------------------------------------- /src/src/resources/icons/cg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/cg.ico -------------------------------------------------------------------------------- /src/src/resources/icons/cg64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/cg64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/cpp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/cpp.icns -------------------------------------------------------------------------------- /src/src/resources/icons/cpp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/cpp.ico -------------------------------------------------------------------------------- /src/src/resources/icons/cpp64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/cpp64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/csd.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/csd.icns -------------------------------------------------------------------------------- /src/src/resources/icons/csd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/csd.ico -------------------------------------------------------------------------------- /src/src/resources/icons/csd64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/csd64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/d.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/d.icns -------------------------------------------------------------------------------- /src/src/resources/icons/d.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/d.ico -------------------------------------------------------------------------------- /src/src/resources/icons/d64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/d64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/dev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/dev.ico -------------------------------------------------------------------------------- /src/src/resources/icons/dev64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/dev64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/dsp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/dsp.ico -------------------------------------------------------------------------------- /src/src/resources/icons/dsp64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/dsp64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/dsw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/dsw.ico -------------------------------------------------------------------------------- /src/src/resources/icons/dsw64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/dsw64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/f.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/f.icns -------------------------------------------------------------------------------- /src/src/resources/icons/f.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/f.ico -------------------------------------------------------------------------------- /src/src/resources/icons/f64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/f64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/h.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/h.icns -------------------------------------------------------------------------------- /src/src/resources/icons/h.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/h.ico -------------------------------------------------------------------------------- /src/src/resources/icons/h64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/h64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/j.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/j.ico -------------------------------------------------------------------------------- /src/src/resources/icons/proj.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/proj.ico -------------------------------------------------------------------------------- /src/src/resources/icons/proj64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/proj64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/rc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/rc.icns -------------------------------------------------------------------------------- /src/src/resources/icons/rc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/rc.ico -------------------------------------------------------------------------------- /src/src/resources/icons/rc64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/rc64.xpm -------------------------------------------------------------------------------- /src/src/resources/icons/template.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/icons/template.ico -------------------------------------------------------------------------------- /src/src/resources/images/16x16/README.txt: -------------------------------------------------------------------------------- 1 | Placeholder to keep CVS from deleting this directory 2 | -------------------------------------------------------------------------------- /src/src/resources/images/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/images/Makefile.am -------------------------------------------------------------------------------- /src/src/resources/images/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/images/compile.png -------------------------------------------------------------------------------- /src/src/resources/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/images/folder.png -------------------------------------------------------------------------------- /src/src/resources/images/rebuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/images/rebuild.png -------------------------------------------------------------------------------- /src/src/resources/images/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/images/source.png -------------------------------------------------------------------------------- /src/src/resources/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/images/splash.png -------------------------------------------------------------------------------- /src/src/resources/images/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/images/stop.png -------------------------------------------------------------------------------- /src/src/resources/main_menu.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/main_menu.xrc -------------------------------------------------------------------------------- /src/src/resources/main_toolbar.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/main_toolbar.xrc -------------------------------------------------------------------------------- /src/src/resources/manage_assocs.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/manage_assocs.xrc -------------------------------------------------------------------------------- /src/src/resources/memdump.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/memdump.xrc -------------------------------------------------------------------------------- /src/src/resources/print_dialog.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/print_dialog.xrc -------------------------------------------------------------------------------- /src/src/resources/project_deps.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/project_deps.xrc -------------------------------------------------------------------------------- /src/src/resources/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/resources.rc -------------------------------------------------------------------------------- /src/src/resources/start_here/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/start_here/cb.png -------------------------------------------------------------------------------- /src/src/resources/start_here/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/start_here/new.png -------------------------------------------------------------------------------- /src/src/resources/start_here/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/start_here/tip.png -------------------------------------------------------------------------------- /src/src/resources/start_here/www.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/start_here/www.png -------------------------------------------------------------------------------- /src/src/resources/x86.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/resources/x86.manifest -------------------------------------------------------------------------------- /src/src/scriptconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/scriptconsole.cpp -------------------------------------------------------------------------------- /src/src/scriptconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/scriptconsole.h -------------------------------------------------------------------------------- /src/src/scriptingsettingsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/scriptingsettingsdlg.cpp -------------------------------------------------------------------------------- /src/src/scriptingsettingsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/scriptingsettingsdlg.h -------------------------------------------------------------------------------- /src/src/splashscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/splashscreen.cpp -------------------------------------------------------------------------------- /src/src/splashscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/splashscreen.h -------------------------------------------------------------------------------- /src/src/startherepage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/startherepage.cpp -------------------------------------------------------------------------------- /src/src/startherepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/startherepage.h -------------------------------------------------------------------------------- /src/src/switcherdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/switcherdlg.cpp -------------------------------------------------------------------------------- /src/src/switcherdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/switcherdlg.h -------------------------------------------------------------------------------- /src/src/threadsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/threadsdlg.cpp -------------------------------------------------------------------------------- /src/src/threadsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/threadsdlg.h -------------------------------------------------------------------------------- /src/src/virtualbuildtargetsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/virtualbuildtargetsdlg.cpp -------------------------------------------------------------------------------- /src/src/virtualbuildtargetsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/virtualbuildtargetsdlg.h -------------------------------------------------------------------------------- /src/src/watchesdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/watchesdlg.cpp -------------------------------------------------------------------------------- /src/src/watchesdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/src/watchesdlg.h -------------------------------------------------------------------------------- /src/templates/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/Makefile.am -------------------------------------------------------------------------------- /src/templates/common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/Makefile.am -------------------------------------------------------------------------------- /src/templates/common/console.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/console.cbp -------------------------------------------------------------------------------- /src/templates/common/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/console.png -------------------------------------------------------------------------------- /src/templates/common/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/dll.png -------------------------------------------------------------------------------- /src/templates/common/glfw-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/glfw-main.cpp -------------------------------------------------------------------------------- /src/templates/common/glfw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/glfw.png -------------------------------------------------------------------------------- /src/templates/common/glfw.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/glfw.template -------------------------------------------------------------------------------- /src/templates/common/glut-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/glut-main.cpp -------------------------------------------------------------------------------- /src/templates/common/glut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/glut.png -------------------------------------------------------------------------------- /src/templates/common/irr_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/irr_main.cpp -------------------------------------------------------------------------------- /src/templates/common/irrlicht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/irrlicht.png -------------------------------------------------------------------------------- /src/templates/common/ogre-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/ogre-main.cpp -------------------------------------------------------------------------------- /src/templates/common/ogrelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/ogrelogo.png -------------------------------------------------------------------------------- /src/templates/common/qt-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/qt-main.cpp -------------------------------------------------------------------------------- /src/templates/common/qt.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/qt.cbp -------------------------------------------------------------------------------- /src/templates/common/qt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/qt.template -------------------------------------------------------------------------------- /src/templates/common/qtlogo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/qtlogo32.png -------------------------------------------------------------------------------- /src/templates/common/sdccapp-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sdccapp-main.c -------------------------------------------------------------------------------- /src/templates/common/sdccapp.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sdccapp.cbp -------------------------------------------------------------------------------- /src/templates/common/sdccapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sdccapp.png -------------------------------------------------------------------------------- /src/templates/common/sdl-cb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sdl-cb.bmp -------------------------------------------------------------------------------- /src/templates/common/sdl-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sdl-main.cpp -------------------------------------------------------------------------------- /src/templates/common/sdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sdl.png -------------------------------------------------------------------------------- /src/templates/common/sdl2-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sdl2-main.cpp -------------------------------------------------------------------------------- /src/templates/common/sdl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sdl2.png -------------------------------------------------------------------------------- /src/templates/common/sdl2app.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sdl2app.cbp -------------------------------------------------------------------------------- /src/templates/common/sdlapp.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sdlapp.template -------------------------------------------------------------------------------- /src/templates/common/sfml-cb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sfml-cb.bmp -------------------------------------------------------------------------------- /src/templates/common/sfml-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sfml-main.cpp -------------------------------------------------------------------------------- /src/templates/common/sfml.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sfml.cbp -------------------------------------------------------------------------------- /src/templates/common/sfml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sfml.png -------------------------------------------------------------------------------- /src/templates/common/sfml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sfml.template -------------------------------------------------------------------------------- /src/templates/common/sharedlib.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/sharedlib.cbp -------------------------------------------------------------------------------- /src/templates/common/staticlib.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/staticlib.cbp -------------------------------------------------------------------------------- /src/templates/common/wx-app-ash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/wx-app-ash.cpp -------------------------------------------------------------------------------- /src/templates/common/wx-app-ash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/wx-app-ash.h -------------------------------------------------------------------------------- /src/templates/common/wx-main-ash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/wx-main-ash.cpp -------------------------------------------------------------------------------- /src/templates/common/wx-main-ash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/wx-main-ash.h -------------------------------------------------------------------------------- /src/templates/common/wx-main-s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/wx-main-s.cpp -------------------------------------------------------------------------------- /src/templates/common/wx-main-sh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/wx-main-sh.cpp -------------------------------------------------------------------------------- /src/templates/common/wx-main-sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/wx-main-sh.h -------------------------------------------------------------------------------- /src/templates/common/wx_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/wx_pch.h -------------------------------------------------------------------------------- /src/templates/common/wxwidgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/common/wxwidgets.png -------------------------------------------------------------------------------- /src/templates/unix/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/unix/Makefile.am -------------------------------------------------------------------------------- /src/templates/unix/glfw-static.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/unix/glfw-static.cbp -------------------------------------------------------------------------------- /src/templates/unix/irr_linux.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/unix/irr_linux.cbp -------------------------------------------------------------------------------- /src/templates/unix/irrlicht.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/unix/irrlicht.template -------------------------------------------------------------------------------- /src/templates/unix/ogre.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/unix/ogre.template -------------------------------------------------------------------------------- /src/templates/unix/ogre_linux.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/unix/ogre_linux.cbp -------------------------------------------------------------------------------- /src/templates/unix/sdlapp.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/unix/sdlapp.cbp -------------------------------------------------------------------------------- /src/templates/unix/wxwidgets.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/unix/wxwidgets.cbp -------------------------------------------------------------------------------- /src/templates/win32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/Makefile.am -------------------------------------------------------------------------------- /src/templates/win32/SmartWin.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/SmartWin.cbp -------------------------------------------------------------------------------- /src/templates/win32/SmartWin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/SmartWin.png -------------------------------------------------------------------------------- /src/templates/win32/directx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/directx.png -------------------------------------------------------------------------------- /src/templates/win32/directx.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/directx.template -------------------------------------------------------------------------------- /src/templates/win32/directx_gcc.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/directx_gcc.cbp -------------------------------------------------------------------------------- /src/templates/win32/directx_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/directx_main.cpp -------------------------------------------------------------------------------- /src/templates/win32/directx_vctk.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/directx_vctk.cbp -------------------------------------------------------------------------------- /src/templates/win32/dll-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/dll-main.cpp -------------------------------------------------------------------------------- /src/templates/win32/dll.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/dll.cbp -------------------------------------------------------------------------------- /src/templates/win32/dll.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/dll.template -------------------------------------------------------------------------------- /src/templates/win32/fltk-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/fltk-main.cpp -------------------------------------------------------------------------------- /src/templates/win32/fltk.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/fltk.cbp -------------------------------------------------------------------------------- /src/templates/win32/fltk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/fltk.png -------------------------------------------------------------------------------- /src/templates/win32/fltk.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/fltk.template -------------------------------------------------------------------------------- /src/templates/win32/fluid-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/fluid-main.cpp -------------------------------------------------------------------------------- /src/templates/win32/fluid-main_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/fluid-main_ui.h -------------------------------------------------------------------------------- /src/templates/win32/fluid.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/fluid.cbp -------------------------------------------------------------------------------- /src/templates/win32/fluid.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/fluid.template -------------------------------------------------------------------------------- /src/templates/win32/glfw-static.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/glfw-static.cbp -------------------------------------------------------------------------------- /src/templates/win32/glut.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/glut.cbp -------------------------------------------------------------------------------- /src/templates/win32/glut.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/glut.template -------------------------------------------------------------------------------- /src/templates/win32/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/gui.png -------------------------------------------------------------------------------- /src/templates/win32/irr_gcc.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/irr_gcc.cbp -------------------------------------------------------------------------------- /src/templates/win32/irr_vctk.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/irr_vctk.cbp -------------------------------------------------------------------------------- /src/templates/win32/ogre.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/ogre.template -------------------------------------------------------------------------------- /src/templates/win32/ogre_gcc.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/ogre_gcc.cbp -------------------------------------------------------------------------------- /src/templates/win32/ogre_vctk.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/ogre_vctk.cbp -------------------------------------------------------------------------------- /src/templates/win32/opengl-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/opengl-main.cpp -------------------------------------------------------------------------------- /src/templates/win32/opengl.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/opengl.cbp -------------------------------------------------------------------------------- /src/templates/win32/opengl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/opengl.png -------------------------------------------------------------------------------- /src/templates/win32/opengl.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/opengl.template -------------------------------------------------------------------------------- /src/templates/win32/sdlapp.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/sdlapp.cbp -------------------------------------------------------------------------------- /src/templates/win32/win32-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/win32-main.cpp -------------------------------------------------------------------------------- /src/templates/win32/win32.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/win32.cbp -------------------------------------------------------------------------------- /src/templates/win32/wxwidgets.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/wxwidgets.cbp -------------------------------------------------------------------------------- /src/templates/win32/wxwidgets_u.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/templates/win32/wxwidgets_u.cbp -------------------------------------------------------------------------------- /src/tips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tips.txt -------------------------------------------------------------------------------- /src/tools/Addr2LineUI/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/Addr2LineUI/resource.rc -------------------------------------------------------------------------------- /src/tools/CBLauncher/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/CBLauncher/Makefile.am -------------------------------------------------------------------------------- /src/tools/CBLauncher/doc/CBicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/CBLauncher/doc/CBicon.png -------------------------------------------------------------------------------- /src/tools/CBLauncher/doc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/CBLauncher/doc/README.txt -------------------------------------------------------------------------------- /src/tools/CBLauncher/doc/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/CBLauncher/doc/doxyfile -------------------------------------------------------------------------------- /src/tools/CBLauncher/doc/gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/CBLauncher/doc/gpl-3.0.txt -------------------------------------------------------------------------------- /src/tools/CBLauncher/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/CBLauncher/icon.rc -------------------------------------------------------------------------------- /src/tools/CBLauncher/icons/hires.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/CBLauncher/icons/hires.ico -------------------------------------------------------------------------------- /src/tools/CBLauncher/icons/lores.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/CBLauncher/icons/lores.ico -------------------------------------------------------------------------------- /src/tools/CBLauncher/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/CBLauncher/launcher.cpp -------------------------------------------------------------------------------- /src/tools/CBLauncher/mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/CBLauncher/mainpage.h -------------------------------------------------------------------------------- /src/tools/ConsoleRunner/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/ConsoleRunner/Makefile.am -------------------------------------------------------------------------------- /src/tools/ConsoleRunner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/ConsoleRunner/main.cpp -------------------------------------------------------------------------------- /src/tools/Jing/jing-20150407.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/Jing/jing-20150407.bat -------------------------------------------------------------------------------- /src/tools/Jing/jing-20150407.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/Jing/jing-20150407.jar -------------------------------------------------------------------------------- /src/tools/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = cb_share_config ConsoleRunner CBLauncher 2 | 3 | EXTRA_DIST = Addr2LineUI 4 | -------------------------------------------------------------------------------- /src/tools/cb_share_config/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cb_share_config/app.cpp -------------------------------------------------------------------------------- /src/tools/cb_share_config/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cb_share_config/app.h -------------------------------------------------------------------------------- /src/tools/cbp2make/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/COPYING -------------------------------------------------------------------------------- /src/tools/cbp2make/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/Doxyfile -------------------------------------------------------------------------------- /src/tools/cbp2make/cbp2make.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/cbp2make.cfg -------------------------------------------------------------------------------- /src/tools/cbp2make/cbp2make_wx31.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/cbp2make_wx31.cbp -------------------------------------------------------------------------------- /src/tools/cbp2make/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/changelog.txt -------------------------------------------------------------------------------- /src/tools/cbp2make/lib/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/lib/macros.h -------------------------------------------------------------------------------- /src/tools/cbp2make/lib/stlconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/lib/stlconfig.cpp -------------------------------------------------------------------------------- /src/tools/cbp2make/lib/stlconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/lib/stlconfig.h -------------------------------------------------------------------------------- /src/tools/cbp2make/lib/stlconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/lib/stlconvert.h -------------------------------------------------------------------------------- /src/tools/cbp2make/lib/stlfutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/lib/stlfutils.cpp -------------------------------------------------------------------------------- /src/tools/cbp2make/lib/stlfutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/lib/stlfutils.h -------------------------------------------------------------------------------- /src/tools/cbp2make/lib/stlgpm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/lib/stlgpm.cpp -------------------------------------------------------------------------------- /src/tools/cbp2make/lib/stlgpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/lib/stlgpm.h -------------------------------------------------------------------------------- /src/tools/cbp2make/lib/stlstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/lib/stlstrings.h -------------------------------------------------------------------------------- /src/tools/cbp2make/lib/stringhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/lib/stringhash.h -------------------------------------------------------------------------------- /src/tools/cbp2make/res/cbp2make.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/res/cbp2make.png -------------------------------------------------------------------------------- /src/tools/cbp2make/res/cbp2make.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/res/cbp2make.svg -------------------------------------------------------------------------------- /src/tools/cbp2make/src/buildtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/buildtools.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbbuildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbbuildcfg.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbbuildmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbbuildmgr.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbglobalvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbglobalvar.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbhelper.cpp -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbhelper.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbp2make.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbp2make.cpp -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbproject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbproject.cpp -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbproject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbproject.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbptarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbptarget.cpp -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbptarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbptarget.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbpunit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbpunit.cpp -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbpunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbpunit.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/cbworkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/cbworkspace.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/depsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/depsearch.cpp -------------------------------------------------------------------------------- /src/tools/cbp2make/src/depsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/depsearch.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/doc/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/doc/usage.txt -------------------------------------------------------------------------------- /src/tools/cbp2make/src/makefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/makefile.cpp -------------------------------------------------------------------------------- /src/tools/cbp2make/src/makefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/makefile.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/platforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/platforms.cpp -------------------------------------------------------------------------------- /src/tools/cbp2make/src/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/platforms.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/revision.h -------------------------------------------------------------------------------- /src/tools/cbp2make/src/toolchains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/src/toolchains.h -------------------------------------------------------------------------------- /src/tools/cbp2make/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/usage.txt -------------------------------------------------------------------------------- /src/tools/cbp2make/wx-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/tools/cbp2make/wx-config.sh -------------------------------------------------------------------------------- /src/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/update -------------------------------------------------------------------------------- /src/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/update.bat -------------------------------------------------------------------------------- /src/update30: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./update 30 3 | -------------------------------------------------------------------------------- /src/update31.bat: -------------------------------------------------------------------------------- 1 | @call update.bat 31 2 | -------------------------------------------------------------------------------- /src/update31_64.bat: -------------------------------------------------------------------------------- 1 | @call update.bat 31_64 2 | -------------------------------------------------------------------------------- /src/wxsmith/BuildTargetPanel.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/wxsmith/BuildTargetPanel.wxs -------------------------------------------------------------------------------- /src/wxsmith/CCDebugInfo.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/wxsmith/CCDebugInfo.wxs -------------------------------------------------------------------------------- /src/wxsmith/CompilerPanel.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/wxsmith/CompilerPanel.wxs -------------------------------------------------------------------------------- /src/wxsmith/EmbeddedHtmlPanel.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/wxsmith/EmbeddedHtmlPanel.wxs -------------------------------------------------------------------------------- /src/wxsmith/FilePathPanel.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/wxsmith/FilePathPanel.wxs -------------------------------------------------------------------------------- /src/wxsmith/GenericSelectPath.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/wxsmith/GenericSelectPath.wxs -------------------------------------------------------------------------------- /src/wxsmith/InfoPanel.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/wxsmith/InfoPanel.wxs -------------------------------------------------------------------------------- /src/wxsmith/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = $(srcdir)/*.wxs 2 | -------------------------------------------------------------------------------- /src/wxsmith/ProjectPathPanel.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/wxsmith/ProjectPathPanel.wxs -------------------------------------------------------------------------------- /src/wxsmith/ScriptConsole.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/wxsmith/ScriptConsole.wxs -------------------------------------------------------------------------------- /src/wxsmith/databreakpointdlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/wxsmith/databreakpointdlg.wxs -------------------------------------------------------------------------------- /src/wxsmith/debuggersettingsdlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/wxsmith/debuggersettingsdlg.wxs -------------------------------------------------------------------------------- /src/wxsmith/goto_file.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/src/wxsmith/goto_file.wxs -------------------------------------------------------------------------------- /updateChangeLog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/updateChangeLog.sh -------------------------------------------------------------------------------- /update_revision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obfuscated/codeblocks_sf/HEAD/update_revision.sh --------------------------------------------------------------------------------