├── .clang-format ├── .clangd ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── Bug.yml │ └── Feature.yml ├── stale.yml └── workflows │ ├── macos.yml │ ├── msys2.yml │ └── ubuntu.yml ├── .gitignore ├── .gitmodules ├── .luarc.json ├── AUTHORS ├── AutoSave ├── AutoSaveDlg.cpp ├── AutoSaveDlg.h ├── AutoSaveSettings.cpp ├── AutoSaveSettings.h ├── AutoSaveUI.cpp ├── AutoSaveUI.h ├── AutoSaveUI.wxcp ├── AutoSaveUI_autosave_bitmaps.cpp ├── CMakeLists.txt ├── autosave.cpp └── autosave.h ├── BuildInfo.txt ├── CMakeLists.txt ├── CMakePlugin ├── CMake.cpp ├── CMake.h ├── CMakeBuilder.cpp ├── CMakeBuilder.h ├── CMakeConfiguration.h ├── CMakeGenerator.cpp ├── CMakeGenerator.h ├── CMakeHelpTab.cpp ├── CMakeHelpTab.h ├── CMakeLists.txt ├── CMakePlugin.cpp ├── CMakePlugin.h ├── CMakePlugin.wxcp ├── CMakePluginUi.cpp ├── CMakePluginUi.h ├── CMakePluginUi_bitmaps.cpp ├── CMakeProjectSettings.h ├── CMakeSettingsDialog.cpp ├── CMakeSettingsDialog.h ├── CMakeSettingsManager.cpp ├── CMakeSettingsManager.h ├── LICENSE ├── README.md ├── cmake-16.png └── cmake-24.png ├── COPYING ├── CallGraph ├── CMakeLists.txt ├── callgraph.cpp ├── callgraph.h ├── confcallgraph.cpp ├── confcallgraph.h ├── dotwriter.cpp ├── dotwriter.h ├── gprofparser.cpp ├── gprofparser.h ├── lineparser.cpp ├── lineparser.h ├── static.cpp ├── static.h ├── uicallgraph.cpp ├── uicallgraph.fbp ├── uicallgraph.h ├── uicallgraphpanel.cpp ├── uicallgraphpanel.h ├── uisettings.cpp ├── uisettings.fbp ├── uisettings.h ├── uisettingsdlg.cpp └── uisettingsdlg.h ├── CodeFormatter ├── CMakeLists.txt ├── CodeFormatterManager.cpp ├── CodeFormatterManager.hpp ├── FormatterPage.cpp ├── FormatterPage.hpp ├── GenericFormatter.cpp ├── GenericFormatter.hpp ├── PHPFormatterBuffer.cpp ├── PHPFormatterBuffer.h ├── SourceFormatterBase.cpp ├── SourceFormatterBase.hpp ├── astyle.png ├── clang.png ├── codeformatter.cpp ├── codeformatter.h ├── codeformatterdlg.cpp ├── codeformatterdlg.h ├── codeformatterdlg.wxcp ├── codeformatterdlg_codeformatter_bitmaps.cpp ├── codeformatterdlgbase.cpp ├── codeformatterdlgbase.h ├── codeformatterdll.def ├── fmtBlack.cpp ├── fmtBlack.hpp ├── fmtCMakeFormat.cpp ├── fmtCMakeFormat.hpp ├── fmtClangFormat.cpp ├── fmtClangFormat.hpp ├── fmtJQ.cpp ├── fmtJQ.hpp ├── fmtPHPCBF.cpp ├── fmtPHPCBF.hpp ├── fmtPHPCSFixer.cpp ├── fmtPHPCSFixer.hpp ├── fmtRustfmt.cpp ├── fmtRustfmt.hpp ├── fmtShfmtFormat.cpp ├── fmtShfmtFormat.hpp ├── fmtXmlLint.cpp ├── fmtXmlLint.hpp ├── fmtYQ.cpp └── fmtYQ.hpp ├── CodeLite ├── AsyncProcess │ ├── ChildProcess.cpp │ ├── ChildProcess.h │ ├── TerminalEmulator.cpp │ ├── TerminalEmulator.h │ ├── TerminalEmulatorFrame.cpp │ ├── TerminalEmulatorFrame.h │ ├── TerminalEmulatorUI.cpp │ ├── TerminalEmulatorUI.h │ ├── TerminalEmulatorUI.wxcp │ ├── TerminalEmulatorUIBase.cpp │ ├── TerminalEmulatorUIBase.h │ ├── TerminalEmulatorUI_codelite_bitmaps.cpp │ ├── UnixProcess.cpp │ ├── UnixProcess.h │ ├── ZombieReaperPOSIX.cpp │ ├── ZombieReaperPOSIX.h │ ├── asyncprocess.cpp │ ├── asyncprocess.h │ ├── clCommandProcessor.cpp │ ├── clCommandProcessor.h │ ├── processreaderthread.cpp │ ├── processreaderthread.h │ ├── unixprocess_impl.cpp │ ├── unixprocess_impl.h │ ├── winprocess_impl.cpp │ └── winprocess_impl.h ├── BlockTimer.hpp ├── BreakpointInfoArray.cpp ├── BreakpointInfoArray.hpp ├── CMakeLists.txt ├── CTags.cpp ├── CTags.hpp ├── CompletionHelper.cpp ├── CompletionHelper.hpp ├── Console │ ├── clConsoleAlacritty.cpp │ ├── clConsoleAlacritty.hpp │ ├── clConsoleBase.cpp │ ├── clConsoleBase.h │ ├── clConsoleBash.cpp │ ├── clConsoleBash.h │ ├── clConsoleCMD.cpp │ ├── clConsoleCMD.h │ ├── clConsoleGnomeTerminal.cpp │ ├── clConsoleGnomeTerminal.h │ ├── clConsoleKitty.cpp │ ├── clConsoleKitty.hpp │ ├── clConsoleKonsole.cpp │ ├── clConsoleKonsole.h │ ├── clConsoleLXTerminal.cpp │ ├── clConsoleLXTerminal.h │ ├── clConsoleMateTerminal.cpp │ ├── clConsoleMateTerminal.h │ ├── clConsoleOSXTerminal.cpp │ ├── clConsoleOSXTerminal.h │ ├── clConsoleQTerminal.cpp │ ├── clConsoleQTerminal.h │ ├── clConsoleRXVTerminal.cpp │ ├── clConsoleRXVTerminal.h │ ├── clConsoleXfce4Terminal.cpp │ └── clConsoleXfce4Terminal.h ├── Cxx │ ├── CxxCodeCompletion.cpp │ ├── CxxCodeCompletion.hpp │ ├── CxxExpression.cpp │ ├── CxxExpression.hpp │ ├── CxxLexerAPI.cpp │ ├── CxxLexerAPI.h │ ├── CxxPreProcessor.cpp │ ├── CxxPreProcessor.h │ ├── CxxPreProcessorExpression.cpp │ ├── CxxPreProcessorExpression.h │ ├── CxxPreProcessorScanner.cpp │ ├── CxxPreProcessorScanner.h │ ├── CxxScanner.l │ ├── CxxScannerTokens.h │ ├── CxxTemplateFunction.cpp │ ├── CxxTemplateFunction.h │ ├── CxxTokenizer.cpp │ ├── CxxTokenizer.h │ ├── CxxVariable.cpp │ ├── CxxVariable.h │ ├── CxxVariableScanner.cpp │ ├── CxxVariableScanner.h │ ├── FlexLexer.h │ ├── cpp5.l │ ├── cpp_comment_creator.cpp │ ├── cpp_comment_creator.h │ ├── cpp_scanner.cpp │ ├── cpp_scanner.h │ ├── cpptoken.cpp │ ├── cpptoken.h │ ├── cppwordscanner.cpp │ ├── cppwordscanner.h │ ├── include_finder.h │ ├── include_finder.l │ ├── lex.yy.cpp │ └── y.tab.h ├── DoxySMain.page ├── FontUtils.cpp ├── FontUtils.hpp ├── JSON.cpp ├── JSON.h ├── LSP │ ├── CodeActionRequest.cpp │ ├── CodeActionRequest.hpp │ ├── CompletionItem.cpp │ ├── CompletionItem.h │ ├── CompletionRequest.cpp │ ├── CompletionRequest.h │ ├── DidChangeTextDocumentRequest.cpp │ ├── DidChangeTextDocumentRequest.h │ ├── DidCloseTextDocumentRequest.cpp │ ├── DidCloseTextDocumentRequest.h │ ├── DidOpenTextDocumentRequest.cpp │ ├── DidOpenTextDocumentRequest.h │ ├── DidSaveTextDocumentRequest.cpp │ ├── DidSaveTextDocumentRequest.h │ ├── DocumentSymbolsRequest.cpp │ ├── DocumentSymbolsRequest.hpp │ ├── FilePath.cpp │ ├── FilePath.hpp │ ├── FindReferencesRequest.cpp │ ├── FindReferencesRequest.hpp │ ├── GotoDeclarationRequest.cpp │ ├── GotoDeclarationRequest.h │ ├── GotoDefinitionRequest.cpp │ ├── GotoDefinitionRequest.h │ ├── GotoImplementationRequest.cpp │ ├── GotoImplementationRequest.h │ ├── HoverRequest.cpp │ ├── HoverRequest.hpp │ ├── IPathConverter.hpp │ ├── InitializeRequest.cpp │ ├── InitializeRequest.h │ ├── InitializedNotification.cpp │ ├── InitializedNotification.hpp │ ├── JSONObject.cpp │ ├── JSONObject.h │ ├── LSPEvent.cpp │ ├── LSPEvent.h │ ├── Message.cpp │ ├── Message.h │ ├── MessageWithParams.cpp │ ├── MessageWithParams.h │ ├── Notification.cpp │ ├── Notification.h │ ├── RenameRequest.cpp │ ├── RenameRequest.hpp │ ├── Request.cpp │ ├── Request.h │ ├── ResponseError.cpp │ ├── ResponseError.h │ ├── ResponseMessage.cpp │ ├── ResponseMessage.h │ ├── SemanticTokensRequest.cpp │ ├── SemanticTokensRequest.hpp │ ├── SignatureHelpRequest.cpp │ ├── SignatureHelpRequest.h │ ├── WorkspaceExecuteCommand.cpp │ ├── WorkspaceExecuteCommand.hpp │ ├── WorkspaceSymbolRequest.cpp │ ├── WorkspaceSymbolRequest.hpp │ ├── basic_types.cpp │ ├── basic_types.h │ ├── json_rpc_params.cpp │ ├── json_rpc_params.h │ ├── json_rpc_results.cpp │ └── json_rpc_results.h ├── MSWPrivate.h ├── PHP │ ├── PHPDocComment.cpp │ ├── PHPDocComment.h │ ├── PHPDocParam.cpp │ ├── PHPDocParam.h │ ├── PHPDocProperty.cpp │ ├── PHPDocProperty.h │ ├── PHPDocVar.cpp │ ├── PHPDocVar.h │ ├── PHPDocVisitor.cpp │ ├── PHPDocVisitor.h │ ├── PHPEntityBase.cpp │ ├── PHPEntityBase.h │ ├── PHPEntityClass.cpp │ ├── PHPEntityClass.h │ ├── PHPEntityFunction.cpp │ ├── PHPEntityFunction.h │ ├── PHPEntityFunctionAlias.cpp │ ├── PHPEntityFunctionAlias.h │ ├── PHPEntityKeyword.cpp │ ├── PHPEntityKeyword.h │ ├── PHPEntityNamespace.cpp │ ├── PHPEntityNamespace.h │ ├── PHPEntityVariable.cpp │ ├── PHPEntityVariable.h │ ├── PHPEntityVisitor.cpp │ ├── PHPEntityVisitor.h │ ├── PHPExpression.cpp │ ├── PHPExpression.h │ ├── PHPLookupTable.cpp │ ├── PHPLookupTable.h │ ├── PHPScannerTokens.h │ ├── PHPSourceFile.cpp │ ├── PHPSourceFile.h │ ├── PhpLexer.l │ └── PhpLexerAPI.h ├── Platform │ ├── LINUX.cpp │ ├── LINUX.hpp │ ├── MSYS2.cpp │ ├── MSYS2.hpp │ ├── Platform.hpp │ ├── PlatformCommon.cpp │ └── PlatformCommon.hpp ├── SFTPClientData.cpp ├── SFTPClientData.hpp ├── SocketAPI │ ├── clConnectionString.cpp │ ├── clConnectionString.h │ ├── clSocketBase.cpp │ ├── clSocketBase.h │ ├── clSocketClient.cpp │ ├── clSocketClient.h │ ├── clSocketClientAsync.cpp │ ├── clSocketClientAsync.h │ ├── clSocketServer.cpp │ └── clSocketServer.h ├── StdToWX.cpp ├── StdToWX.h ├── StringUtils.cpp ├── StringUtils.h ├── archive.cpp ├── archive.h ├── browse_record.h ├── clAnagram.cpp ├── clAnagram.h ├── clBitset.cpp ├── clBitset.hpp ├── clDebuggerBreakpoint.cpp ├── clDebuggerBreakpoint.hpp ├── clDirChanger.hpp ├── clEditorConfig.cpp ├── clEditorConfig.h ├── clEnvironment.cpp ├── clEnvironment.hpp ├── clFileName.cpp ├── clFileName.hpp ├── clFileSystemEvent.cpp ├── clFileSystemEvent.h ├── clFileSystemWatcher.cpp ├── clFileSystemWatcher.h ├── clFilesCollector.cpp ├── clFilesCollector.h ├── clFontHelper.cpp ├── clFontHelper.h ├── clGotoEntry.cpp ├── clGotoEntry.h ├── clINIParser.cpp ├── clINIParser.hpp ├── clJoinableThread.cpp ├── clJoinableThread.h ├── clModuleLogger.cpp ├── clModuleLogger.hpp ├── clResult.hpp ├── clStringView.cpp ├── clStringView.hpp ├── clTempFile.cpp ├── clTempFile.hpp ├── clVersionString.cpp ├── clVersionString.hpp ├── clWildMatch.cpp ├── clWildMatch.hpp ├── clWorkspaceEvent.cpp ├── clWorkspaceEvent.hpp ├── cl_calltip.cpp ├── cl_calltip.h ├── cl_command_event.cpp ├── cl_command_event.h ├── cl_config.cpp ├── cl_config.h ├── cl_defs.h ├── cl_defs_linux.h ├── cl_defs_macos.h ├── cl_defs_msw.h ├── cl_exception.h ├── cl_process.cpp ├── cl_process.h ├── cl_standard_paths.cpp ├── cl_standard_paths.h ├── clprogressdlgbase.cpp ├── clprogressdlgbase.fbp ├── clprogressdlgbase.h ├── codelite_events.cpp ├── codelite_events.h ├── codelite_exports.h ├── commentconfigdata.cpp ├── commentconfigdata.h ├── compiler_command_line_parser.cpp ├── compiler_command_line_parser.h ├── ctags_manager.cpp ├── ctags_manager.h ├── database │ ├── comment.cpp │ ├── comment.h │ ├── entry.cpp │ ├── entry.h │ ├── fileentry.cpp │ ├── fileentry.h │ ├── istorage.h │ ├── tags_storage_sqlite3.cpp │ └── tags_storage_sqlite3.h ├── dirsaver.h ├── dirtraverser.cpp ├── dirtraverser.h ├── docs │ ├── DoxySfile │ └── build-docs.bat ├── event_notifier.cpp ├── event_notifier.h ├── file_logger.cpp ├── file_logger.h ├── fileextmanager.cpp ├── fileextmanager.h ├── fileutils.cpp ├── fileutils.h ├── json_utils.h ├── language.cpp ├── language.h ├── libcodelite_pch.h ├── libcodelite_pch_dbg.h ├── macros.h ├── performance.cpp ├── performance.h ├── pptable.h ├── precompiled_header.h ├── procutils.cpp ├── procutils.h ├── progress_dialog.cpp ├── progress_dialog.h ├── search_thread.cpp ├── search_thread.h ├── serialized_object.h ├── singleton.h ├── ssh │ ├── clSFTPEvent.cpp │ ├── clSFTPEvent.h │ ├── clSSHAgent.cpp │ ├── clSSHAgent.hpp │ ├── clSSHChannel.cpp │ ├── clSSHChannel.hpp │ ├── clSSHChannelCommon.cpp │ ├── clSSHChannelCommon.hpp │ ├── clSSHInteractiveChannel.cpp │ ├── clSSHInteractiveChannel.hpp │ ├── cl_sftp.cpp │ ├── cl_sftp.h │ ├── cl_sftp_attribute.cpp │ ├── cl_sftp_attribute.h │ ├── cl_ssh.cpp │ ├── cl_ssh.h │ ├── ssh_account_info.cpp │ └── ssh_account_info.h ├── stringaccessor.cpp ├── stringaccessor.h ├── tag_tree.cpp ├── tag_tree.h ├── tags_options_data.cpp ├── tags_options_data.h ├── tokenizer.cpp ├── tokenizer.h ├── tree.h ├── tree_node.h ├── winprocess.cpp ├── winprocess.h ├── worker_thread.cpp ├── worker_thread.h ├── wxCodeCompletionBoxEntry.hpp ├── wxStringHash.h ├── wx_ordered_map.h ├── xmlutils.cpp ├── xmlutils.h ├── xor_string.cpp └── xor_string.h ├── CodeLiteDiff ├── CMakeLists.txt ├── CodeLiteDiff_UI.cpp ├── CodeLiteDiff_UI.h ├── CodeLiteDiff_UI.wxcp ├── CodeLiteDiff_UI_codelitediff_bitmaps.cpp ├── NewFileComparison.cpp ├── NewFileComparison.h ├── codelitediff.cpp └── codelitediff.h ├── CodeLiteIDE-Linux.workspace ├── CodeLiteIDE-MSW.workspace ├── CodeLiteIDE-macOS.workspace ├── ContinuousBuild ├── CMakeLists.txt ├── buildprocess.cpp ├── buildprocess.h ├── continuousbuild.cpp ├── continuousbuild.h ├── continuousbuildbasepane.cpp ├── continuousbuildbasepane.h ├── continuousbuildbasepane.wxcp ├── continuousbuildbasepane_continuousbuild_bitmaps.cpp ├── continuousbuildconf.cpp ├── continuousbuildconf.h ├── continuousbuildpane.cpp └── continuousbuildpane.h ├── Copyright ├── CMakeLists.txt ├── copyright.cpp ├── copyright.h ├── copyrights_options_base_dlg.cpp ├── copyrights_options_base_dlg.h ├── copyrights_options_dlg.cpp ├── copyrights_options_dlg.h ├── copyrights_proj_sel_base_dlg.cpp ├── copyrights_proj_sel_base_dlg.h ├── copyrights_proj_sel_dlg.cpp ├── copyrights_proj_sel_dlg.h ├── copyrightsconfigdata.cpp └── copyrightsconfigdata.h ├── CxxParser ├── CMakeLists.txt ├── Debug │ └── test.h ├── TODO.TXT ├── cl_typedef.h ├── code_completion_api.h ├── cpp.l ├── cpp5_grammar.y.full ├── cpp_func_parser.y ├── cpp_scope_grammar.y ├── cpp_variables_grammar.y ├── expr_grammar.y ├── expr_lexer.l ├── expression_result.cpp ├── expression_result.h ├── function.cpp ├── function.h ├── main.cpp ├── typedef_grammar.y ├── variable.cpp └── variable.h ├── CxxParserTests ├── CMakeLists.txt ├── main.cpp ├── tester.cpp └── tester.h ├── DESC ├── DatabaseExplorer ├── CMakeLists.txt ├── ClassGenerateDialog.cpp ├── ClassGenerateDialog.h ├── DbExplorerFrame.cpp ├── DbExplorerFrame.h ├── DbSettingDialog.cpp ├── DbSettingDialog.h ├── DbViewerPanel.cpp ├── DbViewerPanel.h ├── GUI.cpp ├── GUI.h ├── GUI.wxcp ├── GUI_databaseexplorer_bitmaps.cpp ├── IDbAdapter.h ├── IDbItem.cpp ├── IDbItem.h ├── IDbType.h ├── LogDialog.cpp ├── LogDialog.h ├── MySqlDbAdapter.cpp ├── MySqlDbAdapter.h ├── MySqlType.cpp ├── MySqlType.h ├── PostgreSqlDbAdapter.cpp ├── PostgreSqlDbAdapter.h ├── PostgreSqlType.cpp ├── PostgreSqlType.h ├── SqlCommandPanel.cpp ├── SqlCommandPanel.h ├── SqliteDbAdapter.cpp ├── SqliteDbAdapter.h ├── SqliteType.cpp ├── SqliteType.h ├── TODO_tasks.txt ├── column.cpp ├── column.h ├── constraint.cpp ├── constraint.h ├── database.cpp ├── database.h ├── databaseexplorer.cpp ├── databaseexplorer.h ├── db_explorer_settings.cpp ├── db_explorer_settings.h ├── dbconnection.cpp ├── dbconnection.h ├── dbitem.cpp ├── dbitem.h ├── dumpclass.cpp ├── dumpclass.h ├── res │ ├── add.png │ ├── delete.png │ ├── elements │ │ ├── Bound.xpm │ │ └── Tool.xpm │ ├── gui │ │ ├── AlignBottom.xpm │ │ ├── AlignCenter.xpm │ │ ├── AlignCircle.xpm │ │ ├── AlignHTree.xpm │ │ ├── AlignLeft.xpm │ │ ├── AlignMesh.xpm │ │ ├── AlignMiddle.xpm │ │ ├── AlignRight.xpm │ │ ├── AlignTop.xpm │ │ ├── AlignVTree.xpm │ │ ├── GenAll.xpm │ │ ├── Grid.xpm │ │ ├── GridView.xpm │ │ ├── Preview.xpm │ │ ├── Zoom100.xpm │ │ ├── Zoom100Dis.xpm │ │ ├── ZoomAll.xpm │ │ ├── ZoomAllDis.xpm │ │ ├── actionrun.png │ │ ├── collapse.xpm │ │ ├── configure.png │ │ ├── copy.xpm │ │ ├── cut.xpm │ │ ├── database.png │ │ ├── database.xpm │ │ ├── delete.xpm │ │ ├── editcopy.png │ │ ├── editcopy.xpm │ │ ├── editcut.png │ │ ├── editcut.xpm │ │ ├── editpaste.png │ │ ├── editpaste.xpm │ │ ├── exit.png │ │ ├── export-db.xpm │ │ ├── export-icon.png │ │ ├── export-img.xpm │ │ ├── export-sql.xpm │ │ ├── filenew.png │ │ ├── fileopen.png │ │ ├── fileopen.xpm │ │ ├── filepreview.png │ │ ├── filepreview.xpm │ │ ├── fileprint.png │ │ ├── fileprint.xpm │ │ ├── filesave.png │ │ ├── filesave.xpm │ │ ├── filesaveas.xpm │ │ ├── filesavesql.xpm │ │ ├── folder.xpm │ │ ├── form_blue.xpm │ │ ├── form_yellow.xpm │ │ ├── helpindex.png │ │ ├── key-f.xpm │ │ ├── key-p.xpm │ │ ├── link_editor.xpm │ │ ├── new.xpm │ │ ├── organisation.png │ │ ├── paste.xpm │ │ ├── quit.xpm │ │ ├── redo.png │ │ ├── redo.xpm │ │ ├── refresh.png │ │ ├── refresh.xpm │ │ ├── spellcheck.png │ │ ├── throbber.gif │ │ ├── undo.png │ │ ├── undo.xpm │ │ ├── wiztest.xpm │ │ └── wx.xpm │ ├── history.png │ ├── move-down.png │ └── move-up.png ├── table.cpp ├── table.h ├── view.cpp └── view.h ├── DebugAdapterClient ├── BreakpointsHelper.cpp ├── BreakpointsHelper.hpp ├── CMakeLists.txt ├── DAPBreakpointsView.cpp ├── DAPBreakpointsView.h ├── DAPConsoleOutput.cpp ├── DAPConsoleOutput.hpp ├── DAPDebuggerPane.cpp ├── DAPDebuggerPane.h ├── DAPMainView.cpp ├── DAPMainView.h ├── DAPModuleView.cpp ├── DAPModuleView.h ├── DAPOutputPane.cpp ├── DAPOutputPane.hpp ├── DAPTerminalCtrlView.cpp ├── DAPTerminalCtrlView.h ├── DAPTextView.cpp ├── DAPTextView.h ├── DAPTooltip.cpp ├── DAPTooltip.hpp ├── DAPVariableListCtrl.cpp ├── DAPVariableListCtrl.hpp ├── DAPWatchesView.cpp ├── DAPWatchesView.h ├── DapDebuggerSettingsDlg.cpp ├── DapDebuggerSettingsDlg.h ├── DapLocator.cpp ├── DapLocator.hpp ├── DapLoggingHelper.hpp ├── DapSettingsPage.cpp ├── DapSettingsPage.hpp ├── DebugAdapterClient.cpp ├── DebugAdapterClient.hpp ├── DebugSession.hpp ├── RunInTerminalHelper.cpp ├── RunInTerminalHelper.hpp ├── SessionBreakpoints.cpp ├── SessionBreakpoints.hpp ├── StdioTransport.cpp ├── StdioTransport.hpp ├── UI.cpp ├── UI.h ├── UI.wxcp ├── UI_lldbdebugger_bitmaps.cpp ├── clDapSettingsStore.cpp └── clDapSettingsStore.hpp ├── Debugger ├── CMakeLists.txt ├── dbgcmd.cpp ├── dbgcmd.h ├── debuggerdll.def ├── debuggergdb.cpp ├── debuggergdb.h ├── dirkeeper.h ├── gdbmi.cpp ├── gdbmi.hpp ├── gdbmi_parse_thread_info.cpp └── gdbmi_parse_thread_info.h ├── Docker ├── CMakeLists.txt ├── DockerOutputPane.cpp ├── DockerOutputPane.h ├── DockerSettingsDlg.cpp ├── DockerSettingsDlg.h ├── DockerfileSettingsDlg.cpp ├── DockerfileSettingsDlg.h ├── NewDockerWorkspaceDlg.cpp ├── NewDockerWorkspaceDlg.h ├── UI.cpp ├── UI.h ├── UI.wxcp ├── UI_docker_bitmaps.cpp ├── clDockerBuildableFile.cpp ├── clDockerBuildableFile.h ├── clDockerComposeFile.cpp ├── clDockerComposeFile.h ├── clDockerContainer.cpp ├── clDockerContainer.h ├── clDockerDriver.cpp ├── clDockerDriver.h ├── clDockerEvents.cpp ├── clDockerEvents.h ├── clDockerImage.cpp ├── clDockerImage.h ├── clDockerSettings.cpp ├── clDockerSettings.h ├── clDockerWorkspace.cpp ├── clDockerWorkspace.h ├── clDockerWorkspaceSettings.cpp ├── clDockerWorkspaceSettings.h ├── clDockerWorkspaceView.cpp ├── clDockerWorkspaceView.h ├── clDockerfile.cpp ├── clDockerfile.h ├── docker.cpp └── docker.h ├── EOSWiki ├── CMakeLists.txt ├── EOSProjectData.cpp ├── EOSProjectData.h ├── EOSProjectWizard.cpp ├── EOSProjectWizard.h ├── SmartContractSample.txt ├── eosUI.cpp ├── eosUI.h ├── eosUI.wxcp ├── eosUI_eoswiki_bitmaps.cpp ├── eoswiki.cpp ├── eoswiki.h └── resources │ ├── CMakeLists.txt │ ├── SmartContractSample.txt │ └── eoswiki.zip ├── EditorConfigPlugin ├── CMakeLists.txt ├── EditorConfigCache.cpp ├── EditorConfigCache.h ├── EditorConfigSettings.cpp ├── EditorConfigSettings.h ├── EditorConfigSettingsDlg.cpp ├── EditorConfigSettingsDlg.h ├── EditorConfigUI.cpp ├── EditorConfigUI.h ├── EditorConfigUI.wxcp ├── EditorConfigUI_editorconfigplugin_bitmaps.cpp ├── editorconfigplugin.cpp └── editorconfigplugin.h ├── ExternalTools ├── CMakeLists.txt ├── ExternalToolsManager.cpp ├── ExternalToolsManager.h ├── ExternalToolsProcessManager.cpp ├── ExternalToolsProcessManager.h ├── NewToolBase.cpp ├── NewToolBase.h ├── NewToolBase_formbuilder_bitmaps.cpp ├── external_tools.cpp ├── external_tools.h ├── external_tools_formbuilder_bitmaps.cpp ├── externaltooldlg.cpp ├── externaltooldlg.h ├── externaltools.cpp ├── externaltools.h ├── externaltoolsdata.cpp ├── externaltoolsdata.h ├── newtooldlg.cpp └── newtooldlg.h ├── Gizmos ├── CMakeLists.txt ├── PluginWizard.cpp ├── PluginWizard.h ├── gizmos.cpp ├── gizmos.h ├── gizmos.wxcp ├── gizmos_base.cpp ├── gizmos_base.h ├── gizmos_gizmos_bitmaps.cpp ├── new_class.png ├── new_class_dlg_data.cpp ├── new_class_dlg_data.h ├── newclassbasedlg.cpp ├── newclassbasedlg.h ├── newclassdlg.cpp ├── newclassdlg.h ├── newclasswizard.wxcp ├── newclasswizard_gizmos_bitmaps.cpp ├── newplugindata.cpp ├── newplugindata.h ├── newwxprojectbasedlg.cpp ├── newwxprojectbasedlg.h ├── newwxprojectdlg.cpp ├── newwxprojectdlg.h ├── newwxprojectinfo.cpp ├── newwxprojectinfo.h └── plugin.png ├── HelpPlugin ├── CMakeLists.txt ├── HelpPluginMessageDlg.cpp ├── HelpPluginMessageDlg.h ├── HelpPluginSettings.cpp ├── HelpPluginSettings.h ├── HelpPluginSettingsDlg.cpp ├── HelpPluginSettingsDlg.h ├── HelpPluginUI.cpp ├── HelpPluginUI.h ├── HelpPluginUI.wxcp ├── HelpPluginUI_helpplugin_bitmaps.cpp ├── error-64.png ├── helpplugin.cpp └── helpplugin.h ├── InnoSetup ├── box_software.ico ├── codelite64_mingw.iss.in └── modpath.iss ├── Interfaces ├── IWorkspace.h ├── debugger.h ├── debuggerobserver.h ├── iconfigtool.h ├── ieditor.h ├── imanager.h ├── plugin.h └── plugin_version.h ├── LICENSE ├── LanguageServer ├── CMakeLists.txt ├── codelite-lsp │ ├── codelite-lsp-helper │ └── codelite-lsp.workspace ├── languageserver.cpp └── languageserver.h ├── LiteEditor ├── AboutDlg.wxcp ├── AboutDlg_bitmaps.cpp ├── AccelTableBaseDlg.cpp ├── AccelTableBaseDlg.h ├── AccelTableBaseDlg.wxcp ├── AccelTableBaseDlg_liteeditor_bitmaps.cpp ├── AddFunctionsImpDlg.cpp ├── AddFunctionsImpDlg.h ├── AddOptionsDialog.cpp ├── AddOptionsDialog.h ├── AddOptionsDialogBase.cpp ├── AddOptionsDialogBase.h ├── AddOptionsDialogBase.wxcp ├── AddOptionsDialogBase_liteeditor_bitmaps.cpp ├── AttachDbgProcBaseDlg.wxcp ├── AttachDbgProcBaseDlg_liteeditor_bitmaps.cpp ├── BreakpointsView.cpp ├── BreakpointsView.hpp ├── BuildOrderDialog.cpp ├── BuildOrderDialog.h ├── BuildTab.cpp ├── BuildTab.hpp ├── BuildTabSettings.wxcp ├── BuildTabView.cpp ├── BuildTabView.hpp ├── CMakeLists.txt ├── CodeLiteUpgradeFrame.wxcp ├── CodeLiteUpgradeFrameBase.cpp ├── CodeLiteUpgradeFrameBase.h ├── CodeLiteUpgradeFrame_liteeditor_bitmaps.cpp ├── CompilerMainPage.cpp ├── CompilerMainPage.h ├── CompilersFoundDlg.cpp ├── CompilersFoundDlg.h ├── CompilersFoundDlg.wxcp ├── CompilersFoundDlgBase.cpp ├── CompilersFoundDlgBase.h ├── CompilersFoundDlg_liteeditor_bitmaps.cpp ├── CompilersModifiedDlg.cpp ├── CompilersModifiedDlg.h ├── ConfigManagerBaseDlg.cpp ├── ConfigManagerBaseDlg.h ├── ConfigManagerBaseDlg.wxcp ├── ConfigManagerBaseDlg_liteeditor_bitmaps.cpp ├── ContextJavaScript.cpp ├── ContextJavaScript.h ├── ContextPhp.cpp ├── ContextPhp.h ├── ContextPython.cpp ├── ContextPython.hpp ├── ContextRust.cpp ├── ContextRust.hpp ├── CopyCompilerSettingsDlg.cpp ├── CopyCompilerSettingsDlg.h ├── DbgCommandBaseDlg.cpp ├── DbgCommandBaseDlg.h ├── DbgCommandBaseDlg.wxcp ├── DbgCommandBaseDlg_liteeditor_bitmaps.cpp ├── DebuggerCallstackView.cpp ├── DebuggerCallstackView.h ├── DebuggerDisassemblyTab.cpp ├── DebuggerDisassemblyTab.h ├── DebuggerSettings.wxcp ├── DebuggerSettingsBaseDlg_liteeditor_bitmaps.cpp ├── DebuggerSettings_liteeditor_bitmaps.cpp ├── DefaultWorkspacePage.cpp ├── DefaultWorkspacePage.h ├── EditCmpTemplateDialog.cpp ├── EditCmpTemplateDialog.h ├── EditorOptionsGeneralEdit.cpp ├── EditorOptionsGeneralEdit.h ├── EditorOptionsGeneralGuidesPanel.cpp ├── EditorOptionsGeneralGuidesPanel.h ├── FilesModifiedDlg.cpp ├── FilesModifiedDlg.h ├── FindAndReplaceDialog.cpp ├── FindAndReplaceDialog.h ├── FindInFilesLocationsDlg.cpp ├── FindInFilesLocationsDlg.h ├── ImportFilesDialogNew.cpp ├── ImportFilesDialogNew.h ├── NewCompilerDlg.cpp ├── NewCompilerDlg.h ├── NewFileTemplateDialog.cpp ├── NewFileTemplateDialog.h ├── NewThemeDialog.cpp ├── NewThemeDialog.h ├── NewVirtualFolderDlg.cpp ├── NewVirtualFolderDlg.h ├── OpenFolderDlg.cpp ├── OpenFolderDlg.h ├── OpenWindowsPanelBase.wxcp ├── OpenWindowsPanelBase_liteeditor_bitmaps.cpp ├── OptionsConfigPage.hpp ├── OutputDebugStringThread.cpp ├── OutputDebugStringThread.h ├── ProjectCustomBuildTragetDlg.cpp ├── ProjectCustomBuildTragetDlg.h ├── SecondarySideBar.cpp ├── SecondarySideBar.hpp ├── SelectDropTargetDlg.cpp ├── SelectDropTargetDlg.h ├── SelectProjectsDlg.cpp ├── SelectProjectsDlg.h ├── SideBar.cpp ├── SideBar.hpp ├── SyntaxHighlightBaseDlg.wxcp ├── ThreadListPanelBase.cpp ├── ThreadListPanelBase.h ├── ThreadListPanelBase.wxcp ├── ThreadListPanelBase_liteeditor_bitmaps.cpp ├── WelcomePage.cpp ├── WelcomePage.h ├── acceltabledlg.cpp ├── acceltabledlg.h ├── addoptioncheckdlg.cpp ├── addoptioncheckdlg.h ├── addoptioncheckdlgbase.cpp ├── addoptioncheckdlgbase.h ├── advance_settings.wxcp ├── advance_settings_base.cpp ├── advance_settings_base.h ├── advance_settings_liteeditor_bitmaps.cpp ├── advanced_settings.cpp ├── advanced_settings.h ├── app.cpp ├── app.h ├── assignedfilesmodel.cpp ├── assignedfilesmodel.h ├── attachdbgprocbasedlg.cpp ├── attachdbgprocbasedlg.h ├── attachdbgprocdlg.cpp ├── attachdbgprocdlg.h ├── autoversion.cpp ├── autoversion.h.in ├── batchbuildbasedlg.cpp ├── batchbuildbasedlg.h ├── batchbuilddlg.cpp ├── batchbuilddlg.h ├── breakpoint_dlg_liteeditor_bitmaps.cpp ├── breakpointdlg.wxcp ├── breakpointdlgbase.cpp ├── breakpointdlgbase.h ├── breakpointpropertiesdlg.cpp ├── breakpointpropertiesdlg.h ├── breakpointslistctrl.h ├── breakpointsmgr.cpp ├── breakpointsmgr.h ├── build_custom_targets_menu_manager.cpp ├── build_custom_targets_menu_manager.h ├── buildorderbasepage.cpp ├── buildorderbasepage.h ├── buildsettingstab.cpp ├── buildsettingstab.h ├── buildsettingstab_liteeditor_bitmaps.cpp ├── buildsettingstabbase.cpp ├── buildsettingstabbase.h ├── buildtabsettingsdata.cpp ├── buildtabsettingsdata.h ├── clConfigurationSelectionCtrl.cpp ├── clConfigurationSelectionCtrl.h ├── clDebuggerEditItemDlg.cpp ├── clDebuggerEditItemDlg.h ├── clPrintout.cpp ├── clPrintout.h ├── cl_editor.cpp ├── cl_editor.h ├── cl_unredo.cpp ├── cl_unredo.h ├── close_all_dlg.cpp ├── close_all_dlg.h ├── code_completion_manager.cpp ├── code_completion_manager.h ├── code_completion_page.cpp ├── code_completion_page.h ├── code_parser.rc ├── codelite-logo.ico ├── codelite_pch.h ├── codelite_pch_dbg.h ├── colourrequest.cpp ├── colourrequest.h ├── colourthread.cpp ├── colourthread.h ├── compiler_page.wxcp ├── compiler_page_plugin_bitmaps.cpp ├── compiler_pages.cpp ├── compiler_pages.h ├── compilersfoundmodel.cpp ├── compilersfoundmodel.h ├── configuration_manager_dlg.cpp ├── configuration_manager_dlg.h ├── context_base.cpp ├── context_base.h ├── context_cpp.cpp ├── context_cpp.h ├── context_diff.cpp ├── context_diff.h ├── context_html.cpp ├── context_html.h ├── context_manager.cpp ├── context_manager.h ├── cpp_symbol_tree.cpp ├── cpp_symbol_tree.h ├── dbgcommanddlg.cpp ├── dbgcommanddlg.h ├── debugcoredump.cpp ├── debugcoredump.h ├── debugcoredumpbase.cpp ├── debugcoredumpbase.h ├── debugcoredumpinfo.cpp ├── debugcoredumpinfo.h ├── debugger_predefined_types_page.cpp ├── debugger_predefined_types_page.h ├── debuggerasciiviewer.cpp ├── debuggerasciiviewer.h ├── debuggerasciiviewerbase.cpp ├── debuggerasciiviewerbase.fbp ├── debuggerasciiviewerbase.h ├── debuggerpane.cpp ├── debuggerpane.h ├── debuggersettingsbasedlg.cpp ├── debuggersettingsbasedlg.h ├── debuggersettingsdlg.cpp ├── debuggersettingsdlg.h ├── depend_dlg_page.wxcp ├── depend_dlg_page_liteeditor_bitmaps.cpp ├── dialogspagebase.cpp ├── dialogspagebase.h ├── dvtemplatesmodel.cpp ├── dvtemplatesmodel.h ├── edit_configuration.cpp ├── edit_configuration.h ├── edit_workspace_conf_dlg.cpp ├── edit_workspace_conf_dlg.h ├── editor_options_bookmarks.wxcp ├── editor_options_bookmarks_liteeditor_bitmaps.cpp ├── editor_options_caret.wxcp ├── editor_options_caret_liteeditor_bitmaps.cpp ├── editor_options_comments_doxygen.wxcp ├── editor_options_docking_windows.wxcp ├── editor_options_docking_windows_liteeditor_bitmaps.cpp ├── editor_options_guides.wxcp ├── editoroptionsgeneralindentationpanel.cpp ├── editoroptionsgeneralindentationpanel.h ├── editoroptionsgeneralsavepanel.cpp ├── editoroptionsgeneralsavepanel.h ├── editorsettingsbookmarkspanel.cpp ├── editorsettingsbookmarkspanel.h ├── editorsettingscaret.cpp ├── editorsettingscaret.h ├── editorsettingscomments.cpp ├── editorsettingscomments.h ├── editorsettingsdockingwidows.cpp ├── editorsettingsdockingwidows.h ├── editorsettingsfolding.cpp ├── editorsettingsfolding.h ├── editorsettingslocal.cpp ├── editorsettingslocal.h ├── editorsettingslocalbase.cpp ├── editorsettingslocalbase.h ├── editorsettingslocalbase_formbuilder_bitmaps.cpp ├── editorsettingsmiscpanel.cpp ├── editorsettingsmiscpanel.h ├── editorsettingsterminal.cpp ├── editorsettingsterminal.h ├── file.xpm ├── filechecklist.cpp ├── filechecklist.h ├── filechecklistbase.cpp ├── filechecklistbase.h ├── filechecklistbase.wxcp ├── filechecklistbase_liteeditor_bitmaps.cpp ├── filedroptarget.cpp ├── filedroptarget.h ├── fileexplorer.cpp ├── fileexplorer.h ├── filehistory.cpp ├── filehistory.h ├── fileview.cpp ├── fileview.h ├── findinfiles_dlg.cpp ├── findinfiles_dlg.h ├── findinfiles_dlg_formbuilder_bitmaps.cpp ├── findinfilesdlg.cpp ├── findinfilesdlg.h ├── findreplacedlg.cpp ├── findreplacedlg.h ├── findresultstab.cpp ├── findresultstab.h ├── findusagetab.cpp ├── findusagetab.h ├── foldermodel.cpp ├── foldermodel.h ├── frame.cpp ├── frame.h ├── free_text_dialog.cpp ├── free_text_dialog.h ├── generalinfo.cpp ├── generalinfo.h ├── generic_context.cpp ├── generic_context.h ├── iconsextra.cpp ├── importfilesdialog.wxcp ├── importfilesdialog_liteeditor_bitmaps.cpp ├── importfilesdialog_new.cpp ├── importfilesdialog_new.h ├── importfilessettings.cpp ├── importfilessettings.h ├── listctrlpanel_formbuilder_bitmaps.cpp ├── listctrlpanelbase.cpp ├── listctrlpanelbase.h ├── localstable.cpp ├── localstable.h ├── mainbook.cpp ├── mainbook.h ├── manageperspectivesbasedlg.cpp ├── manageperspectivesbasedlg.fbp ├── manageperspectivesbasedlg.h ├── manager.cpp ├── manager.h ├── menu_event_handlers.cpp ├── menu_event_handlers.h ├── menumanager.cpp ├── menumanager.h ├── messagepane_liteeditor_bitmaps.cpp ├── movefuncimplbasedlg.cpp ├── movefuncimplbasedlg.h ├── movefuncimplbasedlg.wxcp ├── movefuncimplbasedlg_liteeditor_bitmaps.cpp ├── movefuncimpldlg.cpp ├── movefuncimpldlg.h ├── new_configuration_dlg.cpp ├── new_configuration_dlg.h ├── new_item_base_dlg.cpp ├── new_item_base_dlg.h ├── new_item_dlg.cpp ├── new_item_dlg.h ├── new_item_dlg_formbuilder_bitmaps.cpp ├── new_quick_watch_dlg.cpp ├── new_quick_watch_dlg.h ├── new_virtual_folder.cpp ├── new_virtual_folder.h ├── new_virtual_folder.wxcp ├── new_virtual_folder_liteeditor_bitmaps.cpp ├── new_workspace_dlg.wxcp ├── new_workspace_dlg_liteeditor_bitmaps.cpp ├── newquickwatch.cpp ├── newquickwatch.h ├── newquickwatch.wxcp ├── newquickwatch_liteeditor_bitmaps.cpp ├── newversionbasedlg.fbp ├── newworkspacebasedlg.cpp ├── newworkspacebasedlg.h ├── newworkspacedlg.cpp ├── newworkspacedlg.h ├── openwindowspanel.cpp ├── openwindowspanel.h ├── openwindowspanelbase.cpp ├── openwindowspanelbase.h ├── options_base_dlg2.cpp ├── options_base_dlg2.h ├── options_dlg2.cpp ├── options_dlg2.h ├── optionsdialogbase2.fbp ├── optionsdialogbase2.wxcp ├── optionsdialogbase2_liteeditor_bitmaps.cpp ├── output_pane.cpp ├── output_pane.h ├── outputtabwindow.cpp ├── outputtabwindow.h ├── packages.json ├── perspectivemanager.cpp ├── perspectivemanager.h ├── plugindlgbase.cpp ├── plugindlgbase.h ├── plugindlgbase.wxcp ├── plugindlgbase_liteeditor_bitmaps.cpp ├── pluginmanager.cpp ├── pluginmanager.h ├── pluginmgrdlg.cpp ├── pluginmgrdlg.h ├── project_settings.wxcp ├── project_settings_base_dlg.cpp ├── project_settings_base_dlg.h ├── project_settings_dlg.cpp ├── project_settings_dlg.h ├── project_settings_liteeditor_bitmaps.cpp ├── ps_build_events_page.cpp ├── ps_build_events_page.h ├── ps_compiler_page.cpp ├── ps_compiler_page.h ├── ps_custom_build_page.cpp ├── ps_custom_build_page.h ├── ps_custom_makefile_rules_page.cpp ├── ps_custom_makefile_rules_page.h ├── ps_debugger_page.cpp ├── ps_debugger_page.h ├── ps_environment_page.cpp ├── ps_environment_page.h ├── ps_general_page.cpp ├── ps_general_page.h ├── ps_linker_page.cpp ├── ps_linker_page.h ├── ps_resources_page.cpp ├── ps_resources_page.h ├── quickdebug_formbuilder_bitmaps.cpp ├── quickdebugbase.cpp ├── quickdebugbase.h ├── quickdebugdlg.cpp ├── quickdebugdlg.h ├── quickfindbarbase.cpp ├── quickfindbarbase.h ├── quickfindbarbase.wxcp ├── quickfindbarbase_liteeditor_bitmaps.cpp ├── reconcileproject.cpp ├── reconcileproject.h ├── reconcileproject.wxcp ├── reconcileproject_liteeditor_bitmaps.cpp ├── reconcileprojectbase.cpp ├── reconcileprojectbase.h ├── rename_symbool_dlg.cpp ├── rename_symbool_dlg.h ├── rename_symbool_dlg_formbuilder_bitmaps.cpp ├── renamesymboldlg.cpp ├── renamesymboldlg.h ├── replaceinfilespanel.cpp ├── replaceinfilespanel.h ├── res │ ├── 16 │ │ ├── bulb.png │ │ ├── formatter.png │ │ ├── formatter_settings.png │ │ └── select-all.png │ ├── 24 │ │ ├── formatter.png │ │ └── formatter_settings.png │ ├── 100_x_400_white.png │ ├── 12-aui-close-white.png │ ├── 12-aui-close-white@2x.png │ ├── 12-aui-close.png │ ├── 12-aui-close@2x.png │ ├── 12-aui-expand-white.png │ ├── 12-aui-expand-white@2x.png │ ├── 12-aui-expand.png │ ├── 12-aui-expand@2x.png │ ├── 12-aui-more-white.png │ ├── 12-aui-more-white@2x.png │ ├── 12-aui-more.png │ ├── 12-aui-more@2x.png │ ├── Checkbox_off.gif │ ├── Checkbox_on.gif │ ├── about_img.png │ ├── archive.png │ ├── arrow-down-16.png │ ├── arrow-left-24.png │ ├── arrow_right_green.png │ ├── aui-close-white.svg │ ├── aui-close.png │ ├── aui-close.svg │ ├── aui-close@2x.png │ ├── aui-expand-white.svg │ ├── aui-expand.png │ ├── aui-expand.svg │ ├── aui-expand@2x.png │ ├── aui-minimize.png │ ├── aui-minimize@2x.png │ ├── aui-more-white.svg │ ├── aui-more.png │ ├── aui-more.svg │ ├── aui-more@2x.png │ ├── breakpoint.png │ ├── bug.png │ ├── clang.png │ ├── collapse.png │ ├── collapse@2x.png │ ├── configure.png │ ├── console.png │ ├── convert-svgs.sh │ ├── cube_green.png │ ├── cubes.ico │ ├── cursor.png │ ├── debug_windows.png │ ├── dll.png │ ├── document_delete.png │ ├── down-10.png │ ├── eclipse.png │ ├── enter.png │ ├── eran.png │ ├── eraser.png │ ├── expand.png │ ├── fonts-and-colours.png │ ├── gear.png │ ├── gear@2x.png │ ├── gohome.png │ ├── goto.png │ ├── gtk.png │ ├── help.png │ ├── help_about.png │ ├── home.png │ ├── home@2x.png │ ├── html.png │ ├── icon.png │ ├── kstars.png │ ├── link.png │ ├── link@2x.png │ ├── link_editor.png │ ├── locals_view.png │ ├── lock.png │ ├── makefile.png │ ├── memory_view.png │ ├── menu.png │ ├── messagebox_info.png │ ├── new-project.png │ ├── new_class.png │ ├── notebook │ │ ├── fileclose-dark.png │ │ ├── fileclose-white.png │ │ └── fileclose.png │ ├── ok.png │ ├── outbox.png │ ├── package_utilities.png │ ├── page_error.png │ ├── puzzle.jpg │ ├── puzzle.png │ ├── qt.png │ ├── question_and_answer.png │ ├── quickfindbar │ │ ├── arrow-down.png │ │ ├── arrow-up.png │ │ ├── back-16.png │ │ ├── case-sensitive.png │ │ ├── case-sensitive.xcf │ │ ├── close-16.png │ │ ├── marker-16.png │ │ ├── menu.png │ │ ├── next-16.png │ │ ├── regex.png │ │ ├── regex.xcf │ │ ├── replace-controls.png │ │ ├── replcae-16.png │ │ ├── word.png │ │ └── word.xcf │ ├── rebuild.png │ ├── reload.png │ ├── sort.png │ ├── svn_checkout.png │ ├── svn_repo.png │ ├── target-200.png │ ├── threads.png │ ├── trace.png │ ├── up-10.png │ ├── view_text.png │ ├── watches.png │ ├── window_duplicate.png │ ├── wrap_arrow.png │ ├── wx.png │ ├── wxfb.png │ └── wxproject.png ├── resource.h ├── resources.cpp ├── resources.xrc ├── setters_getters.cpp ├── setters_getters.h ├── setters_getters_dlg.cpp ├── setters_getters_dlg.h ├── setters_getters_formbuilder_bitmaps.cpp ├── shelltab.cpp ├── shelltab.h ├── simpletable.cpp ├── simpletable.h ├── simpletablebase.cpp ├── simpletablebase.h ├── singleinstancethreadjob.cpp ├── singleinstancethreadjob.h ├── stack_walker.cpp ├── stack_walker.h ├── stalefilesmodel.cpp ├── stalefilesmodel.h ├── stdwx.h ├── stringhighlighterjob.cpp ├── stringhighlighterjob.h ├── symbols_dialog.cpp ├── symbols_dialog.h ├── symbols_dialog_base.cpp ├── symbols_dialog_base.h ├── syntaxhighlightbasedlg.cpp ├── syntaxhighlightbasedlg.h ├── syntaxhighlightbasedlg_liteeditor_bitmaps.cpp ├── syntaxhighlightdlg.cpp ├── syntaxhighlightdlg.h ├── tabgroupbasedlgs.cpp ├── tabgroupbasedlgs.h ├── tabgroupbasedlgs.wxcp ├── tabgroupbasedlgs_liteeditor_bitmaps.cpp ├── tabgroupdlg.cpp ├── tabgroupdlg.h ├── tabgroupmanager.cpp ├── tabgroupmanager.h ├── tabgroupspane.cpp ├── tabgroupspane.h ├── tags_options_base_dlg.cpp ├── tags_options_base_dlg.h ├── tags_options_base_dlg_formbuilder_bitmaps.cpp ├── tags_options_dlg.cpp ├── tags_options_dlg.h ├── tags_parser_search_path_dlg.cpp ├── tags_parser_search_path_dlg.h ├── tagsparsersearchpathsbasedlg.cpp ├── tagsparsersearchpathsbasedlg.fbp ├── tagsparsersearchpathsbasedlg.h ├── tasksfindwhatdlgbase.fbp ├── threadlistpanel.cpp ├── threadlistpanel.h ├── tiptree.cpp ├── tiptree.h ├── webupdatethread.cpp ├── webupdatethread.h ├── workspacesettingsbase.cpp ├── workspacesettingsbase.h ├── workspacesettingsbase.wxcp ├── workspacesettingsbase_liteeditor_bitmaps.cpp ├── workspacesettingsdlg.cpp ├── workspacesettingsdlg.h ├── workspacetab.cpp ├── workspacetab.h ├── wxcrafter.cpp ├── wxcrafter.h ├── wxcrafter.wxcp └── wxcrafter_liteeditor_bitmaps.cpp ├── MacBundler ├── CMakeLists.txt ├── defs.h ├── macbundler.cpp └── macbundler.h ├── MemCheck ├── CMakeLists.txt ├── icons │ ├── 16 │ │ ├── arrow_down.png │ │ ├── arrow_right.png │ │ ├── arrow_up.png │ │ ├── auxiliary.png │ │ ├── broom.png │ │ ├── check.png │ │ ├── clear.png │ │ ├── document_import.png │ │ ├── drmemory.png │ │ ├── error.png │ │ ├── list.png │ │ ├── location.png │ │ ├── node-tree.png │ │ ├── page_first.png │ │ ├── page_last.png │ │ ├── page_next.png │ │ ├── page_previous.png │ │ ├── plain.png │ │ ├── setting_tools.png │ │ ├── st-george_sm.png │ │ └── transparent.png │ └── 24 │ │ ├── check.png │ │ └── document_import.png ├── imemcheckprocessor.h ├── memcheck.cpp ├── memcheck.h ├── memcheckdefs.h ├── memcheckdvcerrorsmodel.cpp ├── memcheckdvcerrorsmodel.h ├── memcheckerror.cpp ├── memcheckerror.h ├── memchecklistctrlerrors.h ├── memcheckoutputview.cpp ├── memcheckoutputview.h ├── memchecksettings.cpp ├── memchecksettings.h ├── memchecksettingsdialog.cpp ├── memchecksettingsdialog.h ├── memcheckui.cpp ├── memcheckui.h ├── memcheckui.wxcp ├── memcheckui_bitmaps.cpp ├── valgrindprocessor.cpp └── valgrindprocessor.h ├── Outline ├── CMakeLists.txt ├── outline.cpp ├── outline.h ├── outline_tab.cpp ├── outline_tab.h ├── wxcrafter.cpp ├── wxcrafter.h ├── wxcrafter.wxcp └── wxcrafter_outline_bitmaps.cpp ├── PCH ├── CMakeLists.txt ├── Makefile ├── dummy.cpp ├── precompiled_header_dbg.h ├── precompiled_header_release.h └── precompiled_header_release_32.h ├── PHPLint ├── CMakeLists.txt ├── lintoptions.cpp ├── lintoptions.h ├── phplint.cpp ├── phplint.h ├── phplintdlg.cpp ├── phplintdlg.h ├── phplintdlg.wxcp ├── phplintdlg_phplint_bitmaps.cpp ├── phplintdlgbase.cpp └── phplintdlgbase.h ├── PHPRefactoring ├── CMakeLists.txt ├── PHPRefactoringPreviewDlg.cpp ├── PHPRefactoringPreviewDlg.h ├── phprefactor.phar ├── phprefactoring.cpp ├── phprefactoring.h ├── phprefactoringdlg.cpp ├── phprefactoringdlg.h ├── phprefactoringdlg.wxcp ├── phprefactoringdlg_phprefactoring_bitmaps.cpp ├── phprefactoringdlgbase.cpp ├── phprefactoringdlgbase.h ├── phprefactoringoptions.cpp └── phprefactoringoptions.h ├── Plugin ├── AddIncludeFile.wxcp ├── AddIncludeFile_liteeditor_bitmaps.cpp ├── AddSSHAcountDlg.cpp ├── AddSSHAcountDlg.h ├── CMakeLists.txt ├── CallThrottler.hpp ├── CodeLiteRemoteHelper.cpp ├── CodeLiteRemoteHelper.hpp ├── ColoursAndFontsManager.cpp ├── ColoursAndFontsManager.h ├── CompilerLocator │ ├── CompilerLocatorCLANG.cpp │ ├── CompilerLocatorCLANG.h │ ├── CompilerLocatorCrossGCC.cpp │ ├── CompilerLocatorCrossGCC.h │ ├── CompilerLocatorCygwin.cpp │ ├── CompilerLocatorCygwin.h │ ├── CompilerLocatorEosCDT.cpp │ ├── CompilerLocatorEosCDT.h │ ├── CompilerLocatorGCC.cpp │ ├── CompilerLocatorGCC.h │ ├── CompilerLocatorMSVC.cpp │ ├── CompilerLocatorMSVC.h │ ├── CompilerLocatorMSYS2.cpp │ ├── CompilerLocatorMSYS2.hpp │ ├── CompilerLocatorMSYS2Clang.cpp │ ├── CompilerLocatorMSYS2Clang.hpp │ ├── CompilerLocatorRustc.cpp │ └── CompilerLocatorRustc.hpp ├── CompilersDetectorManager.cpp ├── CompilersDetectorManager.h ├── ConsoleLexer.cpp ├── ConsoleLexer.hpp ├── CustomControls │ ├── CustomControls.cpp │ ├── CustomControls.hpp │ ├── CustomControls.wxcp │ ├── CustomControls_customcontrols_bitmaps.cpp │ ├── IndicatorPanel.cpp │ ├── IndicatorPanel.hpp │ ├── PromptEditorDlg.cpp │ ├── PromptEditorDlg.hpp │ ├── TextGenerationPreviewFrame.cpp │ ├── TextGenerationPreviewFrame.hpp │ ├── clStyledTextCtrlMiniMap.cpp │ └── clStyledTextCtrlMiniMap.hpp ├── Debugger │ ├── DebuggerToolBar.cpp │ ├── DebuggerToolBar.h │ ├── debuggermanager.cpp │ ├── debuggermanager.h │ ├── debuggersettings.cpp │ ├── debuggersettings.h │ ├── memoryview.cpp │ ├── memoryview.h │ ├── memoryviewbase.cpp │ ├── memoryviewbase.h │ ├── memoryviewbase.wxcp │ └── memoryviewbase_liteeditor_bitmaps.cpp ├── DefaultLexerJSON.cpp ├── Diff │ ├── DiffConfig.cpp │ ├── DiffConfig.h │ ├── DiffFoldersFrame.cpp │ ├── DiffFoldersFrame.h │ ├── DiffSelectFoldersDlg.cpp │ ├── DiffSelectFoldersDlg.h │ ├── DiffSideBySidePanel.cpp │ ├── DiffSideBySidePanel.h │ ├── DiffUI.cpp │ ├── DiffUI.h │ ├── DiffUI.wxcp │ ├── DiffUI_plugin_bitmaps.cpp │ ├── clDTL.cpp │ ├── clDTL.h │ ├── clDiffFrame.cpp │ ├── clDiffFrame.h │ ├── clPatch.cpp │ └── clPatch.h ├── EditDlg.cpp ├── EditDlg.h ├── EditorLayoutBase.wxcp ├── EnvVarImporterDlg.cpp ├── EnvVarImporterDlg.h ├── EnvironmentVariablesDlg.cpp ├── EnvironmentVariablesDlg.h ├── EnvironmentVariablesDlgBase.cpp ├── EnvironmentVariablesDlgBase.h ├── EnvironmentVariablesDlgBaseBitmaps.cpp ├── FileManager.cpp ├── FileManager.hpp ├── FileSystemWorkspace │ ├── BuildTargetDlg.cpp │ ├── BuildTargetDlg.h │ ├── FSConfigPage.cpp │ ├── FSConfigPage.h │ ├── NewFileSystemWorkspaceDialog.cpp │ ├── NewFileSystemWorkspaceDialog.h │ ├── clFSWNewConfigDlg.cpp │ ├── clFSWNewConfigDlg.h │ ├── clFileSystemWorkspace.cpp │ ├── clFileSystemWorkspace.hpp │ ├── clFileSystemWorkspaceConfig.cpp │ ├── clFileSystemWorkspaceConfig.hpp │ ├── clFileSystemWorkspaceDlg.cpp │ ├── clFileSystemWorkspaceDlg.h │ ├── clFileSystemWorkspaceDlgBase.cpp │ ├── clFileSystemWorkspaceDlgBase.h │ ├── clFileSystemWorkspaceDlgBase.wxcp │ ├── clFileSystemWorkspaceDlgBase_plugin_bitmaps.cpp │ ├── clFileSystemWorkspaceView.cpp │ ├── clFileSystemWorkspaceView.hpp │ ├── clShellHelper.cpp │ └── clShellHelper.hpp ├── GCCMetadata.cpp ├── GCCMetadata.hpp ├── GotoAnythingBaseUI.cpp ├── GotoAnythingBaseUI.h ├── GotoAnythingBaseUI.wxcp ├── GotoAnythingBaseUI_plugin_bitmaps.cpp ├── GotoAnythingDlg.cpp ├── GotoAnythingDlg.h ├── ICompilerLocator.cpp ├── ICompilerLocator.h ├── Keyboard │ ├── NewKeyShortcutBaseDlg.cpp │ ├── NewKeyShortcutBaseDlg.h │ ├── NewKeyShortcutBaseDlg.wxcp │ ├── NewKeyShortcutBaseDlg_liteeditor_bitmaps.cpp │ ├── clKeyboardBindingConfig.cpp │ ├── clKeyboardBindingConfig.h │ ├── clKeyboardManager.cpp │ ├── clKeyboardManager.h │ ├── newkeyshortcutdlg.cpp │ └── newkeyshortcutdlg.h ├── LSP │ ├── DiagnosticsData.hpp │ ├── FileContentTracker.cpp │ ├── FileContentTracker.hpp │ ├── LSPDetectorManager.cpp │ ├── LSPDetectorManager.hpp │ ├── LSPManager.cpp │ ├── LSPManager.hpp │ ├── LSPNetwork.cpp │ ├── LSPNetwork.h │ ├── LSPNetworkRemoteSTDIO.cpp │ ├── LSPNetworkRemoteSTDIO.hpp │ ├── LSPNetworkSTDIO.cpp │ ├── LSPNetworkSTDIO.h │ ├── LSPNetworkSocketClient.cpp │ ├── LSPNetworkSocketClient.h │ ├── LSPOutlineViewDlg.cpp │ ├── LSPOutlineViewDlg.h │ ├── LSPStartupInfo.cpp │ ├── LSPStartupInfo.h │ ├── LanguageServer.project │ ├── LanguageServerConfig.cpp │ ├── LanguageServerConfig.h │ ├── LanguageServerEntry.cpp │ ├── LanguageServerEntry.h │ ├── LanguageServerLogView.cpp │ ├── LanguageServerLogView.h │ ├── LanguageServerPage.cpp │ ├── LanguageServerPage.h │ ├── LanguageServerProtocol.cpp │ ├── LanguageServerProtocol.h │ ├── LanguageServerSettingsDlg.cpp │ ├── LanguageServerSettingsDlg.h │ ├── NewLanguageServerDlg.cpp │ ├── NewLanguageServerDlg.h │ ├── PathConverterDefault.cpp │ ├── PathConverterDefault.hpp │ ├── UI.cpp │ ├── UI.h │ ├── UI.wxcp │ ├── UI_languageserver_bitmaps.cpp │ └── detectors │ │ ├── LSPCMakeDetector.cpp │ │ ├── LSPCMakeDetector.hpp │ │ ├── LSPCTagsdDetector.cpp │ │ ├── LSPCTagsdDetector.hpp │ │ ├── LSPClangdDetector.cpp │ │ ├── LSPClangdDetector.hpp │ │ ├── LSPDetector.cpp │ │ ├── LSPDetector.hpp │ │ ├── LSPGoplsDetector.cpp │ │ ├── LSPGoplsDetector.hpp │ │ ├── LSPJdtlsDetector.cpp │ │ ├── LSPJdtlsDetector.hpp │ │ ├── LSPPythonDetector.cpp │ │ ├── LSPPythonDetector.hpp │ │ ├── LSPRustAnalyzerDetector.cpp │ │ ├── LSPRustAnalyzerDetector.hpp │ │ ├── LSPTypeScriptDetector.cpp │ │ └── LSPTypeScriptDetector.hpp ├── MSWDarkMode.cpp ├── MSWDarkMode.hpp ├── MacrosBaseDlg.wxcp ├── MacrosBaseDlg_plugin_bitmaps.cpp ├── MarkdownStyler.cpp ├── MarkdownStyler.hpp ├── Markup.cpp ├── Markup.h ├── NewProjectDialog.cpp ├── NewProjectDialog.h ├── NewProjectDialogBase.cpp ├── NewProjectDialogBase.h ├── NewProjectDialogBase.wxcp ├── NewProjectDialogBase_plugin_bitmaps.cpp ├── NodeJSLocator.cpp ├── NodeJSLocator.h ├── Notebook.cpp ├── Notebook.h ├── NotebookNavigationDlg.cpp ├── NotebookNavigationDlg.h ├── Rust │ ├── clRustLocator.cpp │ └── clRustLocator.hpp ├── SFTPBrowserDlg.cpp ├── SFTPBrowserDlg.h ├── SFTPSessionInfo.cpp ├── SFTPSessionInfo.h ├── SSHAccountManagerDlg.cpp ├── SSHAccountManagerDlg.h ├── Scripting │ ├── CodeLiteLUA.cpp │ ├── CodeLiteLUA.hpp │ └── DefaultLuaScript.cpp ├── SelectFileTypesDialog.cpp ├── SelectFileTypesDialog.hpp ├── SelectFileTypesDialogBase.cpp ├── SelectFileTypesDialogBase.hpp ├── SelectFileTypesDialogBase.wxcp ├── SelectFileTypesDialogBase_plugin_bitmaps.cpp ├── SwitchToWorkspaceBase.cpp ├── SwitchToWorkspaceBase.h ├── SwitchToWorkspaceBase.wxcp ├── SwitchToWorkspaceBase_plugin_bitmaps.cpp ├── SwitchToWorkspaceBase_plugin_bitmaps.xrc ├── SwitchToWorkspaceDlg.cpp ├── SwitchToWorkspaceDlg.h ├── ThemeImporters │ ├── ThemeImporterASM.cpp │ ├── ThemeImporterASM.hpp │ ├── ThemeImporterBase.cpp │ ├── ThemeImporterBase.hpp │ ├── ThemeImporterBatch.cpp │ ├── ThemeImporterBatch.hpp │ ├── ThemeImporterCMake.cpp │ ├── ThemeImporterCMake.hpp │ ├── ThemeImporterCSS.cpp │ ├── ThemeImporterCSS.hpp │ ├── ThemeImporterCXX.cpp │ ├── ThemeImporterCXX.hpp │ ├── ThemeImporterCobra.cpp │ ├── ThemeImporterCobra.hpp │ ├── ThemeImporterCobraAlt.cpp │ ├── ThemeImporterCobraAlt.hpp │ ├── ThemeImporterDiff.cpp │ ├── ThemeImporterDiff.hpp │ ├── ThemeImporterDockerfile.cpp │ ├── ThemeImporterDockerfile.hpp │ ├── ThemeImporterFortran.cpp │ ├── ThemeImporterFortran.hpp │ ├── ThemeImporterGo.cpp │ ├── ThemeImporterGo.hpp │ ├── ThemeImporterINI.cpp │ ├── ThemeImporterINI.hpp │ ├── ThemeImporterInnoSetup.cpp │ ├── ThemeImporterInnoSetup.hpp │ ├── ThemeImporterJSON.cpp │ ├── ThemeImporterJSON.hpp │ ├── ThemeImporterJava.cpp │ ├── ThemeImporterJava.hpp │ ├── ThemeImporterJavaScript.cpp │ ├── ThemeImporterJavaScript.hpp │ ├── ThemeImporterLUA.cpp │ ├── ThemeImporterLUA.hpp │ ├── ThemeImporterMakefile.cpp │ ├── ThemeImporterMakefile.hpp │ ├── ThemeImporterManager.cpp │ ├── ThemeImporterManager.hpp │ ├── ThemeImporterMarkdown.cpp │ ├── ThemeImporterMarkdown.hpp │ ├── ThemeImporterPHP.cpp │ ├── ThemeImporterPHP.hpp │ ├── ThemeImporterPython.cpp │ ├── ThemeImporterPython.hpp │ ├── ThemeImporterRuby.cpp │ ├── ThemeImporterRuby.hpp │ ├── ThemeImporterRust.cpp │ ├── ThemeImporterRust.hpp │ ├── ThemeImporterSCSS.cpp │ ├── ThemeImporterSCSS.hpp │ ├── ThemeImporterSQL.cpp │ ├── ThemeImporterSQL.hpp │ ├── ThemeImporterScript.cpp │ ├── ThemeImporterScript.hpp │ ├── ThemeImporterTCL.cpp │ ├── ThemeImporterTCL.hpp │ ├── ThemeImporterTerminal.cpp │ ├── ThemeImporterTerminal.hpp │ ├── ThemeImporterText.cpp │ ├── ThemeImporterText.hpp │ ├── ThemeImporterXML.cpp │ ├── ThemeImporterXML.hpp │ ├── ThemeImporterYAML.cpp │ └── ThemeImporterYAML.hpp ├── ToolBar.wxcp ├── ToolBarUI.cpp ├── ToolBarUI.h ├── ToolBar_liteeditor_bitmaps.cpp ├── ToolBar_liteeditor_bitmaps.xrc ├── VirtualDirectoryColour.cpp ├── VirtualDirectoryColour.h ├── VirtualDirectorySelectorBase.cpp ├── VirtualDirectorySelectorBase.h ├── VirtualDirectorySelectorBase.wxcp ├── VirtualDirectorySelectorBase_plugin_bitmaps.cpp ├── VirtualDirectorySelectorDlg.cpp ├── VirtualDirectorySelectorDlg.h ├── VirtualDirectorySelector_plugin_bitmaps.cpp ├── WSImporterDlgs.cpp ├── WSImporterDlgs.h ├── WSImporterDlgs.wxcp ├── WSImporterDlgs_plugin_bitmaps.cpp ├── WorkspaceHelper.cpp ├── WorkspaceHelper.hpp ├── WorkspaceImporter │ ├── BorlandCppBuilderImporter.cpp │ ├── BorlandCppBuilderImporter.h │ ├── CodeBlocksImporter.cpp │ ├── CodeBlocksImporter.h │ ├── DevCppImporter.cpp │ ├── DevCppImporter.h │ ├── GenericImporter.h │ ├── VisualCppImporter.cpp │ ├── VisualCppImporter.h │ ├── WSImporter.cpp │ └── WSImporter.h ├── Zip │ ├── clZipReader.cpp │ ├── clZipReader.h │ ├── clZipWriter.cpp │ └── clZipWriter.h ├── addincludefiledlg.cpp ├── addincludefiledlg.h ├── addincludefiledlgbase.cpp ├── addincludefiledlgbase.h ├── ai │ ├── ChatAI.cpp │ ├── ChatAI.hpp │ ├── ChatAIWindow.cpp │ ├── ChatAIWindow.hpp │ ├── ChatAIWindowFrame.cpp │ ├── ChatAIWindowFrame.hpp │ ├── ChatHistoryDialog.cpp │ ├── ChatHistoryDialog.hpp │ ├── Common.hpp │ ├── Config.cpp │ ├── Config.hpp │ ├── LLMEvents.cpp │ ├── LLMEvents.hpp │ ├── LLMManager.cpp │ ├── LLMManager.hpp │ ├── NewLLMEndpointWizard.cpp │ ├── NewLLMEndpointWizard.hpp │ ├── ProgressToken.cpp │ ├── ProgressToken.hpp │ ├── Prompts.cpp │ ├── ResponseCollector.cpp │ ├── ResponseCollector.hpp │ ├── Tools.cpp │ ├── Tools.hpp │ ├── UI.cpp │ ├── UI.hpp │ ├── UI.wxcp │ └── UI_assistance.ai_bitmaps.cpp ├── art_metro.cpp ├── art_metro.h ├── async_executable_cmd.cpp ├── async_executable_cmd.h ├── attribute_style.cpp ├── attribute_style.h ├── aui │ ├── clAuiBook.cpp │ ├── clAuiBook.hpp │ ├── clAuiBookSerialiser.hpp │ ├── clAuiCaptionEnabler.cpp │ ├── clAuiCaptionEnabler.h │ ├── clAuiFlatTabArt.cpp │ ├── clAuiFlatTabArt.hpp │ ├── clAuiToolBarArt.cpp │ ├── clAuiToolBarArt.h │ ├── cl_aui_dock_art.cpp │ ├── cl_aui_dock_art.h │ ├── cl_aui_tool_stickness.cpp │ └── cl_aui_tool_stickness.h ├── bitmap_loader.cpp ├── bitmap_loader.h ├── bookmark_manager.cpp ├── bookmark_manager.h ├── build_config.cpp ├── build_config.h ├── build_config_common.cpp ├── build_config_common.h ├── build_settings_config.cpp ├── build_settings_config.h ├── build_system.cpp ├── build_system.h ├── builder │ ├── BuilderGnuMakeMSYS.cpp │ ├── BuilderGnuMakeMSYS.hpp │ ├── builder.cpp │ ├── builder.h │ ├── builder_NMake.cpp │ ├── builder_NMake.h │ ├── builder_gnumake.cpp │ ├── builder_gnumake.h │ ├── builder_gnumake_default.cpp │ ├── builder_gnumake_default.h │ ├── builder_gnumake_onestep.cpp │ ├── builder_gnumake_onestep.h │ ├── clRemoteBuilder.cpp │ └── clRemoteBuilder.hpp ├── buildmanager.cpp ├── buildmanager.h ├── cLToolBarControl.cpp ├── cLToolBarControl.h ├── cc_box_tip_window.cpp ├── cc_box_tip_window.h ├── clAboutDialog.cpp ├── clAboutDialog.h ├── clAboutDialogBase.cpp ├── clAboutDialogBase.h ├── clAboutDialogBase.wxcp ├── clAboutDialogBase_plugin_bitmaps.cpp ├── clAnsiEscapeCodeColourBuilder.cpp ├── clAnsiEscapeCodeColourBuilder.hpp ├── clAnsiEscapeCodeHandler.cpp ├── clAnsiEscapeCodeHandler.hpp ├── clBacktickCache.cpp ├── clBacktickCache.hpp ├── clBoostrapWizardBase.cpp ├── clBoostrapWizardBase.h ├── clBoostrapWizardBase.wxcp ├── clBoostrapWizardBase_plugin_bitmaps.cpp ├── clBoostrapWizardPage.cpp ├── clBoostrapWizardPage.h ├── clBootstrapWizard.cpp ├── clBootstrapWizard.h ├── clButton.cpp ├── clButton.h ├── clButtonBase.cpp ├── clButtonBase.h ├── clCaptionBar.cpp ├── clCaptionBar.hpp ├── clCellValue.cpp ├── clCellValue.h ├── clChoice.cpp ├── clChoice.h ├── clCodeLiteRemoteProcess.cpp ├── clCodeLiteRemoteProcess.hpp ├── clColours.cpp ├── clColours.h ├── clComboBox.cpp ├── clComboBox.hpp ├── clComboBoxGeneric.cpp ├── clComboBoxGeneric.hpp ├── clControlWithItems.cpp ├── clControlWithItems.h ├── clCustomScrollBar.cpp ├── clCustomScrollBar.h ├── clCustomiseToolBarDlg.cpp ├── clCustomiseToolBarDlg.h ├── clDataViewListCtrl.cpp ├── clDataViewListCtrl.h ├── clDebuggerTerminal.cpp ├── clDebuggerTerminal.h ├── clDockingManager.cpp ├── clDockingManager.h ├── clEditorBar.cpp ├── clEditorBar.h ├── clEditorColouriseLocker.cpp ├── clEditorColouriseLocker.h ├── clEditorEditEventsHandler.cpp ├── clEditorEditEventsHandler.h ├── clEditorStateLocker.cpp ├── clEditorStateLocker.h ├── clEditorWordCharsLocker.cpp ├── clEditorWordCharsLocker.h ├── clEnhancedToolBar.cpp ├── clEnhancedToolBar.hpp ├── clFileCache.cpp ├── clFileCache.hpp ├── clFileOrFolderDropTarget.cpp ├── clFileOrFolderDropTarget.h ├── clFileViwerTreeCtrl.cpp ├── clFileViwerTreeCtrl.h ├── clFindResultsStyler.cpp ├── clFindResultsStyler.h ├── clGenericNotebook.cpp ├── clGenericNotebook.hpp ├── clGenericSTCStyler.cpp ├── clGenericSTCStyler.h ├── clGetTextFromUserDialog.cpp ├── clGetTextFromUserDialog.h ├── clGotoAnythingManager.cpp ├── clGotoAnythingManager.h ├── clHeaderBar.cpp ├── clHeaderBar.h ├── clHeaderItem.cpp ├── clHeaderItem.h ├── clIdleEventThrottler.hpp ├── clImageViewer.cpp ├── clImageViewer.h ├── clInfoBar.cpp ├── clInfoBar.h ├── clLocaleManager.cpp ├── clLocaleManager.hpp ├── clMarkdownRenderer.cpp ├── clMarkdownRenderer.hpp ├── clMouseCaptureLocker.cpp ├── clMouseCaptureLocker.h ├── clNativeNotebook.cpp ├── clNativeNotebook.hpp ├── clNodeJS.cpp ├── clNodeJS.h ├── clNotebookTheme.cpp ├── clNotebookTheme.h ├── clPersistenceManager.cpp ├── clPersistenceManager.h ├── clPluginsFindBar.cpp ├── clPluginsFindBar.h ├── clProfileHandler.cpp ├── clProfileHandler.h ├── clPropertiesPage.cpp ├── clPropertiesPage.hpp ├── clRegistery.cpp ├── clRegistery.hpp ├── clRemoteDirCtrl.cpp ├── clRemoteDirCtrl.hpp ├── clRemoteFindDialog.cpp ├── clRemoteFindDialog.h ├── clRemoteFinderHelper.cpp ├── clRemoteFinderHelper.hpp ├── clRemoteHost.cpp ├── clRemoteHost.hpp ├── clResizableTooltip.cpp ├── clResizableTooltip.h ├── clResizableTooltipBase.cpp ├── clResizableTooltipBase.h ├── clResizableTooltipBase.wxcp ├── clResizableTooltipBase_plugin_bitmaps.cpp ├── clRowEntry.cpp ├── clRowEntry.h ├── clSFTPManager.cpp ├── clSFTPManager.hpp ├── clSTCContainerStylerBase.cpp ├── clSTCContainerStylerBase.hpp ├── clSTCHelper.cpp ├── clSTCHelper.hpp ├── clSTCLineKeeper.cpp ├── clSTCLineKeeper.h ├── clScrollBar.cpp ├── clScrollBar.h ├── clScrolledPanel.cpp ├── clScrolledPanel.h ├── clSelectSymbolDialog.cpp ├── clSelectSymbolDialog.h ├── clSelectSymbolDialogBase.cpp ├── clSelectSymbolDialogBase.h ├── clSelectSymbolDialogBase.wxcp ├── clSelectSymbolDialogBase_plugin_bitmaps.cpp ├── clSideBarCtrl.cpp ├── clSideBarCtrl.hpp ├── clSingleChoiceDialog.cpp ├── clSingleChoiceDialog.h ├── clSnippetManager.cpp ├── clSnippetManager.hpp ├── clStatusBar.cpp ├── clStatusBar.h ├── clStatusBarMessage.cpp ├── clStatusBarMessage.h ├── clStrings.h ├── clSystemSettings.cpp ├── clSystemSettings.h ├── clTab.h ├── clTabHistory.cpp ├── clTabHistory.h ├── clTabRenderer.cpp ├── clTabRenderer.h ├── clTabRendererMinimal.cpp ├── clTabRendererMinimal.hpp ├── clTabTogglerHelper.cpp ├── clTabTogglerHelper.h ├── clTableLineEditorDlg.cpp ├── clTableLineEditorDlg.h ├── clTableWithPagination.cpp ├── clTableWithPagination.h ├── clTerminalHistory.cpp ├── clTerminalHistory.h ├── clTerminalViewCtrl.cpp ├── clTerminalViewCtrl.hpp ├── clThemedButton.cpp ├── clThemedButton.h ├── clThemedChoice.cpp ├── clThemedChoice.h ├── clThemedComboBox.cpp ├── clThemedComboBox.hpp ├── clThemedCtrl.hpp ├── clThemedListCtrl.cpp ├── clThemedListCtrl.h ├── clThemedSTC.cpp ├── clThemedSTC.hpp ├── clThemedSplitterWindow.cpp ├── clThemedSplitterWindow.h ├── clThemedTextCtrl.cpp ├── clThemedTextCtrl.hpp ├── clThemedTreeCtrl.cpp ├── clThemedTreeCtrl.h ├── clToolBar.cpp ├── clToolBar.h ├── clToolBarButton.cpp ├── clToolBarButton.h ├── clToolBarButtonBase.cpp ├── clToolBarButtonBase.h ├── clToolBarMenuButton.cpp ├── clToolBarMenuButton.h ├── clToolBarSeparator.cpp ├── clToolBarSeparator.h ├── clToolBarSpacer.cpp ├── clToolBarSpacer.h ├── clToolBarStretchableSpace.cpp ├── clToolBarStretchableSpace.h ├── clToolBarToggleButton.cpp ├── clToolBarToggleButton.h ├── clTreeCtrl.cpp ├── clTreeCtrl.h ├── clTreeCtrlColourHelper.cpp ├── clTreeCtrlColourHelper.h ├── clTreeCtrlModel.cpp ├── clTreeCtrlModel.h ├── clTreeCtrlPanel.cpp ├── clTreeCtrlPanel.h ├── clTreeCtrlPanelDefaultPage.cpp ├── clTreeCtrlPanelDefaultPage.h ├── clTreeKeyboardInput.cpp ├── clTreeKeyboardInput.h ├── clTreeNodeVisitor.cpp ├── clTreeNodeVisitor.h ├── clWorkspaceManager.cpp ├── clWorkspaceManager.h ├── clWorkspaceView.cpp ├── clWorkspaceView.h ├── cl_editor_tip_window.cpp ├── cl_editor_tip_window.h ├── cl_registry.cpp ├── cl_registry.h ├── cl_remote_executor.cpp ├── cl_remote_executor.hpp ├── clangd │ ├── CompileCommandsGenerator.cpp │ ├── CompileCommandsGenerator.h │ ├── CompileCommandsJSON.cpp │ ├── CompileCommandsJSON.h │ ├── CompileFlagsTxt.cpp │ ├── CompileFlagsTxt.h │ ├── compilation_database.cpp │ └── compilation_database.h ├── clean_request.cpp ├── clean_request.h ├── closetab-active.xpm ├── closetab-active.xpm.alpha ├── closetab.xpm ├── closetab.xpm.alpha ├── compile_request.cpp ├── compile_request.h ├── compiler.cpp ├── compiler.h ├── conffilelocator.cpp ├── conffilelocator.h ├── configtool.cpp ├── configtool.h ├── configuration_mapping.cpp ├── configuration_mapping.h ├── configuration_object.h ├── configurationtoolbase.cpp ├── configurationtoolbase.h ├── consolefinder.cpp ├── consolefinder.h ├── custombuildrequest.cpp ├── custombuildrequest.h ├── debuggerconfigtool.cpp ├── debuggerconfigtool.h ├── detachedpanesinfo.cpp ├── detachedpanesinfo.h ├── dirpicker.cpp ├── dirpicker.h ├── dockablepane.cpp ├── dockablepane.h ├── dockablepanemenumanager.cpp ├── dockablepanemenumanager.h ├── drawingutils.cpp ├── drawingutils.h ├── dynamiclibrary.cpp ├── dynamiclibrary.h ├── editor_config.cpp ├── editor_config.h ├── environmentconfig.cpp ├── environmentconfig.h ├── envvar_table_dlg.wxcp ├── envvarlist.cpp ├── envvarlist.h ├── exelocator.cpp ├── exelocator.h ├── file.xpm ├── filepicker.cpp ├── filepicker.h ├── folder.xpm ├── globals.cpp ├── globals.h ├── gtk │ └── wxCustomControls.cpp ├── lexer_configuration.cpp ├── lexer_configuration.h ├── libplugin_dbg_pch.h ├── libplugin_pch.h ├── listctrl_improved.cpp ├── listctrl_improved.h ├── localworkspace.cpp ├── localworkspace.h ├── macos │ └── wxCustomControls.cpp ├── macromanager.cpp ├── macromanager.h ├── macrosbasedlg.cpp ├── macrosbasedlg.h ├── macrosdlg.cpp ├── macrosdlg.h ├── md5 │ ├── md5.cpp │ ├── md5_header.h │ ├── wxmd5.cpp │ └── wxmd5.h ├── mdparser.cpp ├── mdparser.hpp ├── msw │ └── wxCustomControls.cpp ├── nameanddescbasedlg.cpp ├── nameanddescbasedlg.h ├── nameanddescdlg.cpp ├── nameanddescdlg.h ├── nameanddescdlg.wxcp ├── nameanddescdlg_plugin_bitmaps.cpp ├── navigationmanager.cpp ├── navigationmanager.h ├── notebook_bitmaps.cpp ├── open_resource_dialog.cpp ├── open_resource_dialog.h ├── openresourcedialogbase.cpp ├── openresourcedialogbase.h ├── openresourcedialogbase.wxcp ├── openresourcedialogbase_plugin_bitmaps.cpp ├── openresourcedialogmodel.cpp ├── openresourcedialogmodel.h ├── opentypevlistctrl.cpp ├── opentypevlistctrl.h ├── optionsconfig.cpp ├── optionsconfig.h ├── overlaytool.cpp ├── overlaytool.h ├── phpoptions.cpp ├── phpoptions.h ├── pipedprocess.cpp ├── pipedprocess.h ├── plugin_general_wxcp.cpp ├── plugin_general_wxcp.h ├── plugin_general_wxcp.wxcp ├── plugin_general_wxcp_plugin_bitmaps.cpp ├── plugindata.cpp ├── plugindata.h ├── progressctrl.cpp ├── progressctrl.h ├── project.cpp ├── project.h ├── project_settings.cpp ├── project_settings.h ├── queuecommand.cpp ├── queuecommand.h ├── quickdebuginfo.cpp ├── quickdebuginfo.h ├── quickfindbarbase.cpp ├── quickfindbarbase.h ├── quickfindbarbase.wxcp ├── quickfindbarbase_bitmaps.cpp ├── renamefilebasedlg.cpp ├── renamefilebasedlg.fbp ├── renamefilebasedlg.h ├── renamefiledlg.cpp ├── renamefiledlg.h ├── resources │ ├── clXmlResource.cpp │ ├── clXmlResource.hpp │ ├── diff-copy-file-left-to-right.png │ ├── diff-copy-file-right-to-left.png │ ├── diff-copy-left-to-right.png │ ├── diff-copy-right-to-left.png │ ├── diff-next.png │ ├── diff-prev.png │ ├── diff-refresh.png │ ├── diff-save.png │ ├── empty-file.png │ ├── tile_horizontal.png │ ├── tile_single.png │ └── tile_vertical.png ├── root.xpm ├── sessionmanager.cpp ├── sessionmanager.h ├── sftp_item_comparator.cpp ├── sftp_item_comparator.hpp ├── sftp_settings.cpp ├── sftp_settings.h ├── sftp_ui.cpp ├── sftp_ui.h ├── sftp_ui.wxcp ├── sftp_ui_sftp_bitmaps.cpp ├── sftptreemodel.cpp ├── sftptreemodel.h ├── shell_command.cpp ├── shell_command.h ├── ssh-16.png ├── ssh-32.png ├── string_client_data.h ├── stringsearcher.cpp ├── stringsearcher.h ├── symbol_tree.cpp ├── symbol_tree.h ├── sync_queue.h ├── tab_x.xpm ├── tab_x_pressed.xpm ├── tagsmanagementconf.cpp ├── tagsmanagementconf.h ├── unredobase.cpp ├── unredobase.h ├── window_locker.h ├── windowattrmanager.cpp ├── windowattrmanager.h ├── windowstack.cpp ├── windowstack.h ├── workspace.cpp ├── workspace.h ├── wxArrayStringAppender.h ├── wxCodeCompletionBox.cpp ├── wxCodeCompletionBox.h ├── wxCodeCompletionBox.wxcp ├── wxCodeCompletionBoxBase.cpp ├── wxCodeCompletionBoxBase.h ├── wxCodeCompletionBoxManager.cpp ├── wxCodeCompletionBoxManager.h ├── wxCodeCompletionBox_bitmaps.cpp ├── wxCustomControls.hpp ├── wxCustomControlsGTK.hpp ├── wxCustomControlsMSW.hpp ├── wxCustomControlsMacOS.hpp ├── wxCustomStatusBar.cpp ├── wxCustomStatusBar.h ├── wxPNGAnimation.cpp ├── wxPNGAnimation.h ├── wxTerminalCtrl │ ├── clBuiltinTerminalPane.cpp │ ├── clBuiltinTerminalPane.hpp │ ├── resources │ │ ├── clean.png │ │ ├── cog.png │ │ ├── colorize.png │ │ ├── save.png │ │ ├── settings.png │ │ ├── signal.png │ │ ├── stop.png │ │ ├── terminal-16.png │ │ └── terminal-32.png │ ├── wxTerminalAnsiEscapeHandler.cpp │ ├── wxTerminalAnsiEscapeHandler.hpp │ ├── wxTerminalAnsiRendererInterface.cpp │ ├── wxTerminalAnsiRendererInterface.hpp │ ├── wxTerminalAnsiRendererSTC.cpp │ ├── wxTerminalAnsiRendererSTC.hpp │ ├── wxTerminalColourHandler.cpp │ ├── wxTerminalColourHandler.h │ ├── wxTerminalCtrl.cpp │ ├── wxTerminalCtrl.h │ ├── wxTerminalCtrl.workspace │ ├── wxTerminalEvent.cpp │ ├── wxTerminalEvent.hpp │ ├── wxTerminalHistory.cpp │ ├── wxTerminalHistory.hpp │ ├── wxTerminalInputCtrl.cpp │ ├── wxTerminalInputCtrl.hpp │ ├── wxTerminalOutputCtrl.cpp │ └── wxTerminalOutputCtrl.hpp ├── wx_tree_traverser.cpp ├── wx_tree_traverser.h ├── wxcrafter.wxcp ├── wxcrafter_plugin.cpp ├── wxcrafter_plugin.h ├── wxcrafter_plugin_bitmaps.cpp ├── wxterminal.cpp ├── wxterminal.h ├── wxterminalbase.cpp └── wxterminalbase.h ├── QmakePlugin ├── CMakeLists.txt ├── NewQtProj.cpp ├── NewQtProj.h ├── NewQtProj.wxcp ├── NewQtProj_qmakeplugin_bitmaps.cpp ├── newqtprojdlg.cpp ├── newqtprojdlg.h ├── qmakeconf.cpp ├── qmakeconf.h ├── qmakegenerator.cpp ├── qmakegenerator.h ├── qmakeplugin.cpp ├── qmakeplugin.h ├── qmakeplugindata.cpp ├── qmakeplugindata.h ├── qmakesettingsbasedlg.cpp ├── qmakesettingsbasedlg.h ├── qmakesettingsbasedlg.wxcp ├── qmakesettingsbasedlg_qmakeplugin_bitmaps.cpp ├── qmakesettingsdlg.cpp ├── qmakesettingsdlg.h ├── qmakesettingstab.cpp ├── qmakesettingstab.h ├── qmaketab.cpp ├── qmaketab.h ├── qmaketabbase.cpp ├── qmaketabbase.h ├── qmaketabbase.wxcp └── qmaketabbase_qmakeplugin_bitmaps.cpp ├── README.md ├── Remoty ├── CMakeLists.txt ├── RemotyConfig.cpp ├── RemotyConfig.hpp ├── RemotyNewWorkspaceDlg.cpp ├── RemotyNewWorkspaceDlg.h ├── RemotyPlugin.cpp ├── RemotyPlugin.hpp ├── RemotySwitchToWorkspaceDlg.cpp ├── RemotySwitchToWorkspaceDlg.h ├── RemotyUI.cpp ├── RemotyUI.h ├── RemotyUI.wxcp ├── RemotyUI_remoty_bitmaps.cpp ├── RemotyUI_remoty_bitmaps.xrc ├── RemotyWorkspace.cpp ├── RemotyWorkspace.hpp ├── RemotyWorkspaceView.cpp ├── RemotyWorkspaceView.hpp ├── clRemoteTerminal.cpp ├── clRemoteTerminal.hpp └── sample_codelite_remote_json.cpp ├── Runtime ├── File2Hex.exe ├── Info.plist ├── OpenTerm ├── PHP.zip ├── build_wx.bat ├── cl_workspace.icns ├── clg++ ├── clgcc ├── codelite-fix-rpath ├── codelite-remote ├── codelite-remote.json ├── codelite-url-handler ├── codelite-url-handler.desktop ├── codelite.desktop ├── codelite_exec ├── codelite_fix_files ├── codelite_kill_children ├── codelite_post_install.cmake ├── codelite_xterm ├── config │ ├── build_settings.xml.default │ ├── build_settings.xml.default.mac │ ├── build_settings.xml.default.win │ ├── codelite-api.lua │ ├── codelite.layout.default │ ├── codelite.xml.default │ ├── codelite.xml.default.gtk │ ├── codelite.xml.default.mac │ ├── debuggers.xml.default │ ├── debuggers.xml.gtk │ ├── debuggers.xml.mac │ └── plugins.xml.default ├── ctags-pre-processor.txt ├── excludes ├── gdb_printers │ ├── boost │ │ ├── __init__.py │ │ └── printers.py │ ├── helper.py │ ├── libstdcxx │ │ ├── __init__.py │ │ └── v6 │ │ │ ├── __init__.py │ │ │ ├── printers.py │ │ │ └── xmethods.py │ ├── rustlib │ │ └── etc │ │ │ ├── gdb_load_rust_pretty_printers.py │ │ │ ├── gdb_lookup.py │ │ │ ├── gdb_providers.py │ │ │ └── rust_types.py │ └── wx.py ├── icon.icns ├── lexers │ └── lexers.json ├── man1 │ ├── codelite-make.1 │ ├── codelite.1 │ ├── codelite_fix_files.1 │ └── codelite_open_helper.1 ├── mkdir.exe ├── org.codelite.codelite.metainfo.xml ├── osx-terminal.sh ├── pack_wx.bat ├── patch.exe ├── plugins │ └── resources │ │ ├── abbrev.png │ │ ├── compfile.png │ │ ├── connect_no.png │ │ ├── cppcheck.png │ │ ├── qt16_new.png │ │ ├── qt16_preferences.png │ │ ├── qt24_new.png │ │ ├── qt24_preferences.png │ │ ├── svn_diff.png │ │ ├── svn_settings.png │ │ ├── svn_ssh.png │ │ ├── wxfb_conflict.png │ │ ├── wxfb_modified.png │ │ └── wxfb_ok.png ├── rc │ ├── menu.macos.xrc │ └── menu.xrc ├── rm.exe ├── rust-gdb.bat ├── src │ └── unittest++1.3.tar.gz ├── templates │ ├── databaselayer │ │ ├── dataClass.ctmp │ │ ├── dataClass.htmp │ │ ├── dataClass_dba.ctmp │ │ ├── dataClass_dba.htmp │ │ ├── dataClass_dbl.ctmp │ │ ├── dataClass_dbl.htmp │ │ ├── dataClass_wxdba.ctmp │ │ ├── dataClass_wxdba.htmp │ │ ├── viewClass.ctmp │ │ ├── viewClass.htmp │ │ ├── viewClass_dba.ctmp │ │ ├── viewClass_dba.htmp │ │ ├── viewClass_dbl.ctmp │ │ ├── viewClass_dbl.htmp │ │ ├── viewClass_wxdba.ctmp │ │ └── viewClass_wxdba.htmp │ ├── formbuilder │ │ ├── DialogTemplate.fbp │ │ ├── DialogTemplateWithButtons.fbp │ │ ├── FrameTemplate.fbp │ │ └── PanelTemplate.fbp │ ├── gizmos │ │ ├── CMakeLists.txt.plugin.wizard │ │ ├── app.cpp.wizard │ │ ├── app.h.wizard │ │ ├── gui-dialog.cpp.wizard │ │ ├── gui-dialog.fbp.wizard │ │ ├── gui-dialog.h.wizard │ │ ├── gui-frame.cpp.wizard │ │ ├── gui-frame.fbp.wizard │ │ ├── gui-frame.h.wizard │ │ ├── liteeditor-plugin.project.wizard │ │ ├── main-dialog.cpp.wizard │ │ ├── main-dialog.h.wizard │ │ ├── main-frame.cpp.wizard │ │ ├── main-frame.h.wizard │ │ ├── main.cpp.wizard │ │ ├── mainframe.cpp.wizard │ │ ├── mainframe.h.wizard │ │ ├── plugin.cpp.wizard │ │ ├── plugin.h.wizard │ │ ├── resources.rc.wizard │ │ ├── wx_pch.h.wizard │ │ ├── wxmain.project.wizard │ │ ├── wxproject-fb.project.wizard │ │ └── wxproject.project.wizard │ ├── projects │ │ ├── CMake_Executable │ │ │ ├── CMakeLists.txt │ │ │ ├── CMake_Executable.project │ │ │ ├── icon.png │ │ │ └── main.cpp │ │ ├── ConsoleClang++ │ │ │ ├── ConsoleClang++.project │ │ │ └── main.cpp │ │ ├── ConsoleClang │ │ │ ├── ConsoleClang.project │ │ │ └── main.c │ │ ├── UnitTest++ │ │ │ ├── UnitTest++.project │ │ │ ├── icon.png │ │ │ └── main.cpp │ │ ├── c_gtk24_template │ │ │ ├── c_gtk24_template.project │ │ │ ├── icon.png │ │ │ └── main.c │ │ ├── c_gtk3_template │ │ │ ├── c_gtk3_template.project │ │ │ ├── icon.png │ │ │ └── main.c │ │ ├── cobra-executableU │ │ │ ├── build-file │ │ │ └── cobra-executableU.project │ │ ├── cobra-libraryU │ │ │ ├── cobra-library.project │ │ │ └── lib-build-files │ │ ├── cobra-staticU │ │ │ ├── build-file │ │ │ └── cobra-staticU.project │ │ ├── cpp_gtkmm24_template │ │ │ ├── cpp_gtkmm24_template.project │ │ │ ├── icon.png │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ └── mainwindow.h │ │ ├── cpp_gtkmm3_template │ │ │ ├── cpp_gtkmm3_template.project │ │ │ ├── icon.png │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ └── mainwindow.h │ │ ├── custom-makefile │ │ │ ├── custom-makefile.project │ │ │ └── icon.png │ │ ├── dynamic-library-wx-enabled │ │ │ ├── dynamic-library-wx-enabled.project │ │ │ ├── dynamic-library-wx-enabled.project.windows │ │ │ └── icon.png │ │ ├── dynamic-library │ │ │ ├── dynamic-library.project │ │ │ ├── dynamic-library.project.windows │ │ │ └── icon.png │ │ ├── executable-cobra │ │ │ ├── executable-cobra.project │ │ │ └── main.cobra │ │ ├── executable-console-wx-enabled │ │ │ ├── executable-console-wx-enabled.project │ │ │ ├── icon.png │ │ │ └── main.cpp │ │ ├── executable-gcc │ │ │ ├── executable-gcc.project │ │ │ ├── icon.png │ │ │ └── main.c │ │ ├── executable-qt-enabled │ │ │ ├── executable-qt-enabled.project │ │ │ ├── icon.png │ │ │ └── main.cpp │ │ ├── executable-qt-qmake-enabled │ │ │ ├── executable-qt-qmake-enabled.project │ │ │ ├── icon.png │ │ │ └── main.cpp │ │ ├── executable-wx-dialog │ │ │ ├── executable-wx-dialog.project │ │ │ ├── gui.cpp │ │ │ ├── gui.fbp │ │ │ ├── gui.h │ │ │ ├── icon.png │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ └── win_resources.rc │ │ ├── executable-wx-enabled │ │ │ ├── executable-wx-enabled.project │ │ │ ├── icon.png │ │ │ └── main.cpp │ │ ├── executable-wx-frame │ │ │ ├── executable-wx-frame.project │ │ │ ├── gui.cpp │ │ │ ├── gui.fbp │ │ │ ├── gui.h │ │ │ ├── icon.png │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ └── win_resources.rc │ │ ├── executable-wx-xrc │ │ │ ├── executable-wx-xrc.project │ │ │ ├── gui.wxcp │ │ │ ├── gui.xrc │ │ │ ├── icon.png │ │ │ ├── main.cpp │ │ │ └── main.h │ │ ├── executable-wxcrafter-dialog │ │ │ ├── MainDialog.cpp │ │ │ ├── MainDialog.hpp │ │ │ ├── icon.png │ │ │ ├── main.cpp │ │ │ ├── win_resources.rc │ │ │ ├── wxCrafter_MainDialog.project │ │ │ ├── wxcrafter.cpp │ │ │ ├── wxcrafter.hpp │ │ │ ├── wxcrafter.wxcp │ │ │ └── wxcrafter_bitmaps.cpp │ │ ├── executable-wxcrafter-frame │ │ │ ├── MainFrame.cpp │ │ │ ├── MainFrame.hpp │ │ │ ├── icon.png │ │ │ ├── main.cpp │ │ │ ├── win_resources.rc │ │ │ ├── wxCrafter_MainFrame.project │ │ │ ├── wxcrafter.cpp │ │ │ ├── wxcrafter.hpp │ │ │ ├── wxcrafter.wxcp │ │ │ └── wxcrafter_bitmaps.cpp │ │ ├── executable │ │ │ ├── executable.project │ │ │ ├── icon.png │ │ │ └── main.cpp │ │ ├── non-code-project │ │ │ ├── icon.png │ │ │ └── non-code.project │ │ ├── static-library-wx-enabled │ │ │ ├── icon.png │ │ │ ├── main.cpp │ │ │ └── static-library-wx-enabled.project │ │ ├── static-library │ │ │ ├── icon.png │ │ │ └── static-library.project │ │ ├── vc-dynamic-library │ │ │ ├── icon.png │ │ │ └── vc-dynamic-library.project │ │ ├── vc-executable │ │ │ ├── icon.png │ │ │ └── vc-executable.project │ │ ├── vc-static-lib │ │ │ ├── icon.png │ │ │ └── vc-static-lib.project │ │ └── wxWidgets_ConsoleApp │ │ │ ├── icon.png │ │ │ ├── main_app.cpp │ │ │ ├── main_app.h │ │ │ └── wxWidgets_ConsoleApp.project │ └── qmake │ │ └── qmake.project ├── update64.bat └── wx_excludes ├── Rust ├── CMakeLists.txt ├── CargoToml.cpp ├── CargoToml.hpp ├── RustPlugin.cpp ├── RustPlugin.hpp ├── RustWorkspace.cpp └── RustWorkspace.hpp ├── SFTP ├── CMakeLists.txt ├── SFTPBookmark.cpp ├── SFTPBookmark.h ├── SFTPGrep.cpp ├── SFTPGrep.h ├── SFTPGrepStyler.cpp ├── SFTPGrepStyler.h ├── SFTPManageBookmarkDlg.cpp ├── SFTPManageBookmarkDlg.h ├── SFTPQuickConnectDlg.cpp ├── SFTPQuickConnectDlg.h ├── SFTPSettingsDialog.cpp ├── SFTPSettingsDialog.h ├── SFTPStatusPage.cpp ├── SFTPStatusPage.h ├── SFTPTreeView.cpp ├── SFTPTreeView.h ├── SFTPUploadDialog.cpp ├── SFTPUploadDialog.h ├── UI.cpp ├── UI.h ├── UI.wxcp ├── UI_sftp_bitmaps.cpp ├── remote_file_info.cpp ├── remote_file_info.h ├── sftp.cpp ├── sftp.h ├── sftp_error.png ├── sftp_info.png ├── sftp_ok.png ├── sftp_worker_thread.cpp ├── sftp_worker_thread.h ├── sftp_workspace_settings.cpp └── sftp_workspace_settings.h ├── SmartCompletion ├── CMakeLists.txt ├── SmartCompletionUsageDB.cpp ├── SmartCompletionUsageDB.h ├── SmartCompletionsConfig.cpp ├── SmartCompletionsConfig.h ├── SmartCompletionsSettingsDlg.cpp ├── SmartCompletionsSettingsDlg.h ├── SmartCompletionsUI.cpp ├── SmartCompletionsUI.h ├── SmartCompletionsUI.wxcp ├── SmartCompletionsUI_smartcompletion_bitmaps.cpp ├── smartcompletion.cpp └── smartcompletion.h ├── SnipWiz ├── AboutHtml.h ├── CMakeLists.txt ├── editsnippetsbasedlg.cpp ├── editsnippetsbasedlg.h ├── editsnippetsdlg.cpp ├── editsnippetsdlg.h ├── snipwiz.cpp ├── snipwiz.h ├── snipwiz.pjd ├── snipwiz.rc ├── swGlobals.h ├── swStringDb.cpp ├── swStringDb.h ├── templateclassbasedlg.cpp ├── templateclassbasedlg.h ├── templateclassbasedlg.wxcp ├── templateclassbasedlg_snipwiz_bitmaps.cpp ├── templateclassdlg.cpp ├── templateclassdlg.h ├── wxSerialize.cpp └── wxSerialize.h ├── SpellChecker ├── CMakeLists.txt ├── CorrectSpellingDlg.cpp ├── CorrectSpellingDlg.h ├── IHunSpell.cpp ├── IHunSpell.h ├── SpellCheckerSettings.cpp ├── SpellCheckerSettings.h ├── dics │ ├── en_GB.aff │ ├── en_GB.dic │ ├── en_US.aff │ └── en_US.dic ├── res │ ├── contCheck16.b2c │ ├── contCheck16.png │ ├── contCheck22.b2c │ ├── contCheck22.png │ ├── spellcheck-16-continous.png │ ├── spellcheck-16.png │ ├── spellcheck-24-continous.png │ ├── spellcheck-24.png │ ├── spellcheck16.b2c │ ├── spellcheck16.png │ ├── spellcheck22.b2c │ └── spellcheck22.png ├── scGlobals.h ├── spellcheck.cpp ├── spellcheck.h ├── spellcheckeroptions.cpp ├── spellcheckeroptions.h ├── wxcrafter.cpp ├── wxcrafter.h ├── wxcrafter.wxcp └── wxcrafter_bitmaps.cpp ├── Subversion2 ├── CMakeLists.txt ├── SvnBlameFrame.cpp ├── SvnBlameFrame.h ├── SvnCommitDialog.cpp ├── SvnCommitDialog.h ├── SvnInfoDialog.cpp ├── SvnInfoDialog.h ├── SvnLogDialog.cpp ├── SvnLogDialog.h ├── SvnShowFileChangesHandler.cpp ├── SvnShowFileChangesHandler.h ├── SvnShowRecentChangesDlg.cpp ├── SvnShowRecentChangesDlg.h ├── changelogpage.cpp ├── changelogpage.h ├── clcommandlineparser.cpp ├── clcommandlineparser.h ├── commitmessagescache.cpp ├── commitmessagescache.h ├── diff_dialog.cpp ├── diff_dialog.h ├── subversion2.cpp ├── subversion2.h ├── subversion2.wxcp ├── subversion2_subversion2_bitmaps.cpp ├── subversion2_ui.cpp ├── subversion2_ui.h ├── subversion_password_db.cpp ├── subversion_password_db.h ├── subversion_strings.h ├── subversion_view.cpp ├── subversion_view.h ├── svn-icons │ ├── diff.png │ ├── general.png │ ├── integration.png │ └── secure.png ├── svn_checkout_dialog.cpp ├── svn_checkout_dialog.h ├── svn_command_handlers.cpp ├── svn_command_handlers.h ├── svn_console.cpp ├── svn_console.h ├── svn_copy_dialog.cpp ├── svn_copy_dialog.h ├── svn_default_command_handler.cpp ├── svn_default_command_handler.h ├── svn_local_properties.cpp ├── svn_local_properties.h ├── svn_login_dialog.cpp ├── svn_login_dialog.h ├── svn_overlay_tool.cpp ├── svn_overlay_tool.h ├── svn_patch_dlg.cpp ├── svn_patch_dlg.h ├── svn_preferences_dialog.cpp ├── svn_preferences_dialog.h ├── svn_props_dialog.cpp ├── svn_props_dialog.h ├── svn_select_local_repo_dlg.cpp ├── svn_select_local_repo_dlg.h ├── svn_sync_dialog.cpp ├── svn_sync_dialog.h ├── svnblameeditor.cpp ├── svnblameeditor.h ├── svncommand.cpp ├── svncommand.h ├── svncommandhandler.cpp ├── svncommandhandler.h ├── svninfo.h ├── svnsettingsdata.h ├── svnstatushandler.cpp ├── svnstatushandler.h ├── svntreedata.h ├── svnxml.cpp ├── svnxml.h ├── workspacesvnsettings.cpp ├── workspacesvnsettings.h ├── wxcrafter.cpp ├── wxcrafter.h ├── wxcrafter.wxcp └── wxcrafter_subversion2_bitmaps.cpp ├── TODO.md ├── Tail ├── CMakeLists.txt ├── TailData.h ├── TailFrame.cpp ├── TailFrame.h ├── TailPanel.cpp ├── TailPanel.h ├── TailUI.cpp ├── TailUI.h ├── TailUI.wxcp ├── TailUI_tail_bitmaps.cpp ├── tail.cpp └── tail.h ├── UnitTestCPP ├── CMakeLists.txt ├── NewClassTestBase.wxcp ├── NewClassTestBase_unittestcpp_bitmaps.cpp ├── newunittestbasedlg.cpp ├── newunittestbasedlg.h ├── newunittestdlg.cpp ├── newunittestdlg.h ├── testclassbasedlg.cpp ├── testclassbasedlg.h ├── testclassdlg.cpp ├── testclassdlg.h ├── unittestcppoutputparser.cpp ├── unittestcppoutputparser.h ├── unittestdata.cpp ├── unittestdata.h ├── unittestpp.cpp ├── unittestpp.h ├── unittestreport.cpp ├── unittestreport.h ├── unittestreport.wxcp ├── unittestreport_unittestcpp_bitmaps.cpp ├── unittestspage.cpp └── unittestspage.h ├── WordCompletion ├── CMakeLists.txt ├── UI.cpp ├── UI.h ├── UI.wxcp ├── UI_wordcompletion_bitmaps.cpp ├── WordCompletionDictionary.cpp ├── WordCompletionDictionary.h ├── WordCompletionRequestReply.h ├── WordCompletionSettings.cpp ├── WordCompletionSettings.h ├── WordCompletionSettingsDlg.cpp ├── WordCompletionSettingsDlg.h ├── WordCompletionThread.cpp ├── WordCompletionThread.h ├── WordTokenizer.l ├── WordTokenizerAPI.h ├── wordcompletion.cpp └── wordcompletion.h ├── ZoomNavigator ├── AUTHORS ├── CMakeLists.txt ├── LICENSE ├── znSettingsDlg.cpp ├── znSettingsDlg.h ├── zn_config_item.cpp ├── zn_config_item.h ├── zoom_navigator.cpp ├── zoom_navigator.h ├── zoom_navigator.wxcp ├── zoom_navigator_zoomnavigator_bitmaps.cpp ├── zoomnavigator.cpp ├── zoomnavigator.h ├── zoomtext.cpp └── zoomtext.h ├── _config.yml ├── abbreviation ├── CMakeLists.txt ├── abbreviation.cpp ├── abbreviation.h ├── abbreviationentry.cpp ├── abbreviationentry.h ├── abbreviationssettingsbase.cpp ├── abbreviationssettingsbase.h ├── abbreviationssettingsbase.wxcp ├── abbreviationssettingsbase_abbreviation_bitmaps.cpp ├── abbreviationssettingsdlg.cpp ├── abbreviationssettingsdlg.h └── images │ ├── abb-add.png │ ├── abb-delete.png │ ├── abb-export.png │ └── abb-import.png ├── about.html ├── art ├── cl-splash.png ├── cl-splash.xcf ├── cl-splash@2x.png ├── codelite-logo-no-bg.png ├── codelite-logo-no-bg.xcf ├── codelite-logo.xcf ├── codelite.xcf ├── splashscreen@2x.png └── wxcrafter.xcf ├── cmake └── Modules │ ├── FindClang.cmake │ ├── FindGLIB2.cmake │ ├── FindGTK3.cmake │ ├── FindLLVM.cmake │ ├── FindLibClang.cmake │ ├── FindLibLLDB.cmake │ ├── OSXDeps.cmake │ ├── OSXInstall.cmake │ ├── UtilsHelper.cmake │ └── plugin.cmake ├── codelite-generate-themes ├── CMakeLists.txt ├── codelite-generate-themes.workspace ├── codelite-generate-themes │ ├── ImportThemesDialog.cpp │ ├── ImportThemesDialog.h │ ├── codelite-generate-themes.project │ ├── main.cpp │ ├── my_pch.hpp │ ├── resources.rc │ ├── wxcrafter.cpp │ ├── wxcrafter.h │ ├── wxcrafter.wxcp │ └── wxcrafter_codelite-generate-themes_bitmaps.cpp └── themes │ ├── Github-Gruvbox-Theme.json │ ├── Gruvbox-Material-Dark.json │ ├── Gruvbox-Theme.json │ ├── Mariana.toml │ ├── Retta-light.xml │ ├── Solarized-Light-Alternate.xml │ ├── alabaster.toml │ ├── atom-dark-2.xml │ ├── atom-light.xml │ ├── bright-1.xml │ ├── bright-2.xml │ ├── dark-flash-builder.xml │ ├── dark-one-pro.json │ ├── darkside-contrast.json │ ├── darkside-light.json │ ├── darkside.json │ ├── dracula-2.xml │ ├── dracula.toml │ ├── earthsong-contrast.json │ ├── earthsong-light.json │ ├── earthsong.json │ ├── emcas-2.xml │ ├── emcas-green.xml │ ├── gedit.xml │ ├── hippos.xml │ ├── legacy-contrast.json │ ├── legacy-light.json │ ├── legacy.json │ ├── my-vim-dark.xml │ ├── oblivion.xml │ ├── recogeyes.xml │ ├── roboticket.xml │ ├── solarized-dark.json │ ├── sublime.xml │ ├── tangotango.json │ ├── tokyo-light.json │ ├── tokyo-night.json │ ├── tomorrow-night.xml │ ├── ubuntu.toml │ ├── vim-desert.xml │ └── vim-gellybeans.xml ├── codelite-icons-dark ├── about │ └── 32 │ │ └── paypal.png ├── aui │ ├── aui-close-inactive.png │ ├── aui-close.png │ ├── caption-active-left.png │ ├── caption-active-right.png │ └── caption-active.png ├── callgraph │ ├── 16 │ │ └── cg.png │ └── 24 │ │ └── cg.png ├── cc │ └── 16 │ │ ├── class.png │ │ ├── cpp-keyword.png │ │ ├── enum.png │ │ ├── enumerator.png │ │ ├── function_private.png │ │ ├── function_protected.png │ │ ├── function_public.png │ │ ├── globals.png │ │ ├── lock.png │ │ ├── macro.png │ │ ├── member_private.png │ │ ├── member_protected.png │ │ ├── member_public.png │ │ ├── namespace.png │ │ ├── next-tip.png │ │ ├── note.png │ │ ├── prev-tip.png │ │ ├── struct.png │ │ ├── typedef.png │ │ ├── union.png │ │ └── word.png ├── db-explorer │ └── 16 │ │ ├── column.png │ │ ├── connect.png │ │ ├── database.png │ │ ├── database_refresh.png │ │ ├── disconnect.png │ │ ├── table.png │ │ └── viewmagfit.png ├── list-control │ └── 16 │ │ ├── bullet_arrow_down.png │ │ └── bullet_arrow_up.png ├── manifest.ini ├── messages │ └── 48 │ │ ├── applications-debugging.png │ │ ├── info.png │ │ ├── process-stop.png │ │ ├── refresh.png │ │ ├── reload-workspace.png │ │ ├── system-upgrade.png │ │ └── tip.png ├── mime │ └── 16 │ │ ├── bitmap.png │ │ ├── document-code.png │ │ ├── document-empty.png │ │ ├── document-text.png │ │ ├── folder.png │ │ └── hard-disk.png ├── output-pane │ └── 16 │ │ ├── ToolPin.png │ │ ├── clear.png │ │ ├── errors.png │ │ ├── history.png │ │ ├── reload.png │ │ ├── tasks.png │ │ └── terminal.png ├── overlay │ └── 16 │ │ ├── conflicted.png │ │ ├── deleted.png │ │ ├── locked.png │ │ ├── modified.png │ │ ├── new.png │ │ ├── ok.png │ │ └── unversioned.png ├── pack-icons.bat ├── pack-icons.sh ├── quickfindbar │ ├── 16 │ │ ├── close.png │ │ ├── down.png │ │ ├── edit-find-replace.png │ │ ├── highlight.png │ │ └── up.png │ └── 32 │ │ └── q_and_a.png ├── status │ └── 16 │ │ ├── error-message.png │ │ ├── error.png │ │ ├── success-message.png │ │ ├── warning-message.png │ │ └── warning.png ├── subversion │ └── 16 │ │ ├── add.png │ │ ├── checkout.png │ │ ├── configure.png │ │ ├── conflict.png │ │ ├── eraser.png │ │ ├── info.png │ │ ├── locked.png │ │ ├── modified.png │ │ ├── refresh.png │ │ ├── remove.png │ │ ├── stop.png │ │ ├── svn.png │ │ └── unversioned.png ├── toolbars │ ├── 16 │ │ ├── build │ │ │ ├── build.png │ │ │ ├── clean.png │ │ │ ├── execute-stop.png │ │ │ ├── execute.png │ │ │ └── stop.png │ │ ├── codeformatter │ │ │ ├── formatter.png │ │ │ └── formatter_settings.png │ │ ├── cscope │ │ │ ├── cscope-calling-symbols.png │ │ │ ├── cscope-symbol-search.png │ │ │ └── cscope-symbols-calling.png │ │ ├── debugger │ │ │ ├── current-line.png │ │ │ ├── next.png │ │ │ ├── nexti.png │ │ │ ├── pause.png │ │ │ ├── play.png │ │ │ ├── restart.png │ │ │ ├── step-in.png │ │ │ ├── step-out.png │ │ │ └── stop.png │ │ ├── external-tools │ │ │ ├── cog.png │ │ │ ├── configure.png │ │ │ └── stop.png │ │ ├── search │ │ │ ├── edit-find-replace.png │ │ │ ├── edit-find.png │ │ │ ├── find-in-files.png │ │ │ ├── highlight.png │ │ │ ├── open-resource.png │ │ │ └── open-type.png │ │ ├── standard │ │ │ ├── back.png │ │ │ ├── bookmark.png │ │ │ ├── document-close.png │ │ │ ├── document-new.png │ │ │ ├── document-open.png │ │ │ ├── document-revert.png │ │ │ ├── document-save-all.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-undo.png │ │ │ └── forward.png │ │ └── unittest++ │ │ │ └── run-as-unit-test.png │ └── 24 │ │ ├── build │ │ ├── build.png │ │ ├── clean.png │ │ ├── execute-stop.png │ │ ├── execute.png │ │ └── stop.png │ │ ├── codeformatter │ │ ├── formatter.png │ │ └── formatter_settings.png │ │ ├── cscope │ │ ├── cscope-calling-symbols.png │ │ ├── cscope-symbol-search.png │ │ └── cscope-symbols-calling.png │ │ ├── debugger │ │ ├── current-line.png │ │ ├── next.png │ │ ├── nexti.png │ │ ├── pause.png │ │ ├── play.png │ │ ├── restart.png │ │ ├── step-in.png │ │ ├── step-out.png │ │ └── stop.png │ │ ├── external-tools │ │ ├── cog.png │ │ ├── configure.png │ │ └── stop.png │ │ ├── search │ │ ├── edit-find-replace.png │ │ ├── edit-find.png │ │ ├── find-in-files.png │ │ ├── highlight.png │ │ ├── open-resource.png │ │ └── open-type.png │ │ ├── standard │ │ ├── back.png │ │ ├── bookmark.png │ │ ├── document-close.png │ │ ├── document-new.png │ │ ├── document-open.png │ │ ├── document-revert.png │ │ ├── document-save-all.png │ │ ├── document-save-as.png │ │ ├── document-save.png │ │ ├── edit-copy.png │ │ ├── edit-cut.png │ │ ├── edit-paste.png │ │ ├── edit-redo.png │ │ ├── edit-undo.png │ │ └── forward.png │ │ └── unittest++ │ │ └── run-as-unit-test.png └── workspace │ └── 16 │ ├── project-active.png │ ├── project.png │ ├── workspace-php.png │ └── workspace.png ├── codelite-icons-fresh-farm ├── about │ └── 32 │ │ └── paypal.png ├── aui │ ├── aui-close-inactive.png │ ├── aui-close.png │ ├── caption-active-left.png │ ├── caption-active-right.png │ └── caption-active.png ├── callgraph │ ├── 16 │ │ └── cg.png │ └── 24 │ │ └── cg.png ├── cc │ └── 16 │ │ ├── class.png │ │ ├── cpp-keyword.png │ │ ├── enum.png │ │ ├── enumerator.png │ │ ├── function_private.png │ │ ├── function_protected.png │ │ ├── function_public.png │ │ ├── globals.png │ │ ├── lock.png │ │ ├── macro.png │ │ ├── member_private.png │ │ ├── member_protected.png │ │ ├── member_public.png │ │ ├── namespace.png │ │ ├── next-tip.png │ │ ├── note.png │ │ ├── prev-tip.png │ │ ├── struct.png │ │ ├── typedef.png │ │ ├── union.png │ │ └── word.png ├── db-explorer │ └── 16 │ │ ├── column.png │ │ ├── connect.png │ │ ├── database.png │ │ ├── database_refresh.png │ │ ├── disconnect.png │ │ ├── table.png │ │ └── viewmagfit.png ├── list-control │ └── 16 │ │ ├── bullet_arrow_down.png │ │ └── bullet_arrow_up.png ├── manifest.ini ├── messages │ └── 48 │ │ ├── applications-debugging.png │ │ ├── info.png │ │ ├── process-stop.png │ │ ├── refresh.png │ │ ├── reload-workspace.png │ │ ├── system-upgrade.png │ │ └── tip.png ├── mime │ └── 16 │ │ ├── asm.png │ │ ├── bmp.png │ │ ├── cmake-16.png │ │ ├── codedesigner.png │ │ ├── css.png │ │ ├── executable.png │ │ ├── folder.png │ │ ├── formbuilder.png │ │ ├── hard-disk.png │ │ ├── html.png │ │ ├── js.png │ │ ├── make.png │ │ ├── page_white_c.png │ │ ├── page_white_cplusplus.png │ │ ├── page_white_database.png │ │ ├── page_white_h.png │ │ ├── page_white_text.png │ │ ├── php.png │ │ ├── python.png │ │ ├── qmake.png │ │ ├── res.png │ │ ├── sharedlib.png │ │ ├── shellscript.png │ │ ├── sql.png │ │ ├── wxcrafter.png │ │ ├── xml.png │ │ └── zip.png ├── output-pane │ └── 16 │ │ ├── ToolPin.png │ │ ├── clear.png │ │ ├── errors.png │ │ ├── history.png │ │ ├── reload.png │ │ ├── tasks.png │ │ └── terminal.png ├── overlay │ └── 16 │ │ ├── conflicted.png │ │ ├── deleted.png │ │ ├── locked.png │ │ ├── modified.png │ │ ├── new.png │ │ ├── ok.png │ │ └── unversioned.png ├── pack-icons.bat ├── pack-icons.sh ├── quickfindbar │ ├── 16 │ │ ├── close.png │ │ ├── down.png │ │ ├── edit-find-replace.png │ │ ├── highlight.png │ │ └── up.png │ └── 32 │ │ └── q_and_a.png ├── status │ └── 16 │ │ ├── error-message.png │ │ ├── error.png │ │ ├── success-message.png │ │ ├── warning-message.png │ │ └── warning.png ├── subversion │ └── 16 │ │ ├── add.png │ │ ├── checkout.png │ │ ├── configure.png │ │ ├── conflict.png │ │ ├── eraser.png │ │ ├── info.png │ │ ├── locked.png │ │ ├── modified.png │ │ ├── refresh.png │ │ ├── remove.png │ │ ├── stop.png │ │ ├── svn.png │ │ └── unversioned.png ├── toolbars │ ├── 16 │ │ ├── build │ │ │ ├── build.png │ │ │ ├── clean.png │ │ │ ├── execute-stop.png │ │ │ ├── execute.png │ │ │ └── stop.png │ │ ├── codeformatter │ │ │ ├── formatter.png │ │ │ └── formatter_settings.png │ │ ├── cscope │ │ │ ├── cscope-calling-symbols.png │ │ │ ├── cscope-symbol-search.png │ │ │ └── cscope-symbols-calling.png │ │ ├── debugger │ │ │ ├── current-line.png │ │ │ ├── next.png │ │ │ ├── nexti.png │ │ │ ├── pause.png │ │ │ ├── play.png │ │ │ ├── restart.png │ │ │ ├── step-in.png │ │ │ ├── step-out.png │ │ │ └── stop.png │ │ ├── external-tools │ │ │ ├── cog.png │ │ │ ├── configure.png │ │ │ └── stop.png │ │ ├── search │ │ │ ├── edit-find-replace.png │ │ │ ├── edit-find.png │ │ │ ├── find-in-files.png │ │ │ ├── highlight.png │ │ │ ├── open-resource.png │ │ │ └── open-type.png │ │ ├── standard │ │ │ ├── back.png │ │ │ ├── bookmark.png │ │ │ ├── document-close.png │ │ │ ├── document-new.png │ │ │ ├── document-open.png │ │ │ ├── document-revert.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-undo.png │ │ │ ├── forward.png │ │ │ └── save_all.png │ │ └── unittest++ │ │ │ └── run-as-unit-test.png │ └── 24 │ │ ├── build │ │ ├── build.png │ │ ├── clean.png │ │ ├── execute-stop.png │ │ ├── execute.png │ │ └── stop.png │ │ ├── codeformatter │ │ ├── formatter.png │ │ └── formatter_settings.png │ │ ├── cscope │ │ ├── cscope-calling-symbols.png │ │ ├── cscope-symbol-search.png │ │ └── cscope-symbols-calling.png │ │ ├── debugger │ │ ├── current-line.png │ │ ├── next.png │ │ ├── nexti.png │ │ ├── pause.png │ │ ├── play.png │ │ ├── restart.png │ │ ├── step-in.png │ │ ├── step-out.png │ │ └── stop.png │ │ ├── external-tools │ │ ├── cog.png │ │ ├── configure.png │ │ └── stop.png │ │ ├── search │ │ ├── edit-find-replace.png │ │ ├── edit-find.png │ │ ├── find-in-files.png │ │ ├── highlight.png │ │ ├── open-resource.png │ │ └── open-type.png │ │ ├── standard │ │ ├── back.png │ │ ├── bookmark.png │ │ ├── document-close.png │ │ ├── document-new.png │ │ ├── document-open.png │ │ ├── document-revert.png │ │ ├── document-save-as.png │ │ ├── document-save.png │ │ ├── edit-copy.png │ │ ├── edit-cut.png │ │ ├── edit-paste.png │ │ ├── edit-redo.png │ │ ├── edit-undo.png │ │ ├── forward.png │ │ └── save_all.png │ │ └── unittest++ │ │ └── run-as-unit-test.png └── workspace │ └── 16 │ ├── project-active.png │ ├── project.png │ ├── virtual-folder.png │ ├── workspace-php.png │ └── workspace.png ├── codelite-icons ├── about │ └── 32 │ │ └── paypal.png ├── aui │ ├── aui-close-inactive.png │ ├── aui-close.png │ ├── caption-active-left.png │ ├── caption-active-right.png │ └── caption-active.png ├── callgraph │ ├── 16 │ │ └── cg.png │ └── 24 │ │ └── cg.png ├── cc │ └── 16 │ │ ├── class.png │ │ ├── cpp-keyword.png │ │ ├── enum.png │ │ ├── enumerator.png │ │ ├── function_private.png │ │ ├── function_protected.png │ │ ├── function_public.png │ │ ├── globals.png │ │ ├── lock.png │ │ ├── macro.png │ │ ├── member_private.png │ │ ├── member_protected.png │ │ ├── member_public.png │ │ ├── namespace.png │ │ ├── next-tip.png │ │ ├── note.png │ │ ├── prev-tip.png │ │ ├── struct.png │ │ ├── typedef.png │ │ ├── union.png │ │ └── word.png ├── db-explorer │ └── 16 │ │ ├── column.png │ │ ├── connect.png │ │ ├── database.png │ │ ├── database_refresh.png │ │ ├── disconnect.png │ │ ├── table.png │ │ └── viewmagfit.png ├── list-control │ └── 16 │ │ ├── bullet_arrow_down.png │ │ └── bullet_arrow_up.png ├── manifest.ini ├── messages │ └── 48 │ │ ├── applications-debugging.png │ │ ├── info.png │ │ ├── process-stop.png │ │ ├── refresh.png │ │ ├── reload-workspace.png │ │ ├── system-upgrade.png │ │ └── tip.png ├── mime │ └── 16 │ │ ├── asm.png │ │ ├── bmp.png │ │ ├── cmake-16.png │ │ ├── codedesigner.png │ │ ├── css.png │ │ ├── executable.png │ │ ├── folder.png │ │ ├── formbuilder.png │ │ ├── hard-disk.png │ │ ├── html.png │ │ ├── js.png │ │ ├── make.png │ │ ├── page_white_c.png │ │ ├── page_white_cplusplus.png │ │ ├── page_white_database.png │ │ ├── page_white_h.png │ │ ├── page_white_text.png │ │ ├── php.png │ │ ├── python.png │ │ ├── qmake.png │ │ ├── res.png │ │ ├── sharedlib.png │ │ ├── shellscript.png │ │ ├── sql.png │ │ ├── wxcrafter.png │ │ ├── xml.png │ │ └── zip.png ├── output-pane │ └── 16 │ │ ├── ToolPin.png │ │ ├── auto-scroll.png │ │ ├── clear.png │ │ ├── errors.png │ │ ├── history.png │ │ ├── reload.png │ │ ├── tasks.png │ │ └── terminal.png ├── overlay │ └── 16 │ │ ├── conflicted.png │ │ ├── deleted.png │ │ ├── locked.png │ │ ├── modified.png │ │ ├── new.png │ │ ├── ok.png │ │ └── unversioned.png ├── pack-icons.bat ├── pack-icons.sh ├── quickfindbar │ ├── 16 │ │ ├── close.png │ │ ├── down.png │ │ ├── edit-find-replace.png │ │ ├── highlight.png │ │ └── up.png │ └── 32 │ │ └── q_and_a.png ├── status │ └── 16 │ │ ├── error-message.png │ │ ├── error.png │ │ ├── success-message.png │ │ ├── warning-message.png │ │ └── warning.png ├── subversion │ └── 16 │ │ ├── add.png │ │ ├── checkout.png │ │ ├── configure.png │ │ ├── conflict.png │ │ ├── eraser.png │ │ ├── info.png │ │ ├── locked.png │ │ ├── modified.png │ │ ├── refresh.png │ │ ├── remove.png │ │ ├── stop.png │ │ ├── svn.png │ │ └── unversioned.png ├── toolbars │ ├── 16 │ │ ├── build │ │ │ ├── build.png │ │ │ ├── clean.png │ │ │ ├── execute-stop.png │ │ │ ├── execute.png │ │ │ └── stop.png │ │ ├── codeformatter │ │ │ ├── formatter.png │ │ │ └── formatter_settings.png │ │ ├── cscope │ │ │ ├── cscope-calling-symbols.png │ │ │ ├── cscope-symbol-search.png │ │ │ └── cscope-symbols-calling.png │ │ ├── debugger │ │ │ ├── current-line.png │ │ │ ├── next.png │ │ │ ├── nexti.png │ │ │ ├── pause.png │ │ │ ├── play.png │ │ │ ├── restart.png │ │ │ ├── step-in.png │ │ │ ├── step-out.png │ │ │ └── stop.png │ │ ├── external-tools │ │ │ ├── cog.png │ │ │ ├── configure.png │ │ │ └── stop.png │ │ ├── search │ │ │ ├── edit-find-replace.png │ │ │ ├── edit-find.png │ │ │ ├── find-in-files.png │ │ │ ├── highlight.png │ │ │ ├── open-resource.png │ │ │ └── open-type.png │ │ ├── standard │ │ │ ├── back.png │ │ │ ├── bookmark.png │ │ │ ├── document-close.png │ │ │ ├── document-new.png │ │ │ ├── document-open.png │ │ │ ├── document-revert.png │ │ │ ├── document-save-all.png │ │ │ ├── document-save-as.png │ │ │ ├── document-save.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-undo.png │ │ │ └── forward.png │ │ └── unittest++ │ │ │ └── run-as-unit-test.png │ └── 24 │ │ ├── build │ │ ├── build.png │ │ ├── clean.png │ │ ├── execute-stop.png │ │ ├── execute.png │ │ └── stop.png │ │ ├── codeformatter │ │ ├── formatter.png │ │ └── formatter_settings.png │ │ ├── cscope │ │ ├── cscope-calling-symbols.png │ │ ├── cscope-symbol-search.png │ │ └── cscope-symbols-calling.png │ │ ├── debugger │ │ ├── current-line.png │ │ ├── next.png │ │ ├── nexti.png │ │ ├── pause.png │ │ ├── play.png │ │ ├── restart.png │ │ ├── step-in.png │ │ ├── step-out.png │ │ └── stop.png │ │ ├── external-tools │ │ ├── cog.png │ │ ├── configure.png │ │ └── stop.png │ │ ├── search │ │ ├── edit-find-replace.png │ │ ├── edit-find.png │ │ ├── find-in-files.png │ │ ├── highlight.png │ │ ├── open-resource.png │ │ └── open-type.png │ │ ├── standard │ │ ├── back.png │ │ ├── bookmark.png │ │ ├── document-close.png │ │ ├── document-new.png │ │ ├── document-open.png │ │ ├── document-revert.png │ │ ├── document-save-all.png │ │ ├── document-save.png │ │ ├── edit-copy.png │ │ ├── edit-cut.png │ │ ├── edit-paste.png │ │ ├── edit-redo.png │ │ ├── edit-undo.png │ │ └── forward.png │ │ └── unittest++ │ │ └── run-as-unit-test.png └── workspace │ └── 16 │ ├── project-active.png │ ├── project.png │ ├── virtual-folder.png │ ├── workspace-php.png │ └── workspace.png ├── codelite.spec ├── codelite.xml ├── codelite_echo ├── CMakeLists.txt ├── codelite_echo.project ├── codelite_echo.workspace └── main.c ├── codelite_make ├── CMakeLists.txt ├── cl_make_generator_app.cpp ├── cl_make_generator_app.h ├── codelite_make.project └── codelite_make.workspace ├── codelite_makedir ├── CMakeLists.txt └── makedir.cpp ├── codelite_open_helper.py ├── codelite_prefix.h ├── codelite_vim ├── CMakeLists.txt ├── README.txt ├── VIM.cpp ├── VIM.h ├── VIM.wxcp ├── VIM_codelite_vim_bitmaps.cpp ├── VimSettings.cpp ├── VimSettings.h ├── VimSettingsDlg.cpp ├── VimSettingsDlg.h ├── codelite_vim.cpp ├── codelite_vim.h ├── vimCommands.cpp ├── vimCommands.h ├── vim_manager.cpp └── vim_manager.h ├── codelitephp ├── CMakeLists.txt ├── PHPParser │ ├── FilesCollector.cpp │ ├── FilesCollector.h │ ├── PHPSetterGetterEntry.cpp │ ├── PHPSetterGetterEntry.h │ ├── PHPTerminal.cpp │ ├── PHPTerminal.h │ ├── PHPUserWorkspace.cpp │ ├── PHPUserWorkspace.h │ ├── PHPWrokspaceStorageInterface.h │ ├── XDebugBreakpoint.cpp │ ├── XDebugBreakpoint.h │ ├── clplatform.cpp │ ├── clplatform.h │ ├── php_code_completion.cpp │ ├── php_code_completion.h │ ├── php_configuration_data.cpp │ ├── php_configuration_data.h │ ├── php_event.cpp │ ├── php_event.h │ ├── php_parser_thread.cpp │ ├── php_parser_thread.h │ ├── php_project.cpp │ ├── php_project.h │ ├── php_project_settings_data.cpp │ ├── php_project_settings_data.h │ ├── php_strings.h │ ├── php_utils.cpp │ ├── php_utils.h │ ├── php_workspace.cpp │ ├── php_workspace.h │ ├── phpexecutor.cpp │ ├── phpexecutor.h │ └── test.php ├── PHPParserUnitTests │ ├── Tests │ │ ├── Test.phpwsp │ │ ├── Tests.phprj │ │ ├── test_abstract_class_with_self.php │ │ ├── test_cc_with_keywords.php │ │ ├── test_class_extends.php │ │ ├── test_class_member_initialized.php │ │ ├── test_class_members.php │ │ ├── test_class_with_members_inside_namespace.php │ │ ├── test_constants.php │ │ ├── test_define.php │ │ ├── test_define_in_namespace.php │ │ ├── test_define_with_namespace.php │ │ ├── test_expression_parser_for_partial_word.php │ │ ├── test_extends_with_namespace.php │ │ ├── test_foreach.php │ │ ├── test_func_arg_in_lambda_in_assignment.php │ │ ├── test_function_arg_type_hint_and_php_doc.php │ │ ├── test_function_phpdoc.php │ │ ├── test_global_func.php │ │ ├── test_global_func_return_value.php │ │ ├── test_global_variable_assigned_from_function.php │ │ ├── test_goto_def_with_trait.php │ │ ├── test_interface.php │ │ ├── test_locals.php │ │ ├── test_long_chain.php │ │ ├── test_parent.php │ │ ├── test_parsing_abstract_class.php │ │ ├── test_partial_namespace.php │ │ ├── test_partial_namespace_helper.php │ │ ├── test_php7_function_arg_hinting.php │ │ ├── test_php7_function_return_value.php │ │ ├── test_phpdoc_method.php │ │ ├── test_phpdoc_property.php │ │ ├── test_phpdoc_var_in_class.php │ │ ├── test_simple_trait.php │ │ ├── test_this_operator.php │ │ ├── test_trait_alias.php │ │ ├── test_use_alias_operator.php │ │ ├── test_use_trait.php │ │ ├── test_var_assigned_from_require.php │ │ ├── test_variable_1.php │ │ ├── test_variable_2.php │ │ ├── test_variable_assigned_from_function.php │ │ ├── test_word_complete_of_aliases.php │ │ ├── test_word_completion.php │ │ ├── test_word_completion_after_casting.php │ │ ├── test_word_completion_inside_ns.php │ │ ├── test_word_completion_local_variable_1.php │ │ ├── test_word_completion_local_variable_2.php │ │ └── test_wrong_goto_interface.php │ ├── main.cpp │ ├── tester.cpp │ └── tester.h ├── php-plugin │ ├── FileMappingDlg.cpp │ ├── FileMappingDlg.h │ ├── NewPHPClass.cpp │ ├── NewPHPClass.h │ ├── NewPHPProjectWizard.cpp │ ├── NewPHPProjectWizard.h │ ├── PHPDebugPane.cpp │ ├── PHPDebugPane.h │ ├── PHPDebugStartDlg.cpp │ ├── PHPDebugStartDlg.h │ ├── PHPSettersGettersDialog.cpp │ ├── PHPSettersGettersDialog.h │ ├── PHPXDebugSetupWizard.cpp │ ├── PHPXDebugSetupWizard.h │ ├── PhpSFTPHandler.cpp │ ├── PhpSFTPHandler.h │ ├── TODO.TXT │ ├── XDebugBreakpointCmdHandler.cpp │ ├── XDebugBreakpointCmdHandler.h │ ├── XDebugCommThread.cpp │ ├── XDebugCommThread.h │ ├── XDebugCommandHandler.cpp │ ├── XDebugCommandHandler.h │ ├── XDebugContextGetCmdHandler.cpp │ ├── XDebugContextGetCmdHandler.h │ ├── XDebugEvalCmdHandler.cpp │ ├── XDebugEvalCmdHandler.h │ ├── XDebugManager.cpp │ ├── XDebugManager.h │ ├── XDebugPropertyGetHandler.cpp │ ├── XDebugPropertyGetHandler.h │ ├── XDebugRunCmdHandler.cpp │ ├── XDebugRunCmdHandler.h │ ├── XDebugStackGetCmdHandler.cpp │ ├── XDebugStackGetCmdHandler.h │ ├── XDebugStopCmdHandler.cpp │ ├── XDebugStopCmdHandler.h │ ├── XDebugTester.cpp │ ├── XDebugTester.h │ ├── XDebugUnknownCommand.cpp │ ├── XDebugUnknownCommand.h │ ├── XVariable.cpp │ ├── XVariable.h │ ├── evalpane.cpp │ ├── evalpane.h │ ├── localsview.cpp │ ├── localsview.h │ ├── my_tree_view.cpp │ ├── my_tree_view.h │ ├── new_class.cpp │ ├── new_class.h │ ├── new_class.wxcp │ ├── new_class_php-plugin_bitmaps.cpp │ ├── new_php_workspace_dlg.cpp │ ├── new_php_workspace_dlg.h │ ├── php.cpp │ ├── php.h │ ├── php_editor_context_menu.cpp │ ├── php_editor_context_menu.h │ ├── php_file_layout_tree.cpp │ ├── php_file_layout_tree.h │ ├── php_open_resource_dlg.cpp │ ├── php_open_resource_dlg.h │ ├── php_project_settings_dlg.cpp │ ├── php_project_settings_dlg.h │ ├── php_settings_dlg.cpp │ ├── php_settings_dlg.h │ ├── php_ui.cpp │ ├── php_ui.h │ ├── php_ui.wxcp │ ├── php_ui_php-plugin_bitmaps.cpp │ ├── php_view_model.h │ ├── php_workspace_view.cpp │ ├── php_workspace_view.h │ ├── quick_outline_dlg.cpp │ ├── quick_outline_dlg.h │ ├── ssh_workspace_settings.cpp │ ├── ssh_workspace_settings.h │ ├── tree_item_data.h │ ├── xdebugbreakpointsmgr.cpp │ ├── xdebugbreakpointsmgr.h │ ├── xdebugevent.cpp │ └── xdebugevent.h └── resources │ ├── TestXDebugSettings.php │ ├── cc │ ├── .list │ └── superglobals.php │ ├── cloud-copy.png │ ├── console.png │ ├── delete-all.png │ ├── delete-one.png │ ├── devil.png │ ├── elephant.png │ ├── go.png │ ├── pack-resources.sh │ ├── php-file.png │ ├── php-project-settings.png │ ├── php-workspace.png │ ├── php.png │ ├── refresh.png │ ├── splashscreen.png │ ├── workspace-php.png │ ├── workspace.png │ └── xdebug-16.png ├── compilers.json ├── cppchecker ├── CMakeLists.txt ├── cppchecker.cpp ├── cppchecker.h ├── cppchecksettingsdlg.cpp ├── cppchecksettingsdlg.h ├── cppchecksettingsdlg.wxcp ├── cppchecksettingsdlg_cppchecker_bitmaps.cpp ├── cppchecksettingsdlgbase.cpp └── cppchecksettingsdlgbase.h ├── cscope ├── CMakeLists.txt ├── CScopeSettingsDlg.cpp ├── CScopeSettingsDlg.h ├── CscopeTabBase.cpp ├── CscopeTabBase.h ├── CscopeTabBase.wxcp ├── CscopeTabBase_cscope_bitmaps.cpp ├── cscope.cpp ├── cscope.h ├── cscopedbbuilderthread.cpp ├── cscopedbbuilderthread.h ├── cscopeentrydata.cpp ├── cscopeentrydata.h ├── cscopestatusmessage.cpp ├── cscopestatusmessage.h ├── cscopetab.cpp ├── cscopetab.h ├── cscoptviewresultsmodel.cpp ├── cscoptviewresultsmodel.h ├── csscopeconfdata.cpp └── csscopeconfdata.h ├── ctagsd ├── CMakeLists.txt ├── ctagsd.project ├── ctagsd_app.project ├── ctagsd_windows.workspace ├── lib │ ├── Channel.cpp │ ├── Channel.hpp │ ├── LSPUtils.cpp │ ├── LSPUtils.hpp │ ├── ParseThread.cpp │ ├── ParseThread.hpp │ ├── ProtocolHandler.cpp │ ├── ProtocolHandler.hpp │ ├── Scanner.cpp │ ├── Scanner.hpp │ ├── Settings.cpp │ ├── Settings.hpp │ ├── SimpleTokenizer.cpp │ ├── SimpleTokenizer.hpp │ └── ctagsdlib.project ├── main.cpp └── tests │ ├── ctagsd-tests.project │ ├── main.cpp │ ├── src │ └── samples │ │ ├── anonymous_class.hpp │ │ ├── locals.hpp │ │ ├── member_of_parent_class.hpp │ │ ├── my_dialog.hpp │ │ ├── namespace_precedence.hpp │ │ ├── sample_function_returning_unique_ptr.hpp │ │ └── template_function.hpp │ ├── strings.hpp │ ├── tester.cpp │ └── tester.hpp ├── docs ├── README.md ├── docs │ ├── AI │ │ └── ai.md │ ├── LUA │ │ ├── lua.md │ │ └── overview.md │ ├── assets │ │ ├── add-new-endpoint-1.png │ │ ├── add-new-endpoint-2.png │ │ ├── chat-box.png │ │ └── menu-new-endpoint.png │ ├── build │ │ ├── build_from_sources.md │ │ ├── build_wx_widgets.md │ │ └── mingw_builds.md │ ├── code_completion │ │ └── cxx.md │ ├── debuggers │ │ ├── gdb.md │ │ ├── images │ │ │ ├── gdb_bp_1.png │ │ │ ├── gdb_bp_2.png │ │ │ ├── gdb_bp_3.png │ │ │ ├── gdb_bp_types.png │ │ │ ├── gdb_no_pretty_printing.png │ │ │ ├── gdb_pane.png │ │ │ ├── gdb_toolbar.png │ │ │ ├── gdb_with_pretty_printing.png │ │ │ ├── lldb_bp_new.png │ │ │ ├── lldb_bp_view.png │ │ │ ├── lldb_callstack_view.png │ │ │ ├── lldb_layout.png │ │ │ ├── lldb_locals_view.png │ │ │ ├── lldb_project_settings.png │ │ │ ├── lldb_qstring_bad.png │ │ │ ├── lldb_qstring_good.png │ │ │ ├── lldb_threads_view.png │ │ │ ├── quick_debug_dialog.png │ │ │ ├── quick_debug_dialog_ssh.png │ │ │ ├── xdebug.png │ │ │ └── xdebug_wait.png │ │ ├── nodejs.md │ │ ├── quick_debug.md │ │ └── xdebug.md │ ├── deploy.sh │ ├── downloads │ │ ├── download.md │ │ └── oldDownloads │ │ │ ├── Repositories.181.md │ │ │ ├── Repositories12.md │ │ │ ├── Repositories13.md │ │ │ ├── Repositories14.md │ │ │ ├── Repositories15.md │ │ │ ├── Repositories16.md │ │ │ └── Repositories17.md │ ├── getting_started │ │ ├── linux.md │ │ ├── macos.md │ │ └── windows.md │ ├── hello_world.md │ ├── img │ │ └── hello_world │ │ │ ├── build.png │ │ │ └── new_project.png │ ├── index.md │ ├── misc │ │ ├── bookmarks.md │ │ ├── cc_wrapper.md │ │ ├── images │ │ │ ├── bk_1.png │ │ │ ├── bk_2.png │ │ │ ├── bk_3.png │ │ │ ├── misc_workspace_editor_preferences.png │ │ │ ├── rec_1.png │ │ │ ├── rec_2.png │ │ │ ├── rec_3.png │ │ │ ├── rec_4.png │ │ │ ├── rec_5.png │ │ │ ├── rust-win-1.png │ │ │ ├── rust-win-2.png │ │ │ ├── tg_1.png │ │ │ ├── tg_2.png │ │ │ ├── ur_1.png │ │ │ ├── ur_2.png │ │ │ └── ur_3.png │ │ ├── install_rust.md │ │ ├── local_preferences.md │ │ ├── reconcile_project.md │ │ ├── tabgroups.md │ │ ├── tips_and_tricks.md │ │ └── ur.md │ ├── plugins │ │ ├── cmake.md │ │ ├── codeformatter.md │ │ ├── cppcheck.md │ │ ├── dap.md │ │ ├── git.md │ │ ├── images │ │ │ ├── auto-doc.gif │ │ │ ├── chat-ai-1.png │ │ │ ├── chat-ai-2.png │ │ │ ├── chat-ai-3.png │ │ │ ├── chat-ai-4.png │ │ │ ├── chat-ai.gif │ │ │ ├── cppcheck_add_supression_dlg.png │ │ │ ├── cppcheck_settings.png │ │ │ ├── git.gif │ │ │ ├── git_console.png │ │ │ ├── qmake_settings.png │ │ │ ├── release-notes.gif │ │ │ ├── svn_build_number.png │ │ │ ├── svn_changes_view.png │ │ │ ├── svn_hidden.png │ │ │ ├── svn_tool_bar.png │ │ │ ├── svn_view.png │ │ │ ├── ut_create_tests.png │ │ │ ├── ut_output_view.png │ │ │ ├── ut_output_view_err.png │ │ │ ├── ut_test_code.png │ │ │ ├── ut_tests_dlg.png │ │ │ ├── wxc_add_sizer.png │ │ │ ├── wxc_button.png │ │ │ ├── wxc_button_handler.png │ │ │ ├── wxc_designer.png │ │ │ ├── wxc_expand_button.png │ │ │ ├── wxc_files.png │ │ │ ├── wxc_gen_code.png │ │ │ ├── wxc_hello_world.png │ │ │ └── wxc_project.png │ │ ├── lsp.md │ │ ├── qmake.md │ │ ├── remoty.md │ │ ├── rust.md │ │ ├── sftp.md │ │ ├── sftp_toolbar.png │ │ ├── snipwiz.md │ │ ├── snipwiz_template_class_wizard.png │ │ ├── ssh_account_manager_dialog.png │ │ ├── svn.md │ │ ├── ut.md │ │ └── wxcrafter.md │ ├── release_notes │ │ ├── images │ │ │ ├── 16 │ │ │ │ ├── cl-dark-16.png │ │ │ │ ├── coloured-build.png │ │ │ │ └── coloured-tip.png │ │ │ └── 17 │ │ │ │ ├── find-in-files.png │ │ │ │ ├── preferences.png │ │ │ │ └── remoty-context-menu.png │ │ ├── v16_0_0.md │ │ ├── v17_0_0.md │ │ ├── v18_0_0.md │ │ └── v18_2_0.md │ ├── settings │ │ ├── build_settings.md │ │ ├── colours_and_fonts.md │ │ ├── colours_and_fonts_eclipse.png │ │ ├── copy_compiler.png │ │ ├── download_xml.png │ │ ├── environment_variables.md │ │ ├── keyboard_shortcuts.md │ │ ├── macros.md │ │ ├── new_compiler.png │ │ ├── new_compiler_2.png │ │ └── new_compiler_entry.png │ ├── stylesheets │ │ ├── body-bg.png │ │ ├── extra.css │ │ └── highlight-bg.jpg │ ├── workspaces │ │ ├── configuration-manager-dlg.png │ │ ├── configuration-manager-menu.png │ │ ├── configuration-manager-project-menu.png │ │ ├── default.md │ │ ├── default_project_settings_dlg.png │ │ ├── default_project_settings_menu.png │ │ ├── file_system.md │ │ ├── fsw_generate_compile_flags.png │ │ ├── fsw_settings_build_menu.png │ │ ├── fsw_settings_menu.png │ │ ├── nodejs.md │ │ ├── php.md │ │ ├── php_hello_world_console.png │ │ └── php_tree_view_1.png │ └── wxWidgets │ │ ├── docs │ │ └── docs │ │ │ └── wxWidgets │ │ │ └── repo323.md │ │ ├── repo315.md │ │ ├── repo316.md │ │ ├── repo317.md │ │ ├── repo32.md │ │ ├── repo320.md │ │ ├── repo321.md │ │ ├── repo3221 │ │ └── repo323.md ├── mkdocs.yml └── mkdocs_wsp.workspace ├── formbuilder ├── AddOptionCheckDlg.fbp ├── AttachDbgProcBaseDlg.fbp ├── BatchBuildBaseDlg.fbp ├── BuildPage.fbp ├── CCBoxBase.fbp ├── CopyrightsProjectSelBaseDlg.fbp ├── CscopeTabBase.fbp ├── DbgCommandBaseDlg.fbp ├── EditCmpFileInfoBase.fbp ├── MacrosBaseDlg.fbp ├── MemoryViewBase.fbp ├── NewIneritance.fbp ├── NewToolBase.fbp ├── NewToolBase.wxcp ├── NewUnitTestBaseDlg.fbp ├── NewWxItem.fbp ├── NewWxProjectBaseDlg.fbp ├── OpenWindowsPanelBase.fbp ├── PluginWizard_P1.fbp ├── PluginWizard_P2.fbp ├── QuickOutline.fbp ├── SnipptSettings.fbp ├── VirtualDirectorySelector.fbp ├── add_dialog.fbp ├── advance_settings.fbp ├── close_all_dialog.fbp ├── comment_panel.fbp ├── configuration_manager.fbp ├── copyrights_options.fbp ├── debugcoredump.fbp ├── depend_dlg_page.fbp ├── depends_dlg.fbp ├── dialogspage.fbp ├── edit_configuration.fbp ├── editorsettingslocalbase.fbp ├── editorsettingslocalbase.wxcp ├── eidt_workspace_conf_dlg.fbp ├── envvar_dlg.fbp ├── envvar_table_dlg.fbp ├── external_tools.fbp ├── external_tools.wxcp ├── filechecklistbase.fbp ├── findinfiles_dlg.wxcp ├── fnb_customize_dlg.fbp ├── formbuildsettingsbasedlg.fbp ├── free_text)dialog.fbp ├── lexer_page.fbp ├── listctrlpanel.fbp ├── listctrlpanel.wxcp ├── move_func_impl.fbp ├── new_configuration.fbp ├── new_item_dlg.fbp ├── new_item_dlg.wxcp ├── progress_dialog.fbp ├── project_settings.fbp ├── quickdebug.wxcp ├── rename_symbool_dlg.fbp ├── rename_symbool_dlg.wxcp ├── results_dialog.fbp ├── setters_getters.wxcp ├── simpletable.fbp ├── tags_options_base_dlg.wxcp ├── unittestreport.fbp └── yesnodlg.fbp ├── gdbparser ├── CMakeLists.txt ├── gdb_parser_incl.h ├── gdb_result.l ├── gdb_result.y └── main.cpp ├── git ├── CMakeLists.txt ├── GitApplyPatchDlg.cpp ├── GitApplyPatchDlg.h ├── GitBlamePage.cpp ├── GitBlamePage.h ├── GitConsole.cpp ├── GitConsole.h ├── GitDiffOutputParser.cpp ├── GitDiffOutputParser.h ├── GitLocator.cpp ├── GitLocator.h ├── GitReleaseNotesGenerationDlg.cpp ├── GitReleaseNotesGenerationDlg.h ├── GitResetDlg.cpp ├── GitResetDlg.h ├── GitStatusCode.cpp ├── GitStatusCode.hpp ├── GitUserEmailDialog.cpp ├── GitUserEmailDialog.h ├── dataviewfilesmodel.cpp ├── dataviewfilesmodel.h ├── git.cpp ├── git.h ├── gitCloneDlg.cpp ├── gitCloneDlg.h ├── gitCommitDlg.cpp ├── gitCommitDlg.h ├── gitCommitEditor.cpp ├── gitCommitEditor.h ├── gitCommitListDlg.cpp ├── gitCommitListDlg.h ├── gitDiffDlg.cpp ├── gitDiffDlg.h ├── gitFileDiffDlg.cpp ├── gitFileDiffDlg.h ├── gitLogDlg.cpp ├── gitLogDlg.h ├── gitSettingsDlg.cpp ├── gitSettingsDlg.h ├── gitdiffchoosecommitishdlg.cpp ├── gitdiffchoosecommitishdlg.h ├── gitentry.cpp ├── gitentry.h ├── gitui.cpp ├── gitui.h ├── gitui.wxcp ├── gitui_git_bitmaps.cpp └── icons │ ├── icon_git.xpm │ └── png │ ├── 1356491877_document_inspect.png │ ├── apply-patch.png │ ├── arrow-up.png │ ├── git-add-file.png │ ├── git-arrow-down.png │ ├── git-branch-new.png │ ├── git-branch-remote.png │ ├── git-branch.png │ ├── git-clone.png │ ├── git-diffs.png │ ├── git-list-commits.png │ ├── git-list-modified.png │ ├── git-pull.png │ ├── git-push.png │ ├── git-rebase.png │ ├── git-refresh.png │ ├── git-reset-repo.png │ ├── git-reset.png │ ├── git-settings.png │ ├── git-start.png │ ├── git-trash.png │ ├── git.png │ ├── gitStash.png │ ├── gitStashPop.png │ ├── msysgit.png │ └── plus.png ├── icons ├── add.png ├── asm.png ├── build-animation-sprite.png ├── build-error.png ├── build-warning.png ├── clear-all.png ├── close.png ├── cogs.png ├── delete-line.png ├── edit.png ├── fif-clear.png ├── fif-menu.png ├── indent.png ├── margins.png ├── misc.png ├── resize.png └── wand.png ├── le_exec ├── CMakeLists.txt ├── le_exe.workspace ├── le_exec.project └── main.cpp ├── scripts ├── cmake-format.sh ├── make_src_targz.sh └── run_install_name_tool.py ├── sdk ├── databaselayer │ ├── CMakeLists.txt │ ├── databaselayer_mysql.project │ ├── databaselayer_postgres.project │ ├── databaselayer_sqlite.project │ ├── db_layer.workspace │ ├── include │ │ └── wx │ │ │ └── dblayer │ │ │ └── include │ │ │ ├── DatabaseErrorCodes.h │ │ │ ├── DatabaseErrorReporter.h │ │ │ ├── DatabaseLayer.h │ │ │ ├── DatabaseLayerDef.h │ │ │ ├── DatabaseLayerException.h │ │ │ ├── DatabaseQueryParser.h │ │ │ ├── DatabaseResultSet.h │ │ │ ├── DatabaseStringConverter.h │ │ │ ├── FirebirdDatabaseLayer.h │ │ │ ├── FirebirdInterface.h │ │ │ ├── FirebirdParameter.h │ │ │ ├── FirebirdParameterCollection.h │ │ │ ├── FirebirdPreparedStatement.h │ │ │ ├── FirebirdPreparedStatementWrapper.h │ │ │ ├── FirebirdResultSet.h │ │ │ ├── FirebirdResultSetMetaData.h │ │ │ ├── MysqlDatabaseLayer.h │ │ │ ├── MysqlInterface.h │ │ │ ├── MysqlParameter.h │ │ │ ├── MysqlPreparedStatement.h │ │ │ ├── MysqlPreparedStatementParameter.h │ │ │ ├── MysqlPreparedStatementParameterCollection.h │ │ │ ├── MysqlPreparedStatementResultSet.h │ │ │ ├── MysqlPreparedStatementWrapper.h │ │ │ ├── MysqlResultSetMetaData.h │ │ │ ├── OTLDatabaseLayer.h │ │ │ ├── OTLPreparedStatement.h │ │ │ ├── OTLResultSet.h │ │ │ ├── OTLResultSetMetaData.h │ │ │ ├── OdbcDatabaseLayer.h │ │ │ ├── OdbcInterface.h │ │ │ ├── OdbcParameter.h │ │ │ ├── OdbcPreparedStatement.h │ │ │ ├── OdbcResultSet.h │ │ │ ├── OdbcResultSetMetaData.h │ │ │ ├── OracleDatabaseLayer.h │ │ │ ├── OraclePreparedStatement.h │ │ │ ├── OraclePreparedStatementWrapper.h │ │ │ ├── OracleResultSet.h │ │ │ ├── OracleResultSetMetaData.h │ │ │ ├── PostgresDatabaseLayer.h │ │ │ ├── PostgresInterface.h │ │ │ ├── PostgresParameter.h │ │ │ ├── PostgresPreparedStatement.h │ │ │ ├── PostgresPreparedStatementParameterCollection.h │ │ │ ├── PostgresPreparedStatementWrapper.h │ │ │ ├── PostgresResultSet.h │ │ │ ├── PostgresResultSetMetaData.h │ │ │ ├── PreparedStatement.h │ │ │ ├── ResultSetMetaData.h │ │ │ ├── SqliteDatabaseLayer.h │ │ │ ├── SqlitePreparedStatement.h │ │ │ ├── SqliteResultSet.h │ │ │ ├── SqliteResultSetMetaData.h │ │ │ ├── TdsColumnData.h │ │ │ ├── TdsDatabaseLayer.h │ │ │ ├── TdsPreparedStatement.h │ │ │ ├── TdsResultSet.h │ │ │ ├── TdsResultSetMetaData.h │ │ │ └── otlv4.h │ └── src │ │ └── dblayer │ │ ├── DatabaseErrorReporter.cpp │ │ ├── DatabaseLayer.cpp │ │ ├── DatabaseQueryParser.cpp │ │ ├── DatabaseResultSet.cpp │ │ ├── DatabaseStringConverter.cpp │ │ ├── FirebirdDatabaseLayer.cpp │ │ ├── FirebirdInterface.cpp │ │ ├── FirebirdParameter.cpp │ │ ├── FirebirdParameterCollection.cpp │ │ ├── FirebirdPreparedStatement.cpp │ │ ├── FirebirdPreparedStatementWrapper.cpp │ │ ├── FirebirdResultSet.cpp │ │ ├── FirebirdResultSetMetaData.cpp │ │ ├── MysqlDatabaseLayer.cpp │ │ ├── MysqlInterface.cpp │ │ ├── MysqlParameter.cpp │ │ ├── MysqlPreparedStatement.cpp │ │ ├── MysqlPreparedStatementParameter.cpp │ │ ├── MysqlPreparedStatementParameterCollection.cpp │ │ ├── MysqlPreparedStatementResultSet.cpp │ │ ├── MysqlPreparedStatementWrapper.cpp │ │ ├── MysqlResultSetMetaData.cpp │ │ ├── OTLDatabaseLayer.cpp │ │ ├── OTLPreparedStatement.cpp │ │ ├── OTLResultSet.cpp │ │ ├── OTLResultSetMetaData.cpp │ │ ├── OdbcDatabaseLayer.cpp │ │ ├── OdbcInterface.cpp │ │ ├── OdbcParameter.cpp │ │ ├── OdbcPreparedStatement.cpp │ │ ├── OdbcResultSet.cpp │ │ ├── OdbcResultSetMetaData.cpp │ │ ├── OracleDatabaseLayer.cpp │ │ ├── OraclePreparedStatement.cpp │ │ ├── OraclePreparedStatementWrapper.cpp │ │ ├── OracleResultSet.cpp │ │ ├── OracleResultSetMetaData.cpp │ │ ├── PostgresDatabaseLayer.cpp │ │ ├── PostgresInterface.cpp │ │ ├── PostgresParameter.cpp │ │ ├── PostgresPreparedStatement.cpp │ │ ├── PostgresPreparedStatementParameterCollection.cpp │ │ ├── PostgresPreparedStatementWrapper.cpp │ │ ├── PostgresResultSet.cpp │ │ ├── PostgresResultSetMetaData.cpp │ │ ├── PreparedStatement.cpp │ │ ├── SqliteDatabaseLayer.cpp │ │ ├── SqlitePreparedStatement.cpp │ │ ├── SqliteResultSet.cpp │ │ ├── SqliteResultSetMetaData.cpp │ │ ├── TdsColumnData.cpp │ │ ├── TdsDatabaseLayer.cpp │ │ ├── TdsPreparedStatement.cpp │ │ ├── TdsResultSet.cpp │ │ └── TdsResultSetMetaData.cpp └── wxsqlite3 │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── Readme.txt │ ├── configure │ ├── include │ └── wx │ │ ├── wxsqlite3.h │ │ ├── wxsqlite3def.h │ │ ├── wxsqlite3dyn.h │ │ └── wxsqlite3opt.h │ ├── src │ ├── wxsqlite3.cpp │ └── wxsqlite3_resourecs.rc │ └── wxsqlite3.project ├── submodules └── CMakeLists.txt ├── svgs ├── create-logo.sh ├── dark-theme │ ├── ToolPin.svg │ ├── archive.svg │ ├── back.svg │ ├── binary-file.svg │ ├── blocks.svg │ ├── bookmark-yellow.svg │ ├── bookmark.svg │ ├── bottombar.svg │ ├── breakpoint.svg │ ├── breakpoint_cmdlist.svg │ ├── breakpoint_cond.svg │ ├── breakpoint_ignored.svg │ ├── build.svg │ ├── case-sensitive.svg │ ├── chat-bot.svg │ ├── check-all.svg │ ├── checkbox.svg │ ├── clang.svg │ ├── class.svg │ ├── clean.svg │ ├── clear.svg │ ├── cmake-button.svg │ ├── cmake.svg │ ├── codelite-logo.svg │ ├── cog.svg │ ├── colour-pallette.svg │ ├── connected.svg │ ├── console.svg │ ├── copy.svg │ ├── cpp_keyword.svg │ ├── cscope.svg │ ├── cut.svg │ ├── cxx-workspace.svg │ ├── dart.svg │ ├── database.svg │ ├── db-column.svg │ ├── db-table.svg │ ├── dbexplorer-button.svg │ ├── debugger_pause.svg │ ├── debugger_restart.svg │ ├── debugger_start.svg │ ├── debugger_stop.svg │ ├── diff.svg │ ├── disconnected.svg │ ├── dll.svg │ ├── docker.svg │ ├── down.svg │ ├── download.svg │ ├── eclipse.svg │ ├── enum.svg │ ├── enumerator.svg │ ├── error.svg │ ├── executable.svg │ ├── execute.svg │ ├── execute_stop.svg │ ├── file-explorer-button.svg │ ├── file_close.svg │ ├── file_new.svg │ ├── file_open.svg │ ├── file_reload.svg │ ├── file_save.svg │ ├── file_save_all.svg │ ├── file_save_as.svg │ ├── find.svg │ ├── find_and_replace.svg │ ├── find_in_files.svg │ ├── finger.svg │ ├── fold.svg │ ├── folder-yellow-opened-symlink.svg │ ├── folder-yellow-opened.svg │ ├── folder-yellow-symlink.svg │ ├── folder-yellow.svg │ ├── format.svg │ ├── forward.svg │ ├── function_private.svg │ ├── function_protected.svg │ ├── function_public.svg │ ├── git-commit.svg │ ├── git-orange.svg │ ├── git.svg │ ├── github.svg │ ├── gitter.svg │ ├── globals.svg │ ├── groups-button.svg │ ├── gtk.svg │ ├── help.svg │ ├── history.svg │ ├── home.svg │ ├── info.svg │ ├── interrupt.svg │ ├── intersection.svg │ ├── json.svg │ ├── link_editor.svg │ ├── lock.svg │ ├── log.svg │ ├── lua.svg │ ├── macro.svg │ ├── mark_word.svg │ ├── marker.svg │ ├── member_private.svg │ ├── member_protected.svg │ ├── member_public.svg │ ├── menu-lines.svg │ ├── merge-window.svg │ ├── merge.svg │ ├── mime-as.svg │ ├── mime-bmp.svg │ ├── mime-c.svg │ ├── mime-cpp.svg │ ├── mime-css.svg │ ├── mime-go.svg │ ├── mime-h.svg │ ├── mime-html.svg │ ├── mime-java.svg │ ├── mime-js.svg │ ├── mime-md.svg │ ├── mime-php.svg │ ├── mime-python.svg │ ├── mime-sh.svg │ ├── mime-sql.svg │ ├── mime-svg.svg │ ├── mime-ts.svg │ ├── mime-txt-symlink.svg │ ├── mime-txt.svg │ ├── mime-xml.svg │ ├── minus.svg │ ├── mk.svg │ ├── modified.svg │ ├── monitor.svg │ ├── namespace.svg │ ├── next.svg │ ├── nodejs-workspace.svg │ ├── ok.svg │ ├── open_resource.svg │ ├── outline-button.svg │ ├── paste.svg │ ├── patch.svg │ ├── phar.svg │ ├── php-workspace.svg │ ├── placeholder.svg │ ├── plus.svg │ ├── project-opened.svg │ ├── project.svg │ ├── pull.svg │ ├── qt.svg │ ├── record.svg │ ├── redo.svg │ ├── regular-expression.svg │ ├── remote-folder.svg │ ├── repeat.svg │ ├── replace-blue.svg │ ├── rewind.svg │ ├── ruby.svg │ ├── run.svg │ ├── rust.svg │ ├── secondary-sidebar.svg │ ├── separate-window.svg │ ├── sftp-button.svg │ ├── show_current_line.svg │ ├── sidebar.svg │ ├── sort.svg │ ├── spellcheck.svg │ ├── split.svg │ ├── sql.svg │ ├── sqlite.svg │ ├── start-debugger.svg │ ├── step_in.svg │ ├── step_out.svg │ ├── stop-build.svg │ ├── stop.svg │ ├── struct.svg │ ├── subversion.svg │ ├── tabs-button.svg │ ├── tasks.svg │ ├── text_selection.svg │ ├── tools.svg │ ├── typedef.svg │ ├── undo.svg │ ├── union.svg │ ├── up.svg │ ├── upload.svg │ ├── user.svg │ ├── wand.svg │ ├── warning.svg │ ├── whole-word.svg │ ├── windows.svg │ ├── word.svg │ ├── word_wrap.svg │ ├── workspace-button.svg │ ├── workspace-folder-yellow-opened.svg │ ├── workspace-folder-yellow.svg │ ├── x-close.svg │ ├── yml.svg │ ├── zip.svg │ └── zoom-button.svg ├── light-theme │ ├── ToolPin.svg │ ├── archive.svg │ ├── back.svg │ ├── binary-file.svg │ ├── blocks.svg │ ├── bookmark-yellow.svg │ ├── bookmark.svg │ ├── bottombar.svg │ ├── breakpoint.svg │ ├── breakpoint_cmdlist.svg │ ├── breakpoint_cond.svg │ ├── breakpoint_ignored.svg │ ├── build.svg │ ├── case-sensitive.svg │ ├── chat-bot.svg │ ├── check-all.svg │ ├── checkbox.svg │ ├── clang.svg │ ├── class.svg │ ├── clean.svg │ ├── clear.svg │ ├── cmake-button.svg │ ├── cmake.svg │ ├── codelite-logo.svg │ ├── cog.svg │ ├── colour-pallette.svg │ ├── connected.svg │ ├── console.svg │ ├── copy.svg │ ├── cpp_keyword.svg │ ├── cscope.svg │ ├── cut.svg │ ├── cxx-workspace.svg │ ├── dart.svg │ ├── database.svg │ ├── db-column.svg │ ├── db-table.svg │ ├── dbexplorer-button.svg │ ├── debugger_pause.svg │ ├── debugger_restart.svg │ ├── debugger_start.svg │ ├── debugger_stop.svg │ ├── diff.svg │ ├── disconnected.svg │ ├── dll.svg │ ├── docker.svg │ ├── down.svg │ ├── download.svg │ ├── eclipse.svg │ ├── enum.svg │ ├── enumerator.svg │ ├── error.svg │ ├── executable.svg │ ├── execute.svg │ ├── execute_stop.svg │ ├── file-explorer-button.svg │ ├── file_close.svg │ ├── file_new.svg │ ├── file_open.svg │ ├── file_reload.svg │ ├── file_save.svg │ ├── file_save_all.svg │ ├── file_save_as.svg │ ├── find.svg │ ├── find_and_replace.svg │ ├── find_in_files.svg │ ├── finger.svg │ ├── fold.svg │ ├── folder-yellow-opened-symlink.svg │ ├── folder-yellow-opened.svg │ ├── folder-yellow-symlink.svg │ ├── folder-yellow.svg │ ├── format.svg │ ├── forward.svg │ ├── function_private.svg │ ├── function_protected.svg │ ├── function_public.svg │ ├── git-commit.svg │ ├── git-orange.svg │ ├── git.svg │ ├── github.svg │ ├── gitter.svg │ ├── globals.svg │ ├── groups-button.svg │ ├── gtk.svg │ ├── help.svg │ ├── history.svg │ ├── home.svg │ ├── info.svg │ ├── interrupt.svg │ ├── intersection.svg │ ├── json.svg │ ├── link_editor.svg │ ├── lock.svg │ ├── log.svg │ ├── lua.svg │ ├── macro.svg │ ├── mark_word.svg │ ├── marker.svg │ ├── member_private.svg │ ├── member_protected.svg │ ├── member_public.svg │ ├── menu-lines.svg │ ├── merge-window.svg │ ├── merge.svg │ ├── mime-as.svg │ ├── mime-bmp.svg │ ├── mime-c.svg │ ├── mime-cpp.svg │ ├── mime-css.svg │ ├── mime-go.svg │ ├── mime-h.svg │ ├── mime-html.svg │ ├── mime-java.svg │ ├── mime-js.svg │ ├── mime-md.svg │ ├── mime-php.svg │ ├── mime-python.svg │ ├── mime-sh.svg │ ├── mime-sql.svg │ ├── mime-svg.svg │ ├── mime-ts.svg │ ├── mime-txt-symlink.svg │ ├── mime-txt.svg │ ├── mime-xml.svg │ ├── minus.svg │ ├── mk.svg │ ├── modified.svg │ ├── monitor.svg │ ├── namespace.svg │ ├── next.svg │ ├── nodejs-workspace.svg │ ├── ok.svg │ ├── open_resource.svg │ ├── outline-button.svg │ ├── paste.svg │ ├── patch.svg │ ├── phar.svg │ ├── php-workspace.svg │ ├── placeholder.svg │ ├── plus.svg │ ├── project-opened.svg │ ├── project.svg │ ├── pull.svg │ ├── qt.svg │ ├── record.svg │ ├── redo.svg │ ├── regular-expression.svg │ ├── remote-folder.svg │ ├── repeat.svg │ ├── replace-blue.svg │ ├── rewind.svg │ ├── ruby.svg │ ├── run.svg │ ├── rust.svg │ ├── secondary-sidebar.svg │ ├── separate-window.svg │ ├── sftp-button.svg │ ├── show_current_line.svg │ ├── sidebar.svg │ ├── sort.svg │ ├── spellcheck.svg │ ├── split.svg │ ├── sql.svg │ ├── sqlite.svg │ ├── start-debugger.svg │ ├── step_in.svg │ ├── step_out.svg │ ├── stop-build.svg │ ├── stop.svg │ ├── struct.svg │ ├── subversion.svg │ ├── tabs-button.svg │ ├── tasks.svg │ ├── text_selection.svg │ ├── tools.svg │ ├── typedef.svg │ ├── undo.svg │ ├── union.svg │ ├── up.svg │ ├── upload.svg │ ├── user.svg │ ├── wand.svg │ ├── warning.svg │ ├── whole-word.svg │ ├── windows.svg │ ├── word.svg │ ├── word_wrap.svg │ ├── workspace-button.svg │ ├── workspace-folder-yellow-opened.svg │ ├── workspace-folder-yellow.svg │ ├── x-close.svg │ ├── yml.svg │ ├── zip.svg │ └── zoom-button.svg └── logo │ ├── 128-codelite-logo.png │ ├── 128-codelite-logo@2x.png │ ├── 16-codelite-logo.png │ ├── 16-codelite-logo@2x.png │ ├── 24-codelite-logo.png │ ├── 24-codelite-logo@2x.png │ ├── 256-codelite-logo.png │ ├── 256-codelite-logo@2x.png │ ├── 32-codelite-logo.png │ ├── 32-codelite-logo@2x.png │ ├── 512-codelite-logo.png │ ├── 512-codelite-logo@2x.png │ ├── 64-codelite-logo.png │ ├── 64-codelite-logo@2x.png │ └── osx │ ├── icon.icns │ └── icon.iconset │ ├── icon_128x128.png │ ├── icon_128x128@2x.png │ ├── icon_16x16.png │ ├── icon_16x16@2x.png │ ├── icon_256x256.png │ ├── icon_256x256@2x.png │ ├── icon_32x32.png │ ├── icon_32x32@2x.png │ ├── icon_512x512.png │ └── icon_512x512@2x.png ├── tools └── macOS │ └── clang-format ├── translations ├── CMakeLists.txt ├── README ├── codelite.pot ├── cs │ └── codelite.po ├── fr │ └── codelite.po ├── ja_JP │ └── codelite.po ├── ru_RU │ └── codelite.po └── zh_CN │ └── codelite.po ├── weekly ├── make-weekly-common ├── make-weekly-linux ├── make-weekly-macos └── make-weekly-msw ├── wxcrafter ├── .clangd ├── CMakeLists.txt ├── Importer │ ├── import_dlg.cpp │ ├── import_dlg.h │ ├── import_from_wxFB.cpp │ ├── import_from_wxFB.h │ ├── import_from_wxSmith.cpp │ ├── import_from_wxSmith.h │ ├── import_from_xrc.cpp │ └── import_from_xrc.h ├── Info.plist ├── Preview │ ├── CaptionBar.cpp │ ├── CaptionBar.h │ ├── designer_container_panel.cpp │ ├── designer_container_panel.h │ ├── menu_bar.cpp │ ├── menu_bar.h │ ├── popup_window_preview.cpp │ ├── popup_window_preview.h │ ├── preview_dialog.cpp │ ├── preview_dialog.h │ ├── preview_frame.cpp │ ├── preview_frame.h │ ├── preview_panel.cpp │ ├── preview_panel.h │ ├── preview_wizard.cpp │ ├── preview_wizard.h │ ├── tool_bar.cpp │ └── tool_bar.h ├── Properties │ ├── BitmapTextArrayProperty.cpp │ ├── BitmapTextArrayProperty.h │ ├── bitmap_picker_property.cpp │ ├── bitmap_picker_property.h │ ├── bool_property.cpp │ ├── bool_property.h │ ├── category_property.cpp │ ├── category_property.h │ ├── choice_property.cpp │ ├── choice_property.h │ ├── col_header_flags_property.cpp │ ├── col_header_flags_property.h │ ├── color_property.cpp │ ├── color_property.h │ ├── file_ficker_property.cpp │ ├── file_ficker_property.h │ ├── font_property.cpp │ ├── font_property.h │ ├── int_property.cpp │ ├── int_property.h │ ├── multi_strings_property.cpp │ ├── multi_strings_property.h │ ├── property_base.cpp │ ├── property_base.h │ ├── string_property.cpp │ ├── string_property.h │ ├── virtual_folder_property.cpp │ ├── virtual_folder_property.h │ ├── winid_property.cpp │ └── winid_property.h ├── TODO.TXT ├── UI │ ├── DefineCustomControlWizard.cpp │ ├── DefineCustomControlWizard.h │ ├── DeleteCustomControlDlg.cpp │ ├── DeleteCustomControlDlg.h │ ├── EditCustomControlDlg.cpp │ ├── EditCustomControlDlg.h │ ├── FontPickerDlg.cpp │ ├── FontPickerDlg.h │ ├── MessageDlg.cpp │ ├── MessageDlg.h │ ├── NewCustomEventDlg.cpp │ ├── NewCustomEventDlg.h │ ├── NewFormWizard.cpp │ ├── NewFormWizard.h │ ├── PropertiesView │ │ ├── BmpTextSelectorDlg.cpp │ │ ├── BmpTextSelectorDlg.h │ │ ├── SingleBitmapAndTextDlg.cpp │ │ ├── SingleBitmapAndTextDlg.h │ │ ├── aui_pane_info_list_view.cpp │ │ ├── aui_pane_info_list_view.h │ │ ├── custom_pg_properties.cpp │ │ ├── custom_pg_properties.h │ │ ├── properties_list_view.cpp │ │ ├── properties_list_view.h │ │ ├── properties_sheet.cpp │ │ ├── properties_sheet.h │ │ ├── sizer_flags_list_view.cpp │ │ ├── sizer_flags_list_view.h │ │ ├── styles_sheet_list_view.cpp │ │ └── styles_sheet_list_view.h │ ├── ToolBoxPanel.cpp │ ├── ToolBoxPanel.h │ ├── events_table_list_view.cpp │ ├── events_table_list_view.h │ ├── text_editor.cpp │ ├── text_editor.h │ ├── wxcSettingsDlg.cpp │ ├── wxcSettingsDlg.h │ ├── wxcTreeView.cpp │ └── wxcTreeView.h ├── aui │ ├── AuiToolbarWrapperBase.cpp │ ├── AuiToolbarWrapperBase.h │ ├── aui_manager_wrapper.cpp │ ├── aui_manager_wrapper.h │ ├── aui_notebook_wrapper.cpp │ ├── aui_notebook_wrapper.h │ ├── aui_pane_info.cpp │ └── aui_pane_info.h ├── box_software.ico ├── controls │ ├── ActivityIndicatorWrapper.cpp │ ├── ActivityIndicatorWrapper.h │ ├── AnimationCtrlWrapper.cpp │ ├── AnimationCtrlWrapper.h │ ├── BitmapComboxWrapper.cpp │ ├── BitmapComboxWrapper.h │ ├── Containers │ │ ├── collapsible_pane_wrapper.cpp │ │ ├── collapsible_pane_wrapper.h │ │ ├── notebook_base_wrapper.cpp │ │ ├── notebook_base_wrapper.h │ │ ├── notebook_page_wrapper.cpp │ │ ├── notebook_page_wrapper.h │ │ ├── notebook_wrapper.cpp │ │ ├── notebook_wrapper.h │ │ ├── panel_wrapper.cpp │ │ ├── panel_wrapper.h │ │ ├── scrolled_window_wrapper.cpp │ │ ├── scrolled_window_wrapper.h │ │ ├── tool_book_wrapper.cpp │ │ ├── tool_book_wrapper.h │ │ ├── tree_book_wrapper.cpp │ │ ├── tree_book_wrapper.h │ │ ├── wizard_page_wrapper.cpp │ │ ├── wizard_page_wrapper.h │ │ ├── wx_collapsible_pane_pane_wrapper.cpp │ │ └── wx_collapsible_pane_pane_wrapper.h │ ├── Grid │ │ ├── grid_column_wrapper.cpp │ │ ├── grid_column_wrapper.h │ │ ├── grid_row_wrapper.cpp │ │ ├── grid_row_wrapper.h │ │ ├── grid_wrapper.cpp │ │ └── grid_wrapper.h │ ├── PropertyGrid │ │ ├── property_grid_manager_wrapper.cpp │ │ ├── property_grid_manager_wrapper.h │ │ ├── property_grid_wrapper.cpp │ │ └── property_grid_wrapper.h │ ├── RearrangeListWrapper.cpp │ ├── RearrangeListWrapper.h │ ├── RibbonBar │ │ ├── ribbon_bar_wrapper.cpp │ │ ├── ribbon_bar_wrapper.h │ │ ├── ribbon_button.cpp │ │ ├── ribbon_button.h │ │ ├── ribbon_button_bar_wrapper.cpp │ │ ├── ribbon_button_bar_wrapper.h │ │ ├── ribbon_gallery_item_wrapper.cpp │ │ ├── ribbon_gallery_item_wrapper.h │ │ ├── ribbon_gallery_wrapper.cpp │ │ ├── ribbon_gallery_wrapper.h │ │ ├── ribbon_page_wrapper.cpp │ │ ├── ribbon_page_wrapper.h │ │ ├── ribbon_panel_wrapper.cpp │ │ ├── ribbon_panel_wrapper.h │ │ ├── ribbon_tool_bar_wrapper.cpp │ │ ├── ribbon_tool_bar_wrapper.h │ │ ├── ribbon_tool_separator.cpp │ │ └── ribbon_tool_separator.h │ ├── SimpleHtmlListBoxWrapper.cpp │ ├── SimpleHtmlListBoxWrapper.h │ ├── TimePickerCtrlWrapper.cpp │ ├── TimePickerCtrlWrapper.h │ ├── banner_window_wrapper.cpp │ ├── banner_window_wrapper.h │ ├── bitmap_button_wrapper.cpp │ ├── bitmap_button_wrapper.h │ ├── bitmap_wrapper.cpp │ ├── bitmap_wrapper.h │ ├── bitmaptogglebuttonwrapper.cpp │ ├── bitmaptogglebuttonwrapper.h │ ├── button_wrapper.cpp │ ├── button_wrapper.h │ ├── calendar_ctrl_wrapper.cpp │ ├── calendar_ctrl_wrapper.h │ ├── check_box_wrapper.cpp │ ├── check_box_wrapper.h │ ├── check_list_box_wrapper.cpp │ ├── check_list_box_wrapper.h │ ├── choice_book_wrapper.cpp │ ├── choice_book_wrapper.h │ ├── choice_wrapper.cpp │ ├── choice_wrapper.h │ ├── colour_picker_wrapper.cpp │ ├── colour_picker_wrapper.h │ ├── combobox_wrapper.cpp │ ├── combobox_wrapper.h │ ├── command_link_button_wrapper.cpp │ ├── command_link_button_wrapper.h │ ├── custom_control_wrapper.cpp │ ├── custom_control_wrapper.h │ ├── data_view_list_ctrl_column.cpp │ ├── data_view_list_ctrl_column.h │ ├── data_view_list_ctrl_wrapper.cpp │ ├── data_view_list_ctrl_wrapper.h │ ├── data_view_tree_ctrl_wrapper.cpp │ ├── data_view_tree_ctrl_wrapper.h │ ├── data_view_tree_list_ctrl_wrapper.cpp │ ├── data_view_tree_list_ctrl_wrapper.h │ ├── date_picker_ctrl.cpp │ ├── date_picker_ctrl.h │ ├── dir_picker_ctrl_wrapper.cpp │ ├── dir_picker_ctrl_wrapper.h │ ├── file_picker_ctrl_wrapper.cpp │ ├── file_picker_ctrl_wrapper.h │ ├── font_picker_ctrl_wrapper.cpp │ ├── font_picker_ctrl_wrapper.h │ ├── gauge_wrapper.cpp │ ├── gauge_wrapper.h │ ├── generic_dir_ctrl_wrapper.cpp │ ├── generic_dir_ctrl_wrapper.h │ ├── gl_canvas_wrapper.cpp │ ├── gl_canvas_wrapper.h │ ├── html_window_wrapper.cpp │ ├── html_window_wrapper.h │ ├── hyper_link_ctrl_wrapper.cpp │ ├── hyper_link_ctrl_wrapper.h │ ├── info_bar_button_wrapper.cpp │ ├── info_bar_button_wrapper.h │ ├── info_bar_wrapper.cpp │ ├── info_bar_wrapper.h │ ├── list_book_wrapper.cpp │ ├── list_book_wrapper.h │ ├── list_box_wrapper.cpp │ ├── list_box_wrapper.h │ ├── list_ctrl_column_wrapper.cpp │ ├── list_ctrl_column_wrapper.h │ ├── list_ctrl_wrapper.cpp │ ├── list_ctrl_wrapper.h │ ├── media_ctrl_wrapper.cpp │ ├── media_ctrl_wrapper.h │ ├── menu_toolbar │ │ ├── menu_bar_wrapper.cpp │ │ ├── menu_bar_wrapper.h │ │ ├── menu_item_wrapper.cpp │ │ ├── menu_item_wrapper.h │ │ ├── menu_wrapper.cpp │ │ ├── menu_wrapper.h │ │ ├── status_bar_wrapper.cpp │ │ ├── status_bar_wrapper.h │ │ ├── tool_bar_item_wrapper.cpp │ │ ├── tool_bar_item_wrapper.h │ │ ├── toolbar_base_wrapper.cpp │ │ └── toolbar_base_wrapper.h │ ├── radio_box_wrapper.cpp │ ├── radio_box_wrapper.h │ ├── radio_button_wrapper.cpp │ ├── radio_button_wrapper.h │ ├── rich_text_ctrl_wrapper.cpp │ ├── rich_text_ctrl_wrapper.h │ ├── scroll_bar_wrapper.cpp │ ├── scroll_bar_wrapper.h │ ├── search_ctrl_wrapper.cpp │ ├── search_ctrl_wrapper.h │ ├── simple_book_wrapper.cpp │ ├── simple_book_wrapper.h │ ├── slider_wrapper.cpp │ ├── slider_wrapper.h │ ├── spacer_wrapper.cpp │ ├── spacer_wrapper.h │ ├── spin_button_wrapper.cpp │ ├── spin_button_wrapper.h │ ├── spin_ctrl_wrapper.cpp │ ├── spin_ctrl_wrapper.h │ ├── spin_wrapper_base.cpp │ ├── spin_wrapper_base.h │ ├── splitter_window_wrapper.cpp │ ├── splitter_window_wrapper.h │ ├── static_bitmap_wrapper.cpp │ ├── static_bitmap_wrapper.h │ ├── static_line_wrapper.cpp │ ├── static_line_wrapper.h │ ├── static_text_wrapper.cpp │ ├── static_text_wrapper.h │ ├── styled_text_ctrl_wrapper.cpp │ ├── styled_text_ctrl_wrapper.h │ ├── task_bar_icon_wrapper.cpp │ ├── task_bar_icon_wrapper.h │ ├── text_ctrl_wrapper.cpp │ ├── text_ctrl_wrapper.h │ ├── timer_wrapper.cpp │ ├── timer_wrapper.h │ ├── toggle_button_wrapper.cpp │ ├── toggle_button_wrapper.h │ ├── top_level_win_wrapper.cpp │ ├── top_level_win_wrapper.h │ ├── tree_ctrl_wrapper.cpp │ ├── tree_ctrl_wrapper.h │ ├── tree_list_ctrl_column_wrapper.cpp │ ├── tree_list_ctrl_column_wrapper.h │ ├── tree_list_ctrl_wrapper.cpp │ ├── tree_list_ctrl_wrapper.h │ ├── web_view_wrapper.cpp │ └── web_view_wrapper.h ├── make_wxc_bundle.sh ├── pack-osx.sh ├── pack.sh ├── resources │ ├── DialogTemplate.wxcp │ ├── LICENSE │ ├── Resources.project │ ├── WxWidgets.xcf │ ├── align-bottom.png │ ├── align-center-horizontal.png │ ├── align-center-vertical.png │ ├── align-left.png │ ├── align-right.png │ ├── align-top.png │ ├── border-bottom.png │ ├── border-left.png │ ├── border-right.png │ ├── border-top.png │ ├── button-close.png │ ├── button-max.png │ ├── button-min.png │ ├── cancel.png │ ├── custom-control.png │ ├── custom.png │ ├── delete.png │ ├── dropdown.png │ ├── expand.png │ ├── generate-code.png │ ├── grid-column.png │ ├── grid-row.png │ ├── info.png │ ├── license-error.png │ ├── license-ok.png │ ├── move-down.png │ ├── move-up.png │ ├── my_tree_list_model.cpp │ ├── my_tree_list_model.hpp │ ├── new-form-wizard.png │ ├── new-form.png │ ├── notebook-page.png │ ├── open.png │ ├── opengl-big.png │ ├── pack-icons.bat │ ├── pack-icons.sh │ ├── place-holder.png │ ├── placeholder.png │ ├── placeholder16.png │ ├── preview.png │ ├── proportion-1.png │ ├── resources.rc │ ├── save.png │ ├── spacer.png │ ├── stc.png │ ├── stddlgbuttonsizer.png │ ├── toolbar │ │ ├── batch-generate.png │ │ ├── generate-code.png │ │ ├── wxcp-back-to-codelite.png │ │ ├── wxcp-close.png │ │ ├── wxcp-find.png │ │ ├── wxcp-new-file.png │ │ ├── wxcp-open.png │ │ ├── wxcp-redo.png │ │ ├── wxcp-save.png │ │ └── wxcp-undo.png │ ├── wizard_page1.png │ ├── wizard_page1.xcf │ ├── wizard_page2.png │ ├── wizard_page2.xcf │ ├── wxactivityindicator.png │ ├── wxall.png │ ├── wxanimationctrl.png │ ├── wxauimgr.png │ ├── wxauinotebook.png │ ├── wxauitoolbar.png │ ├── wxbannerwindow.png │ ├── wxbitmap.png │ ├── wxbitmapbutton.png │ ├── wxbitmapcombobox.png │ ├── wxbitmaptogglebutton.png │ ├── wxboxsizer_h.png │ ├── wxboxsizer_v.png │ ├── wxbutton.png │ ├── wxc-logo-128.png │ ├── wxc-logo-16.png │ ├── wxc-logo-24.png │ ├── wxc-logo-32.png │ ├── wxc-logo-64.icns │ ├── wxc-logo-64.png │ ├── wxc-logo.ico │ ├── wxc-logo.png │ ├── wxc-logo.xcf │ ├── wxcalendarctrl.png │ ├── wxcapp_resources.rc │ ├── wxcheckbox.png │ ├── wxchecklistbox.png │ ├── wxchoice.png │ ├── wxchoicebook.png │ ├── wxcollapsiblepane.png │ ├── wxcolourpicker.png │ ├── wxcolumn.png │ ├── wxcombobox.png │ ├── wxcommandlinkbutton.png │ ├── wxcrafter-small.png │ ├── wxcrafter-small.xcf │ ├── wxcrafter-splashscreen.png │ ├── wxcrafter.png │ ├── wxcrafter.xcf │ ├── wxdataviewctrl.png │ ├── wxdataviewlistctrl.png │ ├── wxdataviewtreectrl.png │ ├── wxdatepickerctrl.png │ ├── wxdialog.png │ ├── wxdirpickerctrl.png │ ├── wxfilepickerctrl.png │ ├── wxflexgridsizer.png │ ├── wxfontpickerctrl.png │ ├── wxframe.png │ ├── wxgauge.png │ ├── wxgenericdirctrl.png │ ├── wxglcanvas.png │ ├── wxgrid.png │ ├── wxgridbagsizer.png │ ├── wxgridsizer.png │ ├── wxgui.png │ ├── wxhtmllistbox.png │ ├── wxhtmlwindow.png │ ├── wxhyperlink.png │ ├── wximglist.png │ ├── wxinfobar.png │ ├── wxlistbook.png │ ├── wxlistbox.png │ ├── wxlistctrl.png │ ├── wxmediactrl-16.png │ ├── wxmediactrl.png │ ├── wxmenu.png │ ├── wxmenubar.png │ ├── wxmenuitem.png │ ├── wxnotebook.png │ ├── wxpanel.png │ ├── wxpgproperty.png │ ├── wxpopupwindow.png │ ├── wxpropertygridmanager.png │ ├── wxradiobox.png │ ├── wxradiobutton.png │ ├── wxrearrangelist.png │ ├── wxribbonbar.png │ ├── wxribbonbutton.png │ ├── wxribbonbutton_dropdown.png │ ├── wxribbonbutton_hybrid.png │ ├── wxribbonbutton_toggle.png │ ├── wxribbonbuttonbar.png │ ├── wxribbongallery.png │ ├── wxribbongalleryitem.png │ ├── wxribbonpage.png │ ├── wxribbonpanel.png │ ├── wxribbontool.png │ ├── wxribbontool_dropdown.png │ ├── wxribbontool_hybrid.png │ ├── wxribbontool_toggle.png │ ├── wxrichtextctrl.png │ ├── wxscrollbar.png │ ├── wxscrolledwindow.png │ ├── wxsearchctrl.png │ ├── wxsimplebook.png │ ├── wxslider.png │ ├── wxspinbutton.png │ ├── wxspinctrl.png │ ├── wxsplitterwindow.png │ ├── wxstaticboxsizer.png │ ├── wxstaticline.png │ ├── wxstaticline_v.png │ ├── wxstatictext.png │ ├── wxstatusbar.png │ ├── wxsubmenu.png │ ├── wxtaskbaricon.png │ ├── wxtextctrl.png │ ├── wxtimepickerctrl.png │ ├── wxtimer.png │ ├── wxtogglebutton.png │ ├── wxtoolbar.png │ ├── wxtoolbook.png │ ├── wxtreebook.png │ ├── wxtreectrl.png │ ├── wxtreelistctrl.png │ ├── wxwebview.png │ ├── wxwizard.png │ └── wxwizardpage.png ├── sizers │ ├── box_sizer_wrapper.cpp │ ├── box_sizer_wrapper.h │ ├── flexgridsizer_wrapper.cpp │ ├── flexgridsizer_wrapper.h │ ├── grid_bag_sizer_wrapper.cpp │ ├── grid_bag_sizer_wrapper.h │ ├── grid_sizer_wrapper.cpp │ ├── grid_sizer_wrapper.h │ ├── sizer_wrapper_base.cpp │ ├── sizer_wrapper_base.h │ ├── static_box_sizer_wrapper.cpp │ ├── static_box_sizer_wrapper.h │ ├── std_button_wrapper.cpp │ ├── std_button_wrapper.h │ ├── std_dialog_button_sizer_wrapper.cpp │ └── std_dialog_button_sizer_wrapper.h ├── src │ ├── AboutDlg.cpp │ ├── AboutDlg.h │ ├── BitmapSelectorDlg.cpp │ ├── BitmapSelectorDlg.h │ ├── EventsEditorDlg.cpp │ ├── EventsEditorDlg.h │ ├── MediaCtrl.cpp │ ├── MediaCtrl.h │ ├── OpenGLCanvas.cpp │ ├── OpenGLCanvas.h │ ├── allocator_mgr.cpp │ ├── allocator_mgr.h │ ├── designer_panel.cpp │ ├── designer_panel.h │ ├── duplicateTLWdlg.cpp │ ├── duplicateTLWdlg.h │ ├── enter_strings_dlg.cpp │ ├── enter_strings_dlg.h │ ├── events_database.cpp │ ├── events_database.h │ ├── file_picker_ctrl.cpp │ ├── file_picker_ctrl.h │ ├── functions_parser.cpp │ ├── functions_parser.h │ ├── gui.cpp │ ├── gui.h │ ├── gui.wxcp │ ├── gui_wxcrafter_bitmaps.cpp │ ├── main.cpp │ ├── main.h │ ├── my_dialog.cpp │ ├── my_dialog.h │ ├── my_frame.cpp │ ├── my_frame.h │ ├── my_panel.cpp │ ├── my_panel.h │ ├── my_tree_ctrl.cpp │ ├── my_tree_ctrl.h │ ├── output_nbook.cpp │ ├── output_nbook.h │ ├── splitter_window_page.cpp │ ├── splitter_window_page.h │ ├── wxcLicenseGPL2.cpp │ ├── wxc_aui_manager.cpp │ ├── wxc_aui_manager.h │ ├── wxc_aui_tool_stickiness.cpp │ ├── wxc_aui_tool_stickiness.h │ ├── wxc_bitmap_code_generator.cpp │ ├── wxc_bitmap_code_generator.h │ ├── wxc_edit_manager.cpp │ ├── wxc_edit_manager.h │ ├── wxc_notebook_code_helper.cpp │ ├── wxc_notebook_code_helper.h │ ├── wxc_project_metadata.cpp │ ├── wxc_project_metadata.h │ ├── wxc_settings.cpp │ ├── wxc_settings.h │ ├── wxc_widget.cpp │ ├── wxc_widget.h │ ├── wxcrafter.cpp │ ├── wxcrafter.h │ ├── wxcrafter.wxcp │ ├── wxcrafter_gui.cpp │ ├── wxcrafter_gui.h │ ├── wxcrafter_gui.wxcp │ ├── wxcrafter_gui_wxcrafter_bitmaps.cpp │ ├── wxcrafter_pch_dbg.h │ ├── wxcrafter_pch_release.h │ ├── wxcrafter_plugin.cpp │ ├── wxcrafter_plugin.h │ ├── wxcrafter_wxcrafter_bitmaps.cpp │ ├── wxcsvninfo.h │ ├── wxgui_bitmaploader.cpp │ ├── wxgui_bitmaploader.h │ ├── wxgui_defs.h │ ├── wxgui_globals.cpp │ ├── wxgui_globals.h │ ├── wxgui_helpers.cpp │ ├── wxgui_helpers.h │ ├── wxguicraft_main_view.cpp │ ├── wxguicraft_main_view.h │ ├── wxrc.cpp │ ├── wxrc.h │ ├── xy_pair.cpp │ └── xy_pair.h ├── top_level_windows │ ├── AuiToolBarTopLevel.cpp │ ├── AuiToolBarTopLevel.h │ ├── dialog_wrapper.cpp │ ├── dialog_wrapper.h │ ├── frame_wrapper.cpp │ ├── frame_wrapper.h │ ├── image_list_wrapper.cpp │ ├── image_list_wrapper.h │ ├── panel_wrapper_top_level.cpp │ ├── panel_wrapper_top_level.h │ ├── popup_window_wrapper.cpp │ ├── popup_window_wrapper.h │ ├── wizard_wrapper.cpp │ └── wizard_wrapper.h ├── wxCrafter.desktop ├── wxcLib │ ├── json_node.cpp │ ├── json_node.h │ └── wxcLib.project ├── wxcrafter64_mingw.iss.in ├── wxcversion.cpp.in ├── wxgui.zip └── xrc_handlers │ ├── MyComboBoxXmlHandler.cpp │ ├── MyComboBoxXmlHandler.h │ ├── MyRearrangeListXmlHandler.cpp │ ├── MyRearrangeListXmlHandler.h │ ├── myxh_auibook.cpp │ ├── myxh_auibook.h │ ├── myxh_auimgr.cpp │ ├── myxh_auimgr.h │ ├── myxh_auitoolb.cpp │ ├── myxh_auitoolb.h │ ├── myxh_cmdlinkbtn.cpp │ ├── myxh_cmdlinkbtn.h │ ├── myxh_dataview.cpp │ ├── myxh_dataview.h │ ├── myxh_dlg.cpp │ ├── myxh_dlg.h │ ├── myxh_dvlistctrl.cpp │ ├── myxh_dvlistctrl.h │ ├── myxh_dvtreectrl.cpp │ ├── myxh_dvtreectrl.h │ ├── myxh_frame.cpp │ ├── myxh_frame.h │ ├── myxh_glcanvas.cpp │ ├── myxh_glcanvas.h │ ├── myxh_grid.cpp │ ├── myxh_grid.h │ ├── myxh_infobar.cpp │ ├── myxh_infobar.h │ ├── myxh_listc.cpp │ ├── myxh_listc.h │ ├── myxh_mediactrl.cpp │ ├── myxh_mediactrl.h │ ├── myxh_panel.cpp │ ├── myxh_panel.h │ ├── myxh_propgrid.cpp │ ├── myxh_propgrid.h │ ├── myxh_ribbon.cpp │ ├── myxh_ribbon.h │ ├── myxh_richtext.cpp │ ├── myxh_richtext.h │ ├── myxh_searchctrl.cpp │ ├── myxh_searchctrl.h │ ├── myxh_simplebook.cpp │ ├── myxh_simplebook.h │ ├── myxh_stc.cpp │ ├── myxh_stc.h │ ├── myxh_textctrl.cpp │ ├── myxh_textctrl.h │ ├── myxh_toolbk.cpp │ ├── myxh_toolbk.h │ ├── myxh_treebk.cpp │ ├── myxh_treebk.h │ ├── myxh_treelist.cpp │ ├── myxh_treelist.h │ ├── myxh_webview.cpp │ └── myxh_webview.h └── wxformbuilder ├── CMakeLists.txt ├── confformbuilder.cpp ├── confformbuilder.h ├── formbuildsettingsbasedlg.cpp ├── formbuildsettingsbasedlg.h ├── formbuildsettingsdlg.cpp ├── formbuildsettingsdlg.h ├── wxfbitembasedlg.cpp ├── wxfbitembasedlg.h ├── wxfbitemdlg.cpp ├── wxfbitemdlg.h ├── wxformbuilder.cpp └── wxformbuilder.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/.clang-format -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/.clangd -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/.gitmodules -------------------------------------------------------------------------------- /.luarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/.luarc.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/AUTHORS -------------------------------------------------------------------------------- /AutoSave/AutoSaveDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/AutoSave/AutoSaveDlg.cpp -------------------------------------------------------------------------------- /AutoSave/AutoSaveDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/AutoSave/AutoSaveDlg.h -------------------------------------------------------------------------------- /AutoSave/AutoSaveUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/AutoSave/AutoSaveUI.cpp -------------------------------------------------------------------------------- /AutoSave/AutoSaveUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/AutoSave/AutoSaveUI.h -------------------------------------------------------------------------------- /AutoSave/AutoSaveUI.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/AutoSave/AutoSaveUI.wxcp -------------------------------------------------------------------------------- /AutoSave/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/AutoSave/CMakeLists.txt -------------------------------------------------------------------------------- /AutoSave/autosave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/AutoSave/autosave.cpp -------------------------------------------------------------------------------- /AutoSave/autosave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/AutoSave/autosave.h -------------------------------------------------------------------------------- /BuildInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/BuildInfo.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePlugin/CMake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CMakePlugin/CMake.cpp -------------------------------------------------------------------------------- /CMakePlugin/CMake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CMakePlugin/CMake.h -------------------------------------------------------------------------------- /CMakePlugin/CMakeBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CMakePlugin/CMakeBuilder.h -------------------------------------------------------------------------------- /CMakePlugin/CMakeHelpTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CMakePlugin/CMakeHelpTab.h -------------------------------------------------------------------------------- /CMakePlugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CMakePlugin/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePlugin/CMakePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CMakePlugin/CMakePlugin.h -------------------------------------------------------------------------------- /CMakePlugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CMakePlugin/LICENSE -------------------------------------------------------------------------------- /CMakePlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CMakePlugin/README.md -------------------------------------------------------------------------------- /CMakePlugin/cmake-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CMakePlugin/cmake-16.png -------------------------------------------------------------------------------- /CMakePlugin/cmake-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CMakePlugin/cmake-24.png -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/COPYING -------------------------------------------------------------------------------- /CallGraph/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/CMakeLists.txt -------------------------------------------------------------------------------- /CallGraph/callgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/callgraph.cpp -------------------------------------------------------------------------------- /CallGraph/callgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/callgraph.h -------------------------------------------------------------------------------- /CallGraph/confcallgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/confcallgraph.h -------------------------------------------------------------------------------- /CallGraph/dotwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/dotwriter.cpp -------------------------------------------------------------------------------- /CallGraph/dotwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/dotwriter.h -------------------------------------------------------------------------------- /CallGraph/gprofparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/gprofparser.cpp -------------------------------------------------------------------------------- /CallGraph/gprofparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/gprofparser.h -------------------------------------------------------------------------------- /CallGraph/lineparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/lineparser.cpp -------------------------------------------------------------------------------- /CallGraph/lineparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/lineparser.h -------------------------------------------------------------------------------- /CallGraph/static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/static.cpp -------------------------------------------------------------------------------- /CallGraph/static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/static.h -------------------------------------------------------------------------------- /CallGraph/uicallgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/uicallgraph.cpp -------------------------------------------------------------------------------- /CallGraph/uicallgraph.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/uicallgraph.fbp -------------------------------------------------------------------------------- /CallGraph/uicallgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/uicallgraph.h -------------------------------------------------------------------------------- /CallGraph/uisettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/uisettings.cpp -------------------------------------------------------------------------------- /CallGraph/uisettings.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/uisettings.fbp -------------------------------------------------------------------------------- /CallGraph/uisettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/uisettings.h -------------------------------------------------------------------------------- /CallGraph/uisettingsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CallGraph/uisettingsdlg.h -------------------------------------------------------------------------------- /CodeFormatter/astyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeFormatter/astyle.png -------------------------------------------------------------------------------- /CodeFormatter/clang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeFormatter/clang.png -------------------------------------------------------------------------------- /CodeFormatter/codeformatterdll.def: -------------------------------------------------------------------------------- 1 | LIBRARY CodeFormatter 2 | EXPORTS 3 | CreatePlugin 4 | -------------------------------------------------------------------------------- /CodeFormatter/fmtBlack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeFormatter/fmtBlack.cpp -------------------------------------------------------------------------------- /CodeFormatter/fmtBlack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeFormatter/fmtBlack.hpp -------------------------------------------------------------------------------- /CodeFormatter/fmtJQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeFormatter/fmtJQ.cpp -------------------------------------------------------------------------------- /CodeFormatter/fmtJQ.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeFormatter/fmtJQ.hpp -------------------------------------------------------------------------------- /CodeFormatter/fmtYQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeFormatter/fmtYQ.cpp -------------------------------------------------------------------------------- /CodeFormatter/fmtYQ.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeFormatter/fmtYQ.hpp -------------------------------------------------------------------------------- /CodeLite/BlockTimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/BlockTimer.hpp -------------------------------------------------------------------------------- /CodeLite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/CMakeLists.txt -------------------------------------------------------------------------------- /CodeLite/CTags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/CTags.cpp -------------------------------------------------------------------------------- /CodeLite/CTags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/CTags.hpp -------------------------------------------------------------------------------- /CodeLite/Cxx/CxxLexerAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/Cxx/CxxLexerAPI.h -------------------------------------------------------------------------------- /CodeLite/Cxx/CxxScanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/Cxx/CxxScanner.l -------------------------------------------------------------------------------- /CodeLite/Cxx/CxxVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/Cxx/CxxVariable.h -------------------------------------------------------------------------------- /CodeLite/Cxx/FlexLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/Cxx/FlexLexer.h -------------------------------------------------------------------------------- /CodeLite/Cxx/cpp5.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/Cxx/cpp5.l -------------------------------------------------------------------------------- /CodeLite/Cxx/cpp_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/Cxx/cpp_scanner.h -------------------------------------------------------------------------------- /CodeLite/Cxx/cpptoken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/Cxx/cpptoken.cpp -------------------------------------------------------------------------------- /CodeLite/Cxx/cpptoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/Cxx/cpptoken.h -------------------------------------------------------------------------------- /CodeLite/Cxx/lex.yy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/Cxx/lex.yy.cpp -------------------------------------------------------------------------------- /CodeLite/Cxx/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/Cxx/y.tab.h -------------------------------------------------------------------------------- /CodeLite/DoxySMain.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/DoxySMain.page -------------------------------------------------------------------------------- /CodeLite/FontUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/FontUtils.cpp -------------------------------------------------------------------------------- /CodeLite/FontUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/FontUtils.hpp -------------------------------------------------------------------------------- /CodeLite/JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/JSON.cpp -------------------------------------------------------------------------------- /CodeLite/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/JSON.h -------------------------------------------------------------------------------- /CodeLite/LSP/FilePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/LSP/FilePath.cpp -------------------------------------------------------------------------------- /CodeLite/LSP/FilePath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/LSP/FilePath.hpp -------------------------------------------------------------------------------- /CodeLite/LSP/JSONObject.cpp: -------------------------------------------------------------------------------- 1 | #include "JSONObject.h" 2 | -------------------------------------------------------------------------------- /CodeLite/LSP/JSONObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/LSP/JSONObject.h -------------------------------------------------------------------------------- /CodeLite/LSP/LSPEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/LSP/LSPEvent.cpp -------------------------------------------------------------------------------- /CodeLite/LSP/LSPEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/LSP/LSPEvent.h -------------------------------------------------------------------------------- /CodeLite/LSP/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/LSP/Message.cpp -------------------------------------------------------------------------------- /CodeLite/LSP/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/LSP/Message.h -------------------------------------------------------------------------------- /CodeLite/LSP/Request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/LSP/Request.cpp -------------------------------------------------------------------------------- /CodeLite/LSP/Request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/LSP/Request.h -------------------------------------------------------------------------------- /CodeLite/LSP/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/LSP/basic_types.h -------------------------------------------------------------------------------- /CodeLite/MSWPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/MSWPrivate.h -------------------------------------------------------------------------------- /CodeLite/PHP/PHPDocParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/PHP/PHPDocParam.h -------------------------------------------------------------------------------- /CodeLite/PHP/PHPDocVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/PHP/PHPDocVar.cpp -------------------------------------------------------------------------------- /CodeLite/PHP/PHPDocVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/PHP/PHPDocVar.h -------------------------------------------------------------------------------- /CodeLite/PHP/PhpLexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/PHP/PhpLexer.l -------------------------------------------------------------------------------- /CodeLite/PHP/PhpLexerAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/PHP/PhpLexerAPI.h -------------------------------------------------------------------------------- /CodeLite/StdToWX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/StdToWX.cpp -------------------------------------------------------------------------------- /CodeLite/StdToWX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/StdToWX.h -------------------------------------------------------------------------------- /CodeLite/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/StringUtils.cpp -------------------------------------------------------------------------------- /CodeLite/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/StringUtils.h -------------------------------------------------------------------------------- /CodeLite/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/archive.cpp -------------------------------------------------------------------------------- /CodeLite/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/archive.h -------------------------------------------------------------------------------- /CodeLite/browse_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/browse_record.h -------------------------------------------------------------------------------- /CodeLite/clAnagram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clAnagram.cpp -------------------------------------------------------------------------------- /CodeLite/clAnagram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clAnagram.h -------------------------------------------------------------------------------- /CodeLite/clBitset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clBitset.cpp -------------------------------------------------------------------------------- /CodeLite/clBitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clBitset.hpp -------------------------------------------------------------------------------- /CodeLite/clDirChanger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clDirChanger.hpp -------------------------------------------------------------------------------- /CodeLite/clEditorConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clEditorConfig.h -------------------------------------------------------------------------------- /CodeLite/clEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clEnvironment.cpp -------------------------------------------------------------------------------- /CodeLite/clEnvironment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clEnvironment.hpp -------------------------------------------------------------------------------- /CodeLite/clFileName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clFileName.cpp -------------------------------------------------------------------------------- /CodeLite/clFileName.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clFileName.hpp -------------------------------------------------------------------------------- /CodeLite/clFontHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clFontHelper.cpp -------------------------------------------------------------------------------- /CodeLite/clFontHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clFontHelper.h -------------------------------------------------------------------------------- /CodeLite/clGotoEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clGotoEntry.cpp -------------------------------------------------------------------------------- /CodeLite/clGotoEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clGotoEntry.h -------------------------------------------------------------------------------- /CodeLite/clINIParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clINIParser.cpp -------------------------------------------------------------------------------- /CodeLite/clINIParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clINIParser.hpp -------------------------------------------------------------------------------- /CodeLite/clResult.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clResult.hpp -------------------------------------------------------------------------------- /CodeLite/clStringView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clStringView.cpp -------------------------------------------------------------------------------- /CodeLite/clStringView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clStringView.hpp -------------------------------------------------------------------------------- /CodeLite/clTempFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clTempFile.cpp -------------------------------------------------------------------------------- /CodeLite/clTempFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clTempFile.hpp -------------------------------------------------------------------------------- /CodeLite/clWildMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clWildMatch.cpp -------------------------------------------------------------------------------- /CodeLite/clWildMatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/clWildMatch.hpp -------------------------------------------------------------------------------- /CodeLite/cl_calltip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/cl_calltip.cpp -------------------------------------------------------------------------------- /CodeLite/cl_calltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/cl_calltip.h -------------------------------------------------------------------------------- /CodeLite/cl_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/cl_config.cpp -------------------------------------------------------------------------------- /CodeLite/cl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/cl_config.h -------------------------------------------------------------------------------- /CodeLite/cl_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/cl_defs.h -------------------------------------------------------------------------------- /CodeLite/cl_defs_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/cl_defs_linux.h -------------------------------------------------------------------------------- /CodeLite/cl_defs_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/cl_defs_macos.h -------------------------------------------------------------------------------- /CodeLite/cl_defs_msw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/cl_defs_msw.h -------------------------------------------------------------------------------- /CodeLite/cl_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/cl_exception.h -------------------------------------------------------------------------------- /CodeLite/cl_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/cl_process.cpp -------------------------------------------------------------------------------- /CodeLite/cl_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/cl_process.h -------------------------------------------------------------------------------- /CodeLite/codelite_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/codelite_events.h -------------------------------------------------------------------------------- /CodeLite/ctags_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/ctags_manager.cpp -------------------------------------------------------------------------------- /CodeLite/ctags_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/ctags_manager.h -------------------------------------------------------------------------------- /CodeLite/database/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/database/entry.h -------------------------------------------------------------------------------- /CodeLite/dirsaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/dirsaver.h -------------------------------------------------------------------------------- /CodeLite/dirtraverser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/dirtraverser.cpp -------------------------------------------------------------------------------- /CodeLite/dirtraverser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/dirtraverser.h -------------------------------------------------------------------------------- /CodeLite/docs/DoxySfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/docs/DoxySfile -------------------------------------------------------------------------------- /CodeLite/event_notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/event_notifier.h -------------------------------------------------------------------------------- /CodeLite/file_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/file_logger.cpp -------------------------------------------------------------------------------- /CodeLite/file_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/file_logger.h -------------------------------------------------------------------------------- /CodeLite/fileextmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/fileextmanager.h -------------------------------------------------------------------------------- /CodeLite/fileutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/fileutils.cpp -------------------------------------------------------------------------------- /CodeLite/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/fileutils.h -------------------------------------------------------------------------------- /CodeLite/json_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/json_utils.h -------------------------------------------------------------------------------- /CodeLite/language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/language.cpp -------------------------------------------------------------------------------- /CodeLite/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/language.h -------------------------------------------------------------------------------- /CodeLite/libcodelite_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/libcodelite_pch.h -------------------------------------------------------------------------------- /CodeLite/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/macros.h -------------------------------------------------------------------------------- /CodeLite/performance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/performance.cpp -------------------------------------------------------------------------------- /CodeLite/performance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/performance.h -------------------------------------------------------------------------------- /CodeLite/pptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/pptable.h -------------------------------------------------------------------------------- /CodeLite/procutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/procutils.cpp -------------------------------------------------------------------------------- /CodeLite/procutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/procutils.h -------------------------------------------------------------------------------- /CodeLite/progress_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/progress_dialog.h -------------------------------------------------------------------------------- /CodeLite/search_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/search_thread.cpp -------------------------------------------------------------------------------- /CodeLite/search_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/search_thread.h -------------------------------------------------------------------------------- /CodeLite/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/singleton.h -------------------------------------------------------------------------------- /CodeLite/ssh/clSFTPEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/ssh/clSFTPEvent.h -------------------------------------------------------------------------------- /CodeLite/ssh/cl_sftp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/ssh/cl_sftp.cpp -------------------------------------------------------------------------------- /CodeLite/ssh/cl_sftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/ssh/cl_sftp.h -------------------------------------------------------------------------------- /CodeLite/ssh/cl_ssh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/ssh/cl_ssh.cpp -------------------------------------------------------------------------------- /CodeLite/ssh/cl_ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/ssh/cl_ssh.h -------------------------------------------------------------------------------- /CodeLite/stringaccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/stringaccessor.h -------------------------------------------------------------------------------- /CodeLite/tag_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/tag_tree.cpp -------------------------------------------------------------------------------- /CodeLite/tag_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/tag_tree.h -------------------------------------------------------------------------------- /CodeLite/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/tokenizer.cpp -------------------------------------------------------------------------------- /CodeLite/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/tokenizer.h -------------------------------------------------------------------------------- /CodeLite/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/tree.h -------------------------------------------------------------------------------- /CodeLite/tree_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/tree_node.h -------------------------------------------------------------------------------- /CodeLite/winprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/winprocess.cpp -------------------------------------------------------------------------------- /CodeLite/winprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/winprocess.h -------------------------------------------------------------------------------- /CodeLite/worker_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/worker_thread.cpp -------------------------------------------------------------------------------- /CodeLite/worker_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/worker_thread.h -------------------------------------------------------------------------------- /CodeLite/wxStringHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/wxStringHash.h -------------------------------------------------------------------------------- /CodeLite/wx_ordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/wx_ordered_map.h -------------------------------------------------------------------------------- /CodeLite/xmlutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/xmlutils.cpp -------------------------------------------------------------------------------- /CodeLite/xmlutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/xmlutils.h -------------------------------------------------------------------------------- /CodeLite/xor_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/xor_string.cpp -------------------------------------------------------------------------------- /CodeLite/xor_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLite/xor_string.h -------------------------------------------------------------------------------- /CodeLiteIDE-MSW.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CodeLiteIDE-MSW.workspace -------------------------------------------------------------------------------- /Copyright/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Copyright/CMakeLists.txt -------------------------------------------------------------------------------- /Copyright/copyright.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Copyright/copyright.cpp -------------------------------------------------------------------------------- /Copyright/copyright.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Copyright/copyright.h -------------------------------------------------------------------------------- /CxxParser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParser/CMakeLists.txt -------------------------------------------------------------------------------- /CxxParser/Debug/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParser/Debug/test.h -------------------------------------------------------------------------------- /CxxParser/TODO.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParser/TODO.TXT -------------------------------------------------------------------------------- /CxxParser/cl_typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParser/cl_typedef.h -------------------------------------------------------------------------------- /CxxParser/cpp.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParser/cpp.l -------------------------------------------------------------------------------- /CxxParser/expr_grammar.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParser/expr_grammar.y -------------------------------------------------------------------------------- /CxxParser/expr_lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParser/expr_lexer.l -------------------------------------------------------------------------------- /CxxParser/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParser/function.cpp -------------------------------------------------------------------------------- /CxxParser/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParser/function.h -------------------------------------------------------------------------------- /CxxParser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParser/main.cpp -------------------------------------------------------------------------------- /CxxParser/variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParser/variable.cpp -------------------------------------------------------------------------------- /CxxParser/variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParser/variable.h -------------------------------------------------------------------------------- /CxxParserTests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParserTests/main.cpp -------------------------------------------------------------------------------- /CxxParserTests/tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParserTests/tester.cpp -------------------------------------------------------------------------------- /CxxParserTests/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/CxxParserTests/tester.h -------------------------------------------------------------------------------- /DESC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DESC -------------------------------------------------------------------------------- /DatabaseExplorer/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DatabaseExplorer/GUI.cpp -------------------------------------------------------------------------------- /DatabaseExplorer/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DatabaseExplorer/GUI.h -------------------------------------------------------------------------------- /DatabaseExplorer/GUI.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DatabaseExplorer/GUI.wxcp -------------------------------------------------------------------------------- /DatabaseExplorer/IDbItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DatabaseExplorer/IDbItem.h -------------------------------------------------------------------------------- /DatabaseExplorer/IDbType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DatabaseExplorer/IDbType.h -------------------------------------------------------------------------------- /DatabaseExplorer/column.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DatabaseExplorer/column.h -------------------------------------------------------------------------------- /DatabaseExplorer/dbitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DatabaseExplorer/dbitem.h -------------------------------------------------------------------------------- /DatabaseExplorer/table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DatabaseExplorer/table.cpp -------------------------------------------------------------------------------- /DatabaseExplorer/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DatabaseExplorer/table.h -------------------------------------------------------------------------------- /DatabaseExplorer/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DatabaseExplorer/view.cpp -------------------------------------------------------------------------------- /DatabaseExplorer/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DatabaseExplorer/view.h -------------------------------------------------------------------------------- /DebugAdapterClient/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DebugAdapterClient/UI.cpp -------------------------------------------------------------------------------- /DebugAdapterClient/UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DebugAdapterClient/UI.h -------------------------------------------------------------------------------- /DebugAdapterClient/UI.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/DebugAdapterClient/UI.wxcp -------------------------------------------------------------------------------- /Debugger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Debugger/CMakeLists.txt -------------------------------------------------------------------------------- /Debugger/dbgcmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Debugger/dbgcmd.cpp -------------------------------------------------------------------------------- /Debugger/dbgcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Debugger/dbgcmd.h -------------------------------------------------------------------------------- /Debugger/debuggerdll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Debugger/debuggerdll.def -------------------------------------------------------------------------------- /Debugger/debuggergdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Debugger/debuggergdb.cpp -------------------------------------------------------------------------------- /Debugger/debuggergdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Debugger/debuggergdb.h -------------------------------------------------------------------------------- /Debugger/dirkeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Debugger/dirkeeper.h -------------------------------------------------------------------------------- /Debugger/gdbmi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Debugger/gdbmi.cpp -------------------------------------------------------------------------------- /Debugger/gdbmi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Debugger/gdbmi.hpp -------------------------------------------------------------------------------- /Docker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/CMakeLists.txt -------------------------------------------------------------------------------- /Docker/DockerOutputPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/DockerOutputPane.h -------------------------------------------------------------------------------- /Docker/DockerSettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/DockerSettingsDlg.h -------------------------------------------------------------------------------- /Docker/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/UI.cpp -------------------------------------------------------------------------------- /Docker/UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/UI.h -------------------------------------------------------------------------------- /Docker/UI.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/UI.wxcp -------------------------------------------------------------------------------- /Docker/clDockerContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/clDockerContainer.h -------------------------------------------------------------------------------- /Docker/clDockerDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/clDockerDriver.cpp -------------------------------------------------------------------------------- /Docker/clDockerDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/clDockerDriver.h -------------------------------------------------------------------------------- /Docker/clDockerEvents.cpp: -------------------------------------------------------------------------------- 1 | #include "clDockerEvents.h" 2 | 3 | -------------------------------------------------------------------------------- /Docker/clDockerEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/clDockerEvents.h -------------------------------------------------------------------------------- /Docker/clDockerImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/clDockerImage.cpp -------------------------------------------------------------------------------- /Docker/clDockerImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/clDockerImage.h -------------------------------------------------------------------------------- /Docker/clDockerSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/clDockerSettings.h -------------------------------------------------------------------------------- /Docker/clDockerWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/clDockerWorkspace.h -------------------------------------------------------------------------------- /Docker/clDockerfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/clDockerfile.cpp -------------------------------------------------------------------------------- /Docker/clDockerfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/clDockerfile.h -------------------------------------------------------------------------------- /Docker/docker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/docker.cpp -------------------------------------------------------------------------------- /Docker/docker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Docker/docker.h -------------------------------------------------------------------------------- /EOSWiki/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/EOSWiki/CMakeLists.txt -------------------------------------------------------------------------------- /EOSWiki/EOSProjectData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/EOSWiki/EOSProjectData.cpp -------------------------------------------------------------------------------- /EOSWiki/EOSProjectData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/EOSWiki/EOSProjectData.h -------------------------------------------------------------------------------- /EOSWiki/EOSProjectWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/EOSWiki/EOSProjectWizard.h -------------------------------------------------------------------------------- /EOSWiki/eosUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/EOSWiki/eosUI.cpp -------------------------------------------------------------------------------- /EOSWiki/eosUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/EOSWiki/eosUI.h -------------------------------------------------------------------------------- /EOSWiki/eosUI.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/EOSWiki/eosUI.wxcp -------------------------------------------------------------------------------- /EOSWiki/eoswiki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/EOSWiki/eoswiki.cpp -------------------------------------------------------------------------------- /EOSWiki/eoswiki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/EOSWiki/eoswiki.h -------------------------------------------------------------------------------- /ExternalTools/newtooldlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ExternalTools/newtooldlg.h -------------------------------------------------------------------------------- /Gizmos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/CMakeLists.txt -------------------------------------------------------------------------------- /Gizmos/PluginWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/PluginWizard.cpp -------------------------------------------------------------------------------- /Gizmos/PluginWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/PluginWizard.h -------------------------------------------------------------------------------- /Gizmos/gizmos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/gizmos.cpp -------------------------------------------------------------------------------- /Gizmos/gizmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/gizmos.h -------------------------------------------------------------------------------- /Gizmos/gizmos.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/gizmos.wxcp -------------------------------------------------------------------------------- /Gizmos/gizmos_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/gizmos_base.cpp -------------------------------------------------------------------------------- /Gizmos/gizmos_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/gizmos_base.h -------------------------------------------------------------------------------- /Gizmos/new_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/new_class.png -------------------------------------------------------------------------------- /Gizmos/newclassbasedlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/newclassbasedlg.cpp -------------------------------------------------------------------------------- /Gizmos/newclassbasedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/newclassbasedlg.h -------------------------------------------------------------------------------- /Gizmos/newclassdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/newclassdlg.cpp -------------------------------------------------------------------------------- /Gizmos/newclassdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/newclassdlg.h -------------------------------------------------------------------------------- /Gizmos/newclasswizard.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/newclasswizard.wxcp -------------------------------------------------------------------------------- /Gizmos/newplugindata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/newplugindata.cpp -------------------------------------------------------------------------------- /Gizmos/newplugindata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/newplugindata.h -------------------------------------------------------------------------------- /Gizmos/newwxprojectdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/newwxprojectdlg.cpp -------------------------------------------------------------------------------- /Gizmos/newwxprojectdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/newwxprojectdlg.h -------------------------------------------------------------------------------- /Gizmos/newwxprojectinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/newwxprojectinfo.h -------------------------------------------------------------------------------- /Gizmos/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Gizmos/plugin.png -------------------------------------------------------------------------------- /HelpPlugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/HelpPlugin/CMakeLists.txt -------------------------------------------------------------------------------- /HelpPlugin/HelpPluginUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/HelpPlugin/HelpPluginUI.h -------------------------------------------------------------------------------- /HelpPlugin/error-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/HelpPlugin/error-64.png -------------------------------------------------------------------------------- /HelpPlugin/helpplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/HelpPlugin/helpplugin.cpp -------------------------------------------------------------------------------- /HelpPlugin/helpplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/HelpPlugin/helpplugin.h -------------------------------------------------------------------------------- /InnoSetup/box_software.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/InnoSetup/box_software.ico -------------------------------------------------------------------------------- /InnoSetup/modpath.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/InnoSetup/modpath.iss -------------------------------------------------------------------------------- /Interfaces/IWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Interfaces/IWorkspace.h -------------------------------------------------------------------------------- /Interfaces/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Interfaces/debugger.h -------------------------------------------------------------------------------- /Interfaces/iconfigtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Interfaces/iconfigtool.h -------------------------------------------------------------------------------- /Interfaces/ieditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Interfaces/ieditor.h -------------------------------------------------------------------------------- /Interfaces/imanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Interfaces/imanager.h -------------------------------------------------------------------------------- /Interfaces/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Interfaces/plugin.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LICENSE -------------------------------------------------------------------------------- /LiteEditor/AboutDlg.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/AboutDlg.wxcp -------------------------------------------------------------------------------- /LiteEditor/BuildTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/BuildTab.cpp -------------------------------------------------------------------------------- /LiteEditor/BuildTab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/BuildTab.hpp -------------------------------------------------------------------------------- /LiteEditor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/CMakeLists.txt -------------------------------------------------------------------------------- /LiteEditor/ContextPhp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/ContextPhp.cpp -------------------------------------------------------------------------------- /LiteEditor/ContextPhp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/ContextPhp.h -------------------------------------------------------------------------------- /LiteEditor/ContextRust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/ContextRust.cpp -------------------------------------------------------------------------------- /LiteEditor/ContextRust.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/ContextRust.hpp -------------------------------------------------------------------------------- /LiteEditor/OpenFolderDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/OpenFolderDlg.h -------------------------------------------------------------------------------- /LiteEditor/SideBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/SideBar.cpp -------------------------------------------------------------------------------- /LiteEditor/SideBar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/SideBar.hpp -------------------------------------------------------------------------------- /LiteEditor/WelcomePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/WelcomePage.cpp -------------------------------------------------------------------------------- /LiteEditor/WelcomePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/WelcomePage.h -------------------------------------------------------------------------------- /LiteEditor/acceltabledlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/acceltabledlg.h -------------------------------------------------------------------------------- /LiteEditor/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/app.cpp -------------------------------------------------------------------------------- /LiteEditor/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/app.h -------------------------------------------------------------------------------- /LiteEditor/autoversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/autoversion.cpp -------------------------------------------------------------------------------- /LiteEditor/batchbuilddlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/batchbuilddlg.h -------------------------------------------------------------------------------- /LiteEditor/clPrintout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/clPrintout.cpp -------------------------------------------------------------------------------- /LiteEditor/clPrintout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/clPrintout.h -------------------------------------------------------------------------------- /LiteEditor/cl_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/cl_editor.cpp -------------------------------------------------------------------------------- /LiteEditor/cl_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/cl_editor.h -------------------------------------------------------------------------------- /LiteEditor/cl_unredo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/cl_unredo.cpp -------------------------------------------------------------------------------- /LiteEditor/cl_unredo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/cl_unredo.h -------------------------------------------------------------------------------- /LiteEditor/close_all_dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/close_all_dlg.h -------------------------------------------------------------------------------- /LiteEditor/code_parser.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/code_parser.rc -------------------------------------------------------------------------------- /LiteEditor/codelite_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/codelite_pch.h -------------------------------------------------------------------------------- /LiteEditor/colourrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/colourrequest.h -------------------------------------------------------------------------------- /LiteEditor/colourthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/colourthread.h -------------------------------------------------------------------------------- /LiteEditor/context_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/context_base.h -------------------------------------------------------------------------------- /LiteEditor/context_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/context_cpp.cpp -------------------------------------------------------------------------------- /LiteEditor/context_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/context_cpp.h -------------------------------------------------------------------------------- /LiteEditor/context_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/context_diff.h -------------------------------------------------------------------------------- /LiteEditor/context_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/context_html.h -------------------------------------------------------------------------------- /LiteEditor/dbgcommanddlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/dbgcommanddlg.h -------------------------------------------------------------------------------- /LiteEditor/debugcoredump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/debugcoredump.h -------------------------------------------------------------------------------- /LiteEditor/debuggerpane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/debuggerpane.h -------------------------------------------------------------------------------- /LiteEditor/file.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/file.xpm -------------------------------------------------------------------------------- /LiteEditor/filechecklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/filechecklist.h -------------------------------------------------------------------------------- /LiteEditor/fileexplorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/fileexplorer.h -------------------------------------------------------------------------------- /LiteEditor/filehistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/filehistory.cpp -------------------------------------------------------------------------------- /LiteEditor/filehistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/filehistory.h -------------------------------------------------------------------------------- /LiteEditor/fileview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/fileview.cpp -------------------------------------------------------------------------------- /LiteEditor/fileview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/fileview.h -------------------------------------------------------------------------------- /LiteEditor/findusagetab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/findusagetab.h -------------------------------------------------------------------------------- /LiteEditor/foldermodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/foldermodel.cpp -------------------------------------------------------------------------------- /LiteEditor/foldermodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/foldermodel.h -------------------------------------------------------------------------------- /LiteEditor/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/frame.cpp -------------------------------------------------------------------------------- /LiteEditor/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/frame.h -------------------------------------------------------------------------------- /LiteEditor/generalinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/generalinfo.cpp -------------------------------------------------------------------------------- /LiteEditor/generalinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/generalinfo.h -------------------------------------------------------------------------------- /LiteEditor/iconsextra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/iconsextra.cpp -------------------------------------------------------------------------------- /LiteEditor/localstable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/localstable.cpp -------------------------------------------------------------------------------- /LiteEditor/localstable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/localstable.h -------------------------------------------------------------------------------- /LiteEditor/mainbook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/mainbook.cpp -------------------------------------------------------------------------------- /LiteEditor/mainbook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/mainbook.h -------------------------------------------------------------------------------- /LiteEditor/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/manager.cpp -------------------------------------------------------------------------------- /LiteEditor/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/manager.h -------------------------------------------------------------------------------- /LiteEditor/menumanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/menumanager.cpp -------------------------------------------------------------------------------- /LiteEditor/menumanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/menumanager.h -------------------------------------------------------------------------------- /LiteEditor/new_item_dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/new_item_dlg.h -------------------------------------------------------------------------------- /LiteEditor/newquickwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/newquickwatch.h -------------------------------------------------------------------------------- /LiteEditor/options_dlg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/options_dlg2.h -------------------------------------------------------------------------------- /LiteEditor/output_pane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/output_pane.cpp -------------------------------------------------------------------------------- /LiteEditor/output_pane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/output_pane.h -------------------------------------------------------------------------------- /LiteEditor/packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/packages.json -------------------------------------------------------------------------------- /LiteEditor/plugindlgbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/plugindlgbase.h -------------------------------------------------------------------------------- /LiteEditor/pluginmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/pluginmanager.h -------------------------------------------------------------------------------- /LiteEditor/pluginmgrdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/pluginmgrdlg.h -------------------------------------------------------------------------------- /LiteEditor/quickdebugdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/quickdebugdlg.h -------------------------------------------------------------------------------- /LiteEditor/res/16/bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/16/bulb.png -------------------------------------------------------------------------------- /LiteEditor/res/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/archive.png -------------------------------------------------------------------------------- /LiteEditor/res/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/bug.png -------------------------------------------------------------------------------- /LiteEditor/res/clang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/clang.png -------------------------------------------------------------------------------- /LiteEditor/res/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/console.png -------------------------------------------------------------------------------- /LiteEditor/res/cubes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/cubes.ico -------------------------------------------------------------------------------- /LiteEditor/res/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/cursor.png -------------------------------------------------------------------------------- /LiteEditor/res/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/dll.png -------------------------------------------------------------------------------- /LiteEditor/res/down-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/down-10.png -------------------------------------------------------------------------------- /LiteEditor/res/eclipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/eclipse.png -------------------------------------------------------------------------------- /LiteEditor/res/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/enter.png -------------------------------------------------------------------------------- /LiteEditor/res/eran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/eran.png -------------------------------------------------------------------------------- /LiteEditor/res/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/eraser.png -------------------------------------------------------------------------------- /LiteEditor/res/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/expand.png -------------------------------------------------------------------------------- /LiteEditor/res/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/gear.png -------------------------------------------------------------------------------- /LiteEditor/res/gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/gear@2x.png -------------------------------------------------------------------------------- /LiteEditor/res/gohome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/gohome.png -------------------------------------------------------------------------------- /LiteEditor/res/goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/goto.png -------------------------------------------------------------------------------- /LiteEditor/res/gtk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/gtk.png -------------------------------------------------------------------------------- /LiteEditor/res/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/help.png -------------------------------------------------------------------------------- /LiteEditor/res/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/home.png -------------------------------------------------------------------------------- /LiteEditor/res/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/home@2x.png -------------------------------------------------------------------------------- /LiteEditor/res/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/html.png -------------------------------------------------------------------------------- /LiteEditor/res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/icon.png -------------------------------------------------------------------------------- /LiteEditor/res/kstars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/kstars.png -------------------------------------------------------------------------------- /LiteEditor/res/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/link.png -------------------------------------------------------------------------------- /LiteEditor/res/link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/link@2x.png -------------------------------------------------------------------------------- /LiteEditor/res/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/lock.png -------------------------------------------------------------------------------- /LiteEditor/res/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/menu.png -------------------------------------------------------------------------------- /LiteEditor/res/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/ok.png -------------------------------------------------------------------------------- /LiteEditor/res/outbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/outbox.png -------------------------------------------------------------------------------- /LiteEditor/res/puzzle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/puzzle.jpg -------------------------------------------------------------------------------- /LiteEditor/res/puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/puzzle.png -------------------------------------------------------------------------------- /LiteEditor/res/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/qt.png -------------------------------------------------------------------------------- /LiteEditor/res/rebuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/rebuild.png -------------------------------------------------------------------------------- /LiteEditor/res/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/reload.png -------------------------------------------------------------------------------- /LiteEditor/res/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/sort.png -------------------------------------------------------------------------------- /LiteEditor/res/threads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/threads.png -------------------------------------------------------------------------------- /LiteEditor/res/trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/trace.png -------------------------------------------------------------------------------- /LiteEditor/res/up-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/up-10.png -------------------------------------------------------------------------------- /LiteEditor/res/watches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/watches.png -------------------------------------------------------------------------------- /LiteEditor/res/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/wx.png -------------------------------------------------------------------------------- /LiteEditor/res/wxfb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/res/wxfb.png -------------------------------------------------------------------------------- /LiteEditor/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/resource.h -------------------------------------------------------------------------------- /LiteEditor/resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/resources.cpp -------------------------------------------------------------------------------- /LiteEditor/resources.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/resources.xrc -------------------------------------------------------------------------------- /LiteEditor/shelltab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/shelltab.cpp -------------------------------------------------------------------------------- /LiteEditor/shelltab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/shelltab.h -------------------------------------------------------------------------------- /LiteEditor/simpletable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/simpletable.cpp -------------------------------------------------------------------------------- /LiteEditor/simpletable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/simpletable.h -------------------------------------------------------------------------------- /LiteEditor/stack_walker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/stack_walker.h -------------------------------------------------------------------------------- /LiteEditor/stdwx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/stdwx.h -------------------------------------------------------------------------------- /LiteEditor/tabgroupdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/tabgroupdlg.cpp -------------------------------------------------------------------------------- /LiteEditor/tabgroupdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/tabgroupdlg.h -------------------------------------------------------------------------------- /LiteEditor/tabgroupspane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/tabgroupspane.h -------------------------------------------------------------------------------- /LiteEditor/tiptree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/tiptree.cpp -------------------------------------------------------------------------------- /LiteEditor/tiptree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/tiptree.h -------------------------------------------------------------------------------- /LiteEditor/workspacetab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/workspacetab.h -------------------------------------------------------------------------------- /LiteEditor/wxcrafter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/wxcrafter.cpp -------------------------------------------------------------------------------- /LiteEditor/wxcrafter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/wxcrafter.h -------------------------------------------------------------------------------- /LiteEditor/wxcrafter.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/LiteEditor/wxcrafter.wxcp -------------------------------------------------------------------------------- /MacBundler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MacBundler/CMakeLists.txt -------------------------------------------------------------------------------- /MacBundler/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MacBundler/defs.h -------------------------------------------------------------------------------- /MacBundler/macbundler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MacBundler/macbundler.cpp -------------------------------------------------------------------------------- /MacBundler/macbundler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MacBundler/macbundler.h -------------------------------------------------------------------------------- /MemCheck/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MemCheck/CMakeLists.txt -------------------------------------------------------------------------------- /MemCheck/icons/16/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MemCheck/icons/16/list.png -------------------------------------------------------------------------------- /MemCheck/memcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MemCheck/memcheck.cpp -------------------------------------------------------------------------------- /MemCheck/memcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MemCheck/memcheck.h -------------------------------------------------------------------------------- /MemCheck/memcheckdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MemCheck/memcheckdefs.h -------------------------------------------------------------------------------- /MemCheck/memcheckerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MemCheck/memcheckerror.cpp -------------------------------------------------------------------------------- /MemCheck/memcheckerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MemCheck/memcheckerror.h -------------------------------------------------------------------------------- /MemCheck/memcheckui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MemCheck/memcheckui.cpp -------------------------------------------------------------------------------- /MemCheck/memcheckui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MemCheck/memcheckui.h -------------------------------------------------------------------------------- /MemCheck/memcheckui.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/MemCheck/memcheckui.wxcp -------------------------------------------------------------------------------- /Outline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Outline/CMakeLists.txt -------------------------------------------------------------------------------- /Outline/outline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Outline/outline.cpp -------------------------------------------------------------------------------- /Outline/outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Outline/outline.h -------------------------------------------------------------------------------- /Outline/outline_tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Outline/outline_tab.cpp -------------------------------------------------------------------------------- /Outline/outline_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Outline/outline_tab.h -------------------------------------------------------------------------------- /Outline/wxcrafter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Outline/wxcrafter.cpp -------------------------------------------------------------------------------- /Outline/wxcrafter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Outline/wxcrafter.h -------------------------------------------------------------------------------- /Outline/wxcrafter.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Outline/wxcrafter.wxcp -------------------------------------------------------------------------------- /PCH/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PCH/CMakeLists.txt -------------------------------------------------------------------------------- /PCH/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PCH/Makefile -------------------------------------------------------------------------------- /PCH/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PCH/dummy.cpp -------------------------------------------------------------------------------- /PHPLint/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PHPLint/CMakeLists.txt -------------------------------------------------------------------------------- /PHPLint/lintoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PHPLint/lintoptions.cpp -------------------------------------------------------------------------------- /PHPLint/lintoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PHPLint/lintoptions.h -------------------------------------------------------------------------------- /PHPLint/phplint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PHPLint/phplint.cpp -------------------------------------------------------------------------------- /PHPLint/phplint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PHPLint/phplint.h -------------------------------------------------------------------------------- /PHPLint/phplintdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PHPLint/phplintdlg.cpp -------------------------------------------------------------------------------- /PHPLint/phplintdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PHPLint/phplintdlg.h -------------------------------------------------------------------------------- /PHPLint/phplintdlg.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PHPLint/phplintdlg.wxcp -------------------------------------------------------------------------------- /PHPLint/phplintdlgbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PHPLint/phplintdlgbase.cpp -------------------------------------------------------------------------------- /PHPLint/phplintdlgbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/PHPLint/phplintdlgbase.h -------------------------------------------------------------------------------- /Plugin/AddIncludeFile.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/AddIncludeFile.wxcp -------------------------------------------------------------------------------- /Plugin/AddSSHAcountDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/AddSSHAcountDlg.cpp -------------------------------------------------------------------------------- /Plugin/AddSSHAcountDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/AddSSHAcountDlg.h -------------------------------------------------------------------------------- /Plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/CMakeLists.txt -------------------------------------------------------------------------------- /Plugin/CallThrottler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/CallThrottler.hpp -------------------------------------------------------------------------------- /Plugin/ConsoleLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ConsoleLexer.cpp -------------------------------------------------------------------------------- /Plugin/ConsoleLexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ConsoleLexer.hpp -------------------------------------------------------------------------------- /Plugin/Diff/DiffConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Diff/DiffConfig.cpp -------------------------------------------------------------------------------- /Plugin/Diff/DiffConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Diff/DiffConfig.h -------------------------------------------------------------------------------- /Plugin/Diff/DiffUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Diff/DiffUI.cpp -------------------------------------------------------------------------------- /Plugin/Diff/DiffUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Diff/DiffUI.h -------------------------------------------------------------------------------- /Plugin/Diff/DiffUI.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Diff/DiffUI.wxcp -------------------------------------------------------------------------------- /Plugin/Diff/clDTL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Diff/clDTL.cpp -------------------------------------------------------------------------------- /Plugin/Diff/clDTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Diff/clDTL.h -------------------------------------------------------------------------------- /Plugin/Diff/clDiffFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Diff/clDiffFrame.h -------------------------------------------------------------------------------- /Plugin/Diff/clPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Diff/clPatch.cpp -------------------------------------------------------------------------------- /Plugin/Diff/clPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Diff/clPatch.h -------------------------------------------------------------------------------- /Plugin/EditDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/EditDlg.cpp -------------------------------------------------------------------------------- /Plugin/EditDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/EditDlg.h -------------------------------------------------------------------------------- /Plugin/EnvVarImporterDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/EnvVarImporterDlg.h -------------------------------------------------------------------------------- /Plugin/FileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/FileManager.cpp -------------------------------------------------------------------------------- /Plugin/FileManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/FileManager.hpp -------------------------------------------------------------------------------- /Plugin/GCCMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/GCCMetadata.cpp -------------------------------------------------------------------------------- /Plugin/GCCMetadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/GCCMetadata.hpp -------------------------------------------------------------------------------- /Plugin/GotoAnythingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/GotoAnythingDlg.cpp -------------------------------------------------------------------------------- /Plugin/GotoAnythingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/GotoAnythingDlg.h -------------------------------------------------------------------------------- /Plugin/ICompilerLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ICompilerLocator.h -------------------------------------------------------------------------------- /Plugin/LSP/LSPManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/LSP/LSPManager.cpp -------------------------------------------------------------------------------- /Plugin/LSP/LSPManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/LSP/LSPManager.hpp -------------------------------------------------------------------------------- /Plugin/LSP/LSPNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/LSP/LSPNetwork.cpp -------------------------------------------------------------------------------- /Plugin/LSP/LSPNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/LSP/LSPNetwork.h -------------------------------------------------------------------------------- /Plugin/LSP/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/LSP/UI.cpp -------------------------------------------------------------------------------- /Plugin/LSP/UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/LSP/UI.h -------------------------------------------------------------------------------- /Plugin/LSP/UI.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/LSP/UI.wxcp -------------------------------------------------------------------------------- /Plugin/MSWDarkMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/MSWDarkMode.cpp -------------------------------------------------------------------------------- /Plugin/MSWDarkMode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/MSWDarkMode.hpp -------------------------------------------------------------------------------- /Plugin/MacrosBaseDlg.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/MacrosBaseDlg.wxcp -------------------------------------------------------------------------------- /Plugin/MarkdownStyler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/MarkdownStyler.cpp -------------------------------------------------------------------------------- /Plugin/MarkdownStyler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/MarkdownStyler.hpp -------------------------------------------------------------------------------- /Plugin/Markup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Markup.cpp -------------------------------------------------------------------------------- /Plugin/Markup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Markup.h -------------------------------------------------------------------------------- /Plugin/NewProjectDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/NewProjectDialog.h -------------------------------------------------------------------------------- /Plugin/NodeJSLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/NodeJSLocator.cpp -------------------------------------------------------------------------------- /Plugin/NodeJSLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/NodeJSLocator.h -------------------------------------------------------------------------------- /Plugin/Notebook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Notebook.cpp -------------------------------------------------------------------------------- /Plugin/Notebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Notebook.h -------------------------------------------------------------------------------- /Plugin/SFTPBrowserDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/SFTPBrowserDlg.cpp -------------------------------------------------------------------------------- /Plugin/SFTPBrowserDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/SFTPBrowserDlg.h -------------------------------------------------------------------------------- /Plugin/SFTPSessionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/SFTPSessionInfo.cpp -------------------------------------------------------------------------------- /Plugin/SFTPSessionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/SFTPSessionInfo.h -------------------------------------------------------------------------------- /Plugin/ToolBar.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ToolBar.wxcp -------------------------------------------------------------------------------- /Plugin/ToolBarUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ToolBarUI.cpp -------------------------------------------------------------------------------- /Plugin/ToolBarUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ToolBarUI.h -------------------------------------------------------------------------------- /Plugin/WSImporterDlgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/WSImporterDlgs.cpp -------------------------------------------------------------------------------- /Plugin/WSImporterDlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/WSImporterDlgs.h -------------------------------------------------------------------------------- /Plugin/WSImporterDlgs.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/WSImporterDlgs.wxcp -------------------------------------------------------------------------------- /Plugin/WorkspaceHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/WorkspaceHelper.cpp -------------------------------------------------------------------------------- /Plugin/WorkspaceHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/WorkspaceHelper.hpp -------------------------------------------------------------------------------- /Plugin/Zip/clZipReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Zip/clZipReader.cpp -------------------------------------------------------------------------------- /Plugin/Zip/clZipReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Zip/clZipReader.h -------------------------------------------------------------------------------- /Plugin/Zip/clZipWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Zip/clZipWriter.cpp -------------------------------------------------------------------------------- /Plugin/Zip/clZipWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/Zip/clZipWriter.h -------------------------------------------------------------------------------- /Plugin/addincludefiledlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/addincludefiledlg.h -------------------------------------------------------------------------------- /Plugin/ai/ChatAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/ChatAI.cpp -------------------------------------------------------------------------------- /Plugin/ai/ChatAI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/ChatAI.hpp -------------------------------------------------------------------------------- /Plugin/ai/ChatAIWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/ChatAIWindow.cpp -------------------------------------------------------------------------------- /Plugin/ai/ChatAIWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/ChatAIWindow.hpp -------------------------------------------------------------------------------- /Plugin/ai/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/Common.hpp -------------------------------------------------------------------------------- /Plugin/ai/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/Config.cpp -------------------------------------------------------------------------------- /Plugin/ai/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/Config.hpp -------------------------------------------------------------------------------- /Plugin/ai/LLMEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/LLMEvents.cpp -------------------------------------------------------------------------------- /Plugin/ai/LLMEvents.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/LLMEvents.hpp -------------------------------------------------------------------------------- /Plugin/ai/LLMManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/LLMManager.cpp -------------------------------------------------------------------------------- /Plugin/ai/LLMManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/LLMManager.hpp -------------------------------------------------------------------------------- /Plugin/ai/Prompts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/Prompts.cpp -------------------------------------------------------------------------------- /Plugin/ai/Tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/Tools.cpp -------------------------------------------------------------------------------- /Plugin/ai/Tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/Tools.hpp -------------------------------------------------------------------------------- /Plugin/ai/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/UI.cpp -------------------------------------------------------------------------------- /Plugin/ai/UI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/UI.hpp -------------------------------------------------------------------------------- /Plugin/ai/UI.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ai/UI.wxcp -------------------------------------------------------------------------------- /Plugin/art_metro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/art_metro.cpp -------------------------------------------------------------------------------- /Plugin/art_metro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/art_metro.h -------------------------------------------------------------------------------- /Plugin/attribute_style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/attribute_style.cpp -------------------------------------------------------------------------------- /Plugin/attribute_style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/attribute_style.h -------------------------------------------------------------------------------- /Plugin/aui/clAuiBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/aui/clAuiBook.cpp -------------------------------------------------------------------------------- /Plugin/aui/clAuiBook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/aui/clAuiBook.hpp -------------------------------------------------------------------------------- /Plugin/bitmap_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/bitmap_loader.cpp -------------------------------------------------------------------------------- /Plugin/bitmap_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/bitmap_loader.h -------------------------------------------------------------------------------- /Plugin/bookmark_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/bookmark_manager.h -------------------------------------------------------------------------------- /Plugin/build_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/build_config.cpp -------------------------------------------------------------------------------- /Plugin/build_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/build_config.h -------------------------------------------------------------------------------- /Plugin/build_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/build_system.cpp -------------------------------------------------------------------------------- /Plugin/build_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/build_system.h -------------------------------------------------------------------------------- /Plugin/builder/builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/builder/builder.cpp -------------------------------------------------------------------------------- /Plugin/buildmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/buildmanager.cpp -------------------------------------------------------------------------------- /Plugin/buildmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/buildmanager.h -------------------------------------------------------------------------------- /Plugin/clAboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clAboutDialog.h -------------------------------------------------------------------------------- /Plugin/clButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clButton.cpp -------------------------------------------------------------------------------- /Plugin/clButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clButton.h -------------------------------------------------------------------------------- /Plugin/clButtonBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clButtonBase.cpp -------------------------------------------------------------------------------- /Plugin/clButtonBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clButtonBase.h -------------------------------------------------------------------------------- /Plugin/clCaptionBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clCaptionBar.cpp -------------------------------------------------------------------------------- /Plugin/clCaptionBar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clCaptionBar.hpp -------------------------------------------------------------------------------- /Plugin/clCellValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clCellValue.cpp -------------------------------------------------------------------------------- /Plugin/clCellValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clCellValue.h -------------------------------------------------------------------------------- /Plugin/clChoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clChoice.cpp -------------------------------------------------------------------------------- /Plugin/clChoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clChoice.h -------------------------------------------------------------------------------- /Plugin/clColours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clColours.cpp -------------------------------------------------------------------------------- /Plugin/clColours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clColours.h -------------------------------------------------------------------------------- /Plugin/clComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clComboBox.cpp -------------------------------------------------------------------------------- /Plugin/clComboBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clComboBox.hpp -------------------------------------------------------------------------------- /Plugin/clEditorBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clEditorBar.cpp -------------------------------------------------------------------------------- /Plugin/clEditorBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clEditorBar.h -------------------------------------------------------------------------------- /Plugin/clFileCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clFileCache.cpp -------------------------------------------------------------------------------- /Plugin/clFileCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clFileCache.hpp -------------------------------------------------------------------------------- /Plugin/clHeaderBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clHeaderBar.cpp -------------------------------------------------------------------------------- /Plugin/clHeaderBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clHeaderBar.h -------------------------------------------------------------------------------- /Plugin/clHeaderItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clHeaderItem.cpp -------------------------------------------------------------------------------- /Plugin/clHeaderItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clHeaderItem.h -------------------------------------------------------------------------------- /Plugin/clImageViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clImageViewer.h -------------------------------------------------------------------------------- /Plugin/clInfoBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clInfoBar.cpp -------------------------------------------------------------------------------- /Plugin/clInfoBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clInfoBar.h -------------------------------------------------------------------------------- /Plugin/clNodeJS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clNodeJS.cpp -------------------------------------------------------------------------------- /Plugin/clNodeJS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clNodeJS.h -------------------------------------------------------------------------------- /Plugin/clRegistery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clRegistery.cpp -------------------------------------------------------------------------------- /Plugin/clRegistery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clRegistery.hpp -------------------------------------------------------------------------------- /Plugin/clRemoteHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clRemoteHost.cpp -------------------------------------------------------------------------------- /Plugin/clRemoteHost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clRemoteHost.hpp -------------------------------------------------------------------------------- /Plugin/clRowEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clRowEntry.cpp -------------------------------------------------------------------------------- /Plugin/clRowEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clRowEntry.h -------------------------------------------------------------------------------- /Plugin/clSTCHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clSTCHelper.cpp -------------------------------------------------------------------------------- /Plugin/clSTCHelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clSTCHelper.hpp -------------------------------------------------------------------------------- /Plugin/clScrollBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clScrollBar.cpp -------------------------------------------------------------------------------- /Plugin/clScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clScrollBar.h -------------------------------------------------------------------------------- /Plugin/clStatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clStatusBar.cpp -------------------------------------------------------------------------------- /Plugin/clStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clStatusBar.h -------------------------------------------------------------------------------- /Plugin/clStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clStrings.h -------------------------------------------------------------------------------- /Plugin/clTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clTab.h -------------------------------------------------------------------------------- /Plugin/clTabHistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clTabHistory.cpp -------------------------------------------------------------------------------- /Plugin/clTabHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clTabHistory.h -------------------------------------------------------------------------------- /Plugin/clTabRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clTabRenderer.h -------------------------------------------------------------------------------- /Plugin/clThemedButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clThemedButton.h -------------------------------------------------------------------------------- /Plugin/clThemedChoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clThemedChoice.h -------------------------------------------------------------------------------- /Plugin/clThemedCtrl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clThemedCtrl.hpp -------------------------------------------------------------------------------- /Plugin/clThemedSTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clThemedSTC.cpp -------------------------------------------------------------------------------- /Plugin/clThemedSTC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clThemedSTC.hpp -------------------------------------------------------------------------------- /Plugin/clToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clToolBar.cpp -------------------------------------------------------------------------------- /Plugin/clToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clToolBar.h -------------------------------------------------------------------------------- /Plugin/clTreeCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clTreeCtrl.cpp -------------------------------------------------------------------------------- /Plugin/clTreeCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clTreeCtrl.h -------------------------------------------------------------------------------- /Plugin/cl_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/cl_registry.cpp -------------------------------------------------------------------------------- /Plugin/cl_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/cl_registry.h -------------------------------------------------------------------------------- /Plugin/clean_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/clean_request.h -------------------------------------------------------------------------------- /Plugin/closetab.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/closetab.xpm -------------------------------------------------------------------------------- /Plugin/compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/compiler.cpp -------------------------------------------------------------------------------- /Plugin/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/compiler.h -------------------------------------------------------------------------------- /Plugin/configtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/configtool.cpp -------------------------------------------------------------------------------- /Plugin/configtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/configtool.h -------------------------------------------------------------------------------- /Plugin/consolefinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/consolefinder.h -------------------------------------------------------------------------------- /Plugin/dirpicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/dirpicker.cpp -------------------------------------------------------------------------------- /Plugin/dirpicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/dirpicker.h -------------------------------------------------------------------------------- /Plugin/dockablepane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/dockablepane.cpp -------------------------------------------------------------------------------- /Plugin/dockablepane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/dockablepane.h -------------------------------------------------------------------------------- /Plugin/drawingutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/drawingutils.cpp -------------------------------------------------------------------------------- /Plugin/drawingutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/drawingutils.h -------------------------------------------------------------------------------- /Plugin/dynamiclibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/dynamiclibrary.h -------------------------------------------------------------------------------- /Plugin/editor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/editor_config.h -------------------------------------------------------------------------------- /Plugin/envvarlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/envvarlist.cpp -------------------------------------------------------------------------------- /Plugin/envvarlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/envvarlist.h -------------------------------------------------------------------------------- /Plugin/exelocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/exelocator.cpp -------------------------------------------------------------------------------- /Plugin/exelocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/exelocator.h -------------------------------------------------------------------------------- /Plugin/file.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/file.xpm -------------------------------------------------------------------------------- /Plugin/filepicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/filepicker.cpp -------------------------------------------------------------------------------- /Plugin/filepicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/filepicker.h -------------------------------------------------------------------------------- /Plugin/folder.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/folder.xpm -------------------------------------------------------------------------------- /Plugin/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/globals.cpp -------------------------------------------------------------------------------- /Plugin/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/globals.h -------------------------------------------------------------------------------- /Plugin/libplugin_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/libplugin_pch.h -------------------------------------------------------------------------------- /Plugin/localworkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/localworkspace.h -------------------------------------------------------------------------------- /Plugin/macromanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/macromanager.cpp -------------------------------------------------------------------------------- /Plugin/macromanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/macromanager.h -------------------------------------------------------------------------------- /Plugin/macrosbasedlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/macrosbasedlg.h -------------------------------------------------------------------------------- /Plugin/macrosdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/macrosdlg.cpp -------------------------------------------------------------------------------- /Plugin/macrosdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/macrosdlg.h -------------------------------------------------------------------------------- /Plugin/md5/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/md5/md5.cpp -------------------------------------------------------------------------------- /Plugin/md5/md5_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/md5/md5_header.h -------------------------------------------------------------------------------- /Plugin/md5/wxmd5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/md5/wxmd5.cpp -------------------------------------------------------------------------------- /Plugin/md5/wxmd5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/md5/wxmd5.h -------------------------------------------------------------------------------- /Plugin/mdparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/mdparser.cpp -------------------------------------------------------------------------------- /Plugin/mdparser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/mdparser.hpp -------------------------------------------------------------------------------- /Plugin/nameanddescdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/nameanddescdlg.h -------------------------------------------------------------------------------- /Plugin/optionsconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/optionsconfig.h -------------------------------------------------------------------------------- /Plugin/overlaytool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/overlaytool.cpp -------------------------------------------------------------------------------- /Plugin/overlaytool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/overlaytool.h -------------------------------------------------------------------------------- /Plugin/phpoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/phpoptions.cpp -------------------------------------------------------------------------------- /Plugin/phpoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/phpoptions.h -------------------------------------------------------------------------------- /Plugin/pipedprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/pipedprocess.cpp -------------------------------------------------------------------------------- /Plugin/pipedprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/pipedprocess.h -------------------------------------------------------------------------------- /Plugin/plugindata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/plugindata.cpp -------------------------------------------------------------------------------- /Plugin/plugindata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/plugindata.h -------------------------------------------------------------------------------- /Plugin/progressctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/progressctrl.cpp -------------------------------------------------------------------------------- /Plugin/progressctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/progressctrl.h -------------------------------------------------------------------------------- /Plugin/project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/project.cpp -------------------------------------------------------------------------------- /Plugin/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/project.h -------------------------------------------------------------------------------- /Plugin/queuecommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/queuecommand.cpp -------------------------------------------------------------------------------- /Plugin/queuecommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/queuecommand.h -------------------------------------------------------------------------------- /Plugin/quickdebuginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/quickdebuginfo.h -------------------------------------------------------------------------------- /Plugin/renamefiledlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/renamefiledlg.h -------------------------------------------------------------------------------- /Plugin/root.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/root.xpm -------------------------------------------------------------------------------- /Plugin/sessionmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/sessionmanager.h -------------------------------------------------------------------------------- /Plugin/sftp_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/sftp_settings.h -------------------------------------------------------------------------------- /Plugin/sftp_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/sftp_ui.cpp -------------------------------------------------------------------------------- /Plugin/sftp_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/sftp_ui.h -------------------------------------------------------------------------------- /Plugin/sftp_ui.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/sftp_ui.wxcp -------------------------------------------------------------------------------- /Plugin/sftptreemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/sftptreemodel.h -------------------------------------------------------------------------------- /Plugin/shell_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/shell_command.h -------------------------------------------------------------------------------- /Plugin/ssh-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ssh-16.png -------------------------------------------------------------------------------- /Plugin/ssh-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/ssh-32.png -------------------------------------------------------------------------------- /Plugin/stringsearcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/stringsearcher.h -------------------------------------------------------------------------------- /Plugin/symbol_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/symbol_tree.cpp -------------------------------------------------------------------------------- /Plugin/symbol_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/symbol_tree.h -------------------------------------------------------------------------------- /Plugin/sync_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/sync_queue.h -------------------------------------------------------------------------------- /Plugin/tab_x.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/tab_x.xpm -------------------------------------------------------------------------------- /Plugin/unredobase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/unredobase.cpp -------------------------------------------------------------------------------- /Plugin/unredobase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/unredobase.h -------------------------------------------------------------------------------- /Plugin/window_locker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/window_locker.h -------------------------------------------------------------------------------- /Plugin/windowstack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/windowstack.cpp -------------------------------------------------------------------------------- /Plugin/windowstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/windowstack.h -------------------------------------------------------------------------------- /Plugin/workspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/workspace.cpp -------------------------------------------------------------------------------- /Plugin/workspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/workspace.h -------------------------------------------------------------------------------- /Plugin/wxPNGAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/wxPNGAnimation.h -------------------------------------------------------------------------------- /Plugin/wxcrafter.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/wxcrafter.wxcp -------------------------------------------------------------------------------- /Plugin/wxterminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/wxterminal.cpp -------------------------------------------------------------------------------- /Plugin/wxterminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/wxterminal.h -------------------------------------------------------------------------------- /Plugin/wxterminalbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Plugin/wxterminalbase.h -------------------------------------------------------------------------------- /QmakePlugin/NewQtProj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/QmakePlugin/NewQtProj.h -------------------------------------------------------------------------------- /QmakePlugin/qmakeconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/QmakePlugin/qmakeconf.h -------------------------------------------------------------------------------- /QmakePlugin/qmaketab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/QmakePlugin/qmaketab.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/README.md -------------------------------------------------------------------------------- /Remoty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Remoty/CMakeLists.txt -------------------------------------------------------------------------------- /Remoty/RemotyConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Remoty/RemotyConfig.cpp -------------------------------------------------------------------------------- /Remoty/RemotyConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Remoty/RemotyConfig.hpp -------------------------------------------------------------------------------- /Remoty/RemotyPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Remoty/RemotyPlugin.cpp -------------------------------------------------------------------------------- /Remoty/RemotyPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Remoty/RemotyPlugin.hpp -------------------------------------------------------------------------------- /Remoty/RemotyUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Remoty/RemotyUI.cpp -------------------------------------------------------------------------------- /Remoty/RemotyUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Remoty/RemotyUI.h -------------------------------------------------------------------------------- /Remoty/RemotyUI.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Remoty/RemotyUI.wxcp -------------------------------------------------------------------------------- /Runtime/File2Hex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/File2Hex.exe -------------------------------------------------------------------------------- /Runtime/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/Info.plist -------------------------------------------------------------------------------- /Runtime/OpenTerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/OpenTerm -------------------------------------------------------------------------------- /Runtime/PHP.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/PHP.zip -------------------------------------------------------------------------------- /Runtime/build_wx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/build_wx.bat -------------------------------------------------------------------------------- /Runtime/clg++: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | codelite-cc g++ $@ 3 | 4 | 5 | -------------------------------------------------------------------------------- /Runtime/clgcc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | codelite-cc gcc $@ 3 | 4 | -------------------------------------------------------------------------------- /Runtime/codelite-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/codelite-remote -------------------------------------------------------------------------------- /Runtime/codelite_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/codelite_exec -------------------------------------------------------------------------------- /Runtime/codelite_xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/codelite_xterm -------------------------------------------------------------------------------- /Runtime/config/codelite.layout.default: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Runtime/excludes: -------------------------------------------------------------------------------- 1 | \.svn\ 2 | -dbg.dll -------------------------------------------------------------------------------- /Runtime/gdb_printers/boost/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Runtime/gdb_printers/libstdcxx/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Runtime/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/icon.icns -------------------------------------------------------------------------------- /Runtime/man1/codelite.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/man1/codelite.1 -------------------------------------------------------------------------------- /Runtime/mkdir.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/mkdir.exe -------------------------------------------------------------------------------- /Runtime/osx-terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/osx-terminal.sh -------------------------------------------------------------------------------- /Runtime/pack_wx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/pack_wx.bat -------------------------------------------------------------------------------- /Runtime/patch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/patch.exe -------------------------------------------------------------------------------- /Runtime/rc/menu.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/rc/menu.xrc -------------------------------------------------------------------------------- /Runtime/rm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/rm.exe -------------------------------------------------------------------------------- /Runtime/rust-gdb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/rust-gdb.bat -------------------------------------------------------------------------------- /Runtime/templates/gizmos/resources.rc.wizard: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /Runtime/update64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/update64.bat -------------------------------------------------------------------------------- /Runtime/wx_excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Runtime/wx_excludes -------------------------------------------------------------------------------- /Rust/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Rust/CMakeLists.txt -------------------------------------------------------------------------------- /Rust/CargoToml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Rust/CargoToml.cpp -------------------------------------------------------------------------------- /Rust/CargoToml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Rust/CargoToml.hpp -------------------------------------------------------------------------------- /Rust/RustPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Rust/RustPlugin.cpp -------------------------------------------------------------------------------- /Rust/RustPlugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Rust/RustPlugin.hpp -------------------------------------------------------------------------------- /Rust/RustWorkspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Rust/RustWorkspace.cpp -------------------------------------------------------------------------------- /Rust/RustWorkspace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Rust/RustWorkspace.hpp -------------------------------------------------------------------------------- /SFTP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/CMakeLists.txt -------------------------------------------------------------------------------- /SFTP/SFTPBookmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/SFTPBookmark.cpp -------------------------------------------------------------------------------- /SFTP/SFTPBookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/SFTPBookmark.h -------------------------------------------------------------------------------- /SFTP/SFTPGrep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/SFTPGrep.cpp -------------------------------------------------------------------------------- /SFTP/SFTPGrep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/SFTPGrep.h -------------------------------------------------------------------------------- /SFTP/SFTPGrepStyler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/SFTPGrepStyler.cpp -------------------------------------------------------------------------------- /SFTP/SFTPGrepStyler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/SFTPGrepStyler.h -------------------------------------------------------------------------------- /SFTP/SFTPStatusPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/SFTPStatusPage.cpp -------------------------------------------------------------------------------- /SFTP/SFTPStatusPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/SFTPStatusPage.h -------------------------------------------------------------------------------- /SFTP/SFTPTreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/SFTPTreeView.cpp -------------------------------------------------------------------------------- /SFTP/SFTPTreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/SFTPTreeView.h -------------------------------------------------------------------------------- /SFTP/SFTPUploadDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/SFTPUploadDialog.h -------------------------------------------------------------------------------- /SFTP/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/UI.cpp -------------------------------------------------------------------------------- /SFTP/UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/UI.h -------------------------------------------------------------------------------- /SFTP/UI.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/UI.wxcp -------------------------------------------------------------------------------- /SFTP/remote_file_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/remote_file_info.h -------------------------------------------------------------------------------- /SFTP/sftp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/sftp.cpp -------------------------------------------------------------------------------- /SFTP/sftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/sftp.h -------------------------------------------------------------------------------- /SFTP/sftp_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/sftp_error.png -------------------------------------------------------------------------------- /SFTP/sftp_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/sftp_info.png -------------------------------------------------------------------------------- /SFTP/sftp_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SFTP/sftp_ok.png -------------------------------------------------------------------------------- /SnipWiz/AboutHtml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SnipWiz/AboutHtml.h -------------------------------------------------------------------------------- /SnipWiz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SnipWiz/CMakeLists.txt -------------------------------------------------------------------------------- /SnipWiz/snipwiz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SnipWiz/snipwiz.cpp -------------------------------------------------------------------------------- /SnipWiz/snipwiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SnipWiz/snipwiz.h -------------------------------------------------------------------------------- /SnipWiz/snipwiz.pjd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SnipWiz/snipwiz.pjd -------------------------------------------------------------------------------- /SnipWiz/snipwiz.rc: -------------------------------------------------------------------------------- 1 | #include "wx/msw/wx.rc" 2 | -------------------------------------------------------------------------------- /SnipWiz/swGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SnipWiz/swGlobals.h -------------------------------------------------------------------------------- /SnipWiz/swStringDb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SnipWiz/swStringDb.cpp -------------------------------------------------------------------------------- /SnipWiz/swStringDb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SnipWiz/swStringDb.h -------------------------------------------------------------------------------- /SnipWiz/wxSerialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SnipWiz/wxSerialize.cpp -------------------------------------------------------------------------------- /SnipWiz/wxSerialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/SnipWiz/wxSerialize.h -------------------------------------------------------------------------------- /Subversion2/svninfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Subversion2/svninfo.h -------------------------------------------------------------------------------- /Subversion2/svnxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Subversion2/svnxml.cpp -------------------------------------------------------------------------------- /Subversion2/svnxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Subversion2/svnxml.h -------------------------------------------------------------------------------- /Subversion2/wxcrafter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Subversion2/wxcrafter.h -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/TODO.md -------------------------------------------------------------------------------- /Tail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Tail/CMakeLists.txt -------------------------------------------------------------------------------- /Tail/TailData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Tail/TailData.h -------------------------------------------------------------------------------- /Tail/TailFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Tail/TailFrame.cpp -------------------------------------------------------------------------------- /Tail/TailFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Tail/TailFrame.h -------------------------------------------------------------------------------- /Tail/TailPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Tail/TailPanel.cpp -------------------------------------------------------------------------------- /Tail/TailPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Tail/TailPanel.h -------------------------------------------------------------------------------- /Tail/TailUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Tail/TailUI.cpp -------------------------------------------------------------------------------- /Tail/TailUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Tail/TailUI.h -------------------------------------------------------------------------------- /Tail/TailUI.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Tail/TailUI.wxcp -------------------------------------------------------------------------------- /Tail/tail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Tail/tail.cpp -------------------------------------------------------------------------------- /Tail/tail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/Tail/tail.h -------------------------------------------------------------------------------- /WordCompletion/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/WordCompletion/UI.cpp -------------------------------------------------------------------------------- /WordCompletion/UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/WordCompletion/UI.h -------------------------------------------------------------------------------- /WordCompletion/UI.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/WordCompletion/UI.wxcp -------------------------------------------------------------------------------- /ZoomNavigator/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ZoomNavigator/AUTHORS -------------------------------------------------------------------------------- /ZoomNavigator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ZoomNavigator/LICENSE -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/_config.yml -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/about.html -------------------------------------------------------------------------------- /art/cl-splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/art/cl-splash.png -------------------------------------------------------------------------------- /art/cl-splash.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/art/cl-splash.xcf -------------------------------------------------------------------------------- /art/cl-splash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/art/cl-splash@2x.png -------------------------------------------------------------------------------- /art/codelite-logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/art/codelite-logo.xcf -------------------------------------------------------------------------------- /art/codelite.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/art/codelite.xcf -------------------------------------------------------------------------------- /art/splashscreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/art/splashscreen@2x.png -------------------------------------------------------------------------------- /art/wxcrafter.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/art/wxcrafter.xcf -------------------------------------------------------------------------------- /codelite.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/codelite.spec -------------------------------------------------------------------------------- /codelite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/codelite.xml -------------------------------------------------------------------------------- /codelite_echo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/codelite_echo/main.c -------------------------------------------------------------------------------- /codelite_open_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/codelite_open_helper.py -------------------------------------------------------------------------------- /codelite_prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/codelite_prefix.h -------------------------------------------------------------------------------- /codelite_vim/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/codelite_vim/README.txt -------------------------------------------------------------------------------- /codelite_vim/VIM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/codelite_vim/VIM.cpp -------------------------------------------------------------------------------- /codelite_vim/VIM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/codelite_vim/VIM.h -------------------------------------------------------------------------------- /codelite_vim/VIM.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/codelite_vim/VIM.wxcp -------------------------------------------------------------------------------- /codelitephp/PHPParserUnitTests/Tests/Test.phpwsp: -------------------------------------------------------------------------------- 1 | { 2 | "projects": ["Tests.phprj"] 3 | } -------------------------------------------------------------------------------- /compilers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/compilers.json -------------------------------------------------------------------------------- /cppchecker/cppchecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/cppchecker/cppchecker.h -------------------------------------------------------------------------------- /cscope/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/cscope/CMakeLists.txt -------------------------------------------------------------------------------- /cscope/CscopeTabBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/cscope/CscopeTabBase.h -------------------------------------------------------------------------------- /cscope/cscope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/cscope/cscope.cpp -------------------------------------------------------------------------------- /cscope/cscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/cscope/cscope.h -------------------------------------------------------------------------------- /cscope/cscopetab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/cscope/cscopetab.cpp -------------------------------------------------------------------------------- /cscope/cscopetab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/cscope/cscopetab.h -------------------------------------------------------------------------------- /ctagsd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/CMakeLists.txt -------------------------------------------------------------------------------- /ctagsd/ctagsd.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/ctagsd.project -------------------------------------------------------------------------------- /ctagsd/lib/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/lib/Channel.cpp -------------------------------------------------------------------------------- /ctagsd/lib/Channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/lib/Channel.hpp -------------------------------------------------------------------------------- /ctagsd/lib/LSPUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/lib/LSPUtils.cpp -------------------------------------------------------------------------------- /ctagsd/lib/LSPUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/lib/LSPUtils.hpp -------------------------------------------------------------------------------- /ctagsd/lib/Scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/lib/Scanner.cpp -------------------------------------------------------------------------------- /ctagsd/lib/Scanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/lib/Scanner.hpp -------------------------------------------------------------------------------- /ctagsd/lib/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/lib/Settings.cpp -------------------------------------------------------------------------------- /ctagsd/lib/Settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/lib/Settings.hpp -------------------------------------------------------------------------------- /ctagsd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/main.cpp -------------------------------------------------------------------------------- /ctagsd/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/tests/main.cpp -------------------------------------------------------------------------------- /ctagsd/tests/tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/tests/tester.cpp -------------------------------------------------------------------------------- /ctagsd/tests/tester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/ctagsd/tests/tester.hpp -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/docs/AI/ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/docs/docs/AI/ai.md -------------------------------------------------------------------------------- /docs/docs/LUA/lua.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/docs/docs/LUA/lua.md -------------------------------------------------------------------------------- /docs/docs/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/docs/docs/deploy.sh -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/misc/ur.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/docs/docs/misc/ur.md -------------------------------------------------------------------------------- /docs/docs/plugins/ut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/docs/docs/plugins/ut.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /gdbparser/gdb_result.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/gdbparser/gdb_result.l -------------------------------------------------------------------------------- /gdbparser/gdb_result.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/gdbparser/gdb_result.y -------------------------------------------------------------------------------- /gdbparser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/gdbparser/main.cpp -------------------------------------------------------------------------------- /git/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/CMakeLists.txt -------------------------------------------------------------------------------- /git/GitApplyPatchDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/GitApplyPatchDlg.h -------------------------------------------------------------------------------- /git/GitBlamePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/GitBlamePage.cpp -------------------------------------------------------------------------------- /git/GitBlamePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/GitBlamePage.h -------------------------------------------------------------------------------- /git/GitConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/GitConsole.cpp -------------------------------------------------------------------------------- /git/GitConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/GitConsole.h -------------------------------------------------------------------------------- /git/GitLocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/GitLocator.cpp -------------------------------------------------------------------------------- /git/GitLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/GitLocator.h -------------------------------------------------------------------------------- /git/GitResetDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/GitResetDlg.cpp -------------------------------------------------------------------------------- /git/GitResetDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/GitResetDlg.h -------------------------------------------------------------------------------- /git/GitStatusCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/GitStatusCode.cpp -------------------------------------------------------------------------------- /git/GitStatusCode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/GitStatusCode.hpp -------------------------------------------------------------------------------- /git/git.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/git.cpp -------------------------------------------------------------------------------- /git/git.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/git.h -------------------------------------------------------------------------------- /git/gitCloneDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitCloneDlg.cpp -------------------------------------------------------------------------------- /git/gitCloneDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitCloneDlg.h -------------------------------------------------------------------------------- /git/gitCommitDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitCommitDlg.cpp -------------------------------------------------------------------------------- /git/gitCommitDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitCommitDlg.h -------------------------------------------------------------------------------- /git/gitCommitEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitCommitEditor.cpp -------------------------------------------------------------------------------- /git/gitCommitEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitCommitEditor.h -------------------------------------------------------------------------------- /git/gitCommitListDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitCommitListDlg.h -------------------------------------------------------------------------------- /git/gitDiffDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitDiffDlg.cpp -------------------------------------------------------------------------------- /git/gitDiffDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitDiffDlg.h -------------------------------------------------------------------------------- /git/gitFileDiffDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitFileDiffDlg.cpp -------------------------------------------------------------------------------- /git/gitFileDiffDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitFileDiffDlg.h -------------------------------------------------------------------------------- /git/gitLogDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitLogDlg.cpp -------------------------------------------------------------------------------- /git/gitLogDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitLogDlg.h -------------------------------------------------------------------------------- /git/gitSettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitSettingsDlg.cpp -------------------------------------------------------------------------------- /git/gitSettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitSettingsDlg.h -------------------------------------------------------------------------------- /git/gitentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitentry.cpp -------------------------------------------------------------------------------- /git/gitentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitentry.h -------------------------------------------------------------------------------- /git/gitui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitui.cpp -------------------------------------------------------------------------------- /git/gitui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitui.h -------------------------------------------------------------------------------- /git/gitui.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/gitui.wxcp -------------------------------------------------------------------------------- /git/icons/icon_git.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/icons/icon_git.xpm -------------------------------------------------------------------------------- /git/icons/png/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/icons/png/git.png -------------------------------------------------------------------------------- /git/icons/png/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/git/icons/png/plus.png -------------------------------------------------------------------------------- /icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/add.png -------------------------------------------------------------------------------- /icons/asm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/asm.png -------------------------------------------------------------------------------- /icons/build-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/build-error.png -------------------------------------------------------------------------------- /icons/build-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/build-warning.png -------------------------------------------------------------------------------- /icons/clear-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/clear-all.png -------------------------------------------------------------------------------- /icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/close.png -------------------------------------------------------------------------------- /icons/cogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/cogs.png -------------------------------------------------------------------------------- /icons/delete-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/delete-line.png -------------------------------------------------------------------------------- /icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/edit.png -------------------------------------------------------------------------------- /icons/fif-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/fif-clear.png -------------------------------------------------------------------------------- /icons/fif-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/fif-menu.png -------------------------------------------------------------------------------- /icons/indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/indent.png -------------------------------------------------------------------------------- /icons/margins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/margins.png -------------------------------------------------------------------------------- /icons/misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/misc.png -------------------------------------------------------------------------------- /icons/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/resize.png -------------------------------------------------------------------------------- /icons/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/icons/wand.png -------------------------------------------------------------------------------- /le_exec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/le_exec/CMakeLists.txt -------------------------------------------------------------------------------- /le_exec/le_exec.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/le_exec/le_exec.project -------------------------------------------------------------------------------- /le_exec/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/le_exec/main.cpp -------------------------------------------------------------------------------- /scripts/cmake-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/scripts/cmake-format.sh -------------------------------------------------------------------------------- /sdk/wxsqlite3/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/sdk/wxsqlite3/configure -------------------------------------------------------------------------------- /svgs/create-logo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/create-logo.sh -------------------------------------------------------------------------------- /svgs/dark-theme/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/cog.svg -------------------------------------------------------------------------------- /svgs/dark-theme/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/cut.svg -------------------------------------------------------------------------------- /svgs/dark-theme/dll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/dll.svg -------------------------------------------------------------------------------- /svgs/dark-theme/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/git.svg -------------------------------------------------------------------------------- /svgs/dark-theme/gtk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/gtk.svg -------------------------------------------------------------------------------- /svgs/dark-theme/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/log.svg -------------------------------------------------------------------------------- /svgs/dark-theme/lua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/lua.svg -------------------------------------------------------------------------------- /svgs/dark-theme/mk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/mk.svg -------------------------------------------------------------------------------- /svgs/dark-theme/ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/ok.svg -------------------------------------------------------------------------------- /svgs/dark-theme/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/qt.svg -------------------------------------------------------------------------------- /svgs/dark-theme/run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/run.svg -------------------------------------------------------------------------------- /svgs/dark-theme/sql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/sql.svg -------------------------------------------------------------------------------- /svgs/dark-theme/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/up.svg -------------------------------------------------------------------------------- /svgs/dark-theme/yml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/yml.svg -------------------------------------------------------------------------------- /svgs/dark-theme/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/dark-theme/zip.svg -------------------------------------------------------------------------------- /svgs/light-theme/mk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/light-theme/mk.svg -------------------------------------------------------------------------------- /svgs/light-theme/ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/light-theme/ok.svg -------------------------------------------------------------------------------- /svgs/light-theme/qt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/light-theme/qt.svg -------------------------------------------------------------------------------- /svgs/light-theme/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/light-theme/up.svg -------------------------------------------------------------------------------- /svgs/logo/osx/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/svgs/logo/osx/icon.icns -------------------------------------------------------------------------------- /translations/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/translations/README -------------------------------------------------------------------------------- /weekly/make-weekly-msw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/weekly/make-weekly-msw -------------------------------------------------------------------------------- /wxcrafter/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/.clangd -------------------------------------------------------------------------------- /wxcrafter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/Info.plist -------------------------------------------------------------------------------- /wxcrafter/TODO.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/TODO.TXT -------------------------------------------------------------------------------- /wxcrafter/pack-osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/pack-osx.sh -------------------------------------------------------------------------------- /wxcrafter/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/pack.sh -------------------------------------------------------------------------------- /wxcrafter/src/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/src/gui.cpp -------------------------------------------------------------------------------- /wxcrafter/src/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/src/gui.h -------------------------------------------------------------------------------- /wxcrafter/src/gui.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/src/gui.wxcp -------------------------------------------------------------------------------- /wxcrafter/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/src/main.cpp -------------------------------------------------------------------------------- /wxcrafter/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/src/main.h -------------------------------------------------------------------------------- /wxcrafter/src/wxrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/src/wxrc.cpp -------------------------------------------------------------------------------- /wxcrafter/src/wxrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/src/wxrc.h -------------------------------------------------------------------------------- /wxcrafter/src/xy_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/src/xy_pair.h -------------------------------------------------------------------------------- /wxcrafter/wxgui.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eranif/codelite/HEAD/wxcrafter/wxgui.zip --------------------------------------------------------------------------------