├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .gitignore ├── CMakeLists.txt ├── Doxyfile.ini ├── LICENSE ├── LICENSE.rtf ├── LICENSE.txt ├── cpack-config.cmake ├── cpplint.py ├── external ├── CMakeLists.txt ├── cpptoml │ ├── include │ │ └── cpptoml.h │ └── readme.md └── tinyxml2 │ ├── tinyxml2.cpp │ └── tinyxml2.h ├── gfx ├── icons │ ├── LICENSE │ ├── create_app.png │ ├── create_library.png │ ├── edit_copy.png │ ├── edit_cut.png │ ├── edit_make_lowercase.png │ ├── edit_make_uppercase.png │ ├── edit_paste.png │ ├── edit_redo.png │ ├── edit_tab_add.png │ ├── edit_tab_remove.png │ ├── edit_undo.png │ ├── file_normal.png │ ├── file_properties.png │ ├── file_quit.png │ ├── file_settings.png │ ├── file_warning.png │ ├── folder_error.png │ ├── folder_normal.png │ ├── folder_warning.png │ ├── project_bench.png │ ├── project_build.png │ ├── project_clean.png │ ├── project_debug.png │ ├── project_doc.png │ ├── project_rebuild.png │ ├── project_run.png │ ├── project_settings.png │ ├── project_stop.png │ ├── project_test.png │ └── project_update.png ├── install │ ├── dmg-install.pdn │ ├── dmg-install.png │ ├── ds_store │ ├── nsis-header.bmp │ ├── nsis-header.pdn │ ├── nsis-wizard.bmp │ ├── nsis-wizard.pdn │ ├── readme.txt │ ├── wix-banner.bmp │ ├── wix-banner.pdn │ ├── wix-banner.png │ ├── wix-dialog.bmp │ ├── wix-dialog.pdn │ └── wix-dialog.png ├── logo │ ├── 256text.png │ ├── 256x256.png │ ├── 640square.png │ ├── 640text.png │ ├── LICENSE │ ├── icon.ico │ └── text.svg └── screenshots │ ├── 1.png │ ├── 2.png │ └── 3.png ├── inspiration ├── a.webp ├── autocomplete.png ├── b.png ├── board-manager.png ├── breakpoint.png ├── c.png ├── carbon.png ├── create-new-project.png ├── d.png ├── debugging-variable-value.png ├── debugging_v2.webp ├── fjA1C.jpg ├── ide-2-overview.png ├── ide-correction.webp ├── ide-eclipse-emacs-mode.webp ├── ide-overview.png ├── image2023-2-16_16-29-20.png ├── inline-temporary-variable-refactoring.png ├── inspiration.md ├── intellisense-list-members.png ├── overview-ide-console-app-red-boxes.png ├── refactoring-menu.png ├── rename-quick-action.png ├── squiggles-error.png ├── start-window-create-new-project.png └── wing7-screenshot-dark-small.jpg ├── readme.md ├── samples ├── autoindent-test.rs ├── cmake.cmake ├── cpp.cpp ├── lua.lua ├── markdown.md ├── rust.rs ├── toml.toml ├── xml.xml └── yaml.yaml ├── scripts ├── bintray-linux-clang.json ├── bintray-linux-gcc.json ├── bintray-osx-clang.json ├── install-ubuntu1510-deps.sh ├── travis-cmake.sh ├── travis-dependencies-with-sudo.sh ├── travis-dependencies.sh └── windows.py ├── src ├── CMakeLists.txt └── ride │ ├── auix.cc │ ├── auix.h │ ├── autocomplete.cc │ ├── autocomplete.h │ ├── buildconfigurationsdlg.cc │ ├── buildconfigurationsdlg.h │ ├── builtinthemes.cc │ ├── builtinthemes.h │ ├── bundle-info.plist │ ├── cargo.cc │ ├── cargo.h │ ├── cmdrunner.cc │ ├── cmdrunner.h │ ├── compilermessage.cc │ ├── compilermessage.h │ ├── createnewfiledlg.cc │ ├── createnewfiledlg.h │ ├── createnewprojectdlg.cc │ ├── createnewprojectdlg.h │ ├── deletefolderdlg.cc │ ├── deletefolderdlg.h │ ├── dpiaware.manifest.xml │ ├── enabledisable.cc │ ├── enabledisable.h │ ├── enviroment.cc │ ├── enviroment.h │ ├── fileedit.cc │ ├── fileedit.h │ ├── filepropertiesdlg.cc │ ├── filepropertiesdlg.h │ ├── finddlg.cc │ ├── finddlg.h │ ├── form.cc │ ├── form.h │ ├── games │ ├── bombs │ │ ├── bombs.cpp │ │ ├── bombs.h │ │ ├── bombs_glue.cc │ │ ├── bombs_glue.h │ │ ├── bombscanvas.cpp │ │ ├── game.cpp │ │ └── game.h │ └── forty │ │ ├── canvas.cpp │ │ ├── canvas.h │ │ ├── card.cpp │ │ ├── card.h │ │ ├── forty.cpp │ │ ├── forty.h │ │ ├── forty_glue.cc │ │ ├── forty_glue.h │ │ ├── game.cpp │ │ ├── game.h │ │ ├── pictures.xpm │ │ ├── pile.cpp │ │ ├── pile.h │ │ ├── readme.txt │ │ ├── scorefil.cpp │ │ ├── scorefil.h │ │ └── symbols.xpm │ ├── generated │ ├── dialogs.fbp │ ├── ui.cpp │ ├── ui.h │ └── ui.xrc │ ├── guilist.h │ ├── language.cc │ ├── language.h │ ├── loadresult.cc │ ├── loadresult.h │ ├── macdylibbundler.cmake │ ├── main.cc │ ├── mainwindow.cc │ ├── mainwindow.h │ ├── menuevent.h │ ├── outputcontrol.cc │ ├── outputcontrol.h │ ├── outputdirector.cc │ ├── outputdirector.h │ ├── path.cc │ ├── path.h │ ├── pathtester.cc │ ├── pathtester.h │ ├── pch.private.h │ ├── pch.public.h │ ├── project.cc │ ├── project.h │ ├── projectexplorer.cc │ ├── projectexplorer.h │ ├── projectsettingsdlg.cc │ ├── projectsettingsdlg.h │ ├── proto.cc │ ├── proto.h │ ├── quickopendlg.cc │ ├── quickopendlg.h │ ├── resources │ ├── README.md │ ├── application.icns │ ├── application.ico │ ├── commonimages.h │ ├── icons.h │ ├── icons │ │ ├── create_app.xpm │ │ ├── create_library.xpm │ │ ├── edit_copy.xpm │ │ ├── edit_cut.xpm │ │ ├── edit_file_properties.xpm │ │ ├── edit_make_lowercase.xpm │ │ ├── edit_make_uppercase.xpm │ │ ├── edit_paste.xpm │ │ ├── edit_redo.xpm │ │ ├── edit_tab_add.xpm │ │ ├── edit_tab_remove.xpm │ │ ├── edit_undo.xpm │ │ ├── file_normal.xpm │ │ ├── file_quit.xpm │ │ ├── file_settings.xpm │ │ ├── file_warning.xpm │ │ ├── folder_error.xpm │ │ ├── folder_normal.xpm │ │ ├── folder_warning.xpm │ │ ├── icon_ac_crate.xpm │ │ ├── icon_ac_fnarg.xpm │ │ ├── icon_ac_function.xpm │ │ ├── icon_ac_keyword.xpm │ │ ├── icon_ac_let.xpm │ │ ├── icon_ac_module.xpm │ │ ├── icon_ac_snippet.xpm │ │ ├── icon_ac_struct.xpm │ │ ├── icon_ac_structfield.xpm │ │ ├── project_bench.xpm │ │ ├── project_build.xpm │ │ ├── project_clean.xpm │ │ ├── project_debug.xpm │ │ ├── project_doc.xpm │ │ ├── project_rebuild.xpm │ │ ├── project_run.xpm │ │ ├── project_settings.xpm │ │ ├── project_stop.xpm │ │ ├── project_test.xpm │ │ └── project_update.xpm │ └── resources.rc │ ├── ride_compiler_settings.in.h │ ├── runconfigurationsdlg.cc │ ├── runconfigurationsdlg.h │ ├── runner.cc │ ├── runner.h │ ├── settings.cc │ ├── settings.h │ ├── settings.proto.cc │ ├── settings.proto.h │ ├── startpage.cc │ ├── startpage.h │ ├── stcutils.cc │ ├── stcutils.h │ ├── stringutils.cc │ ├── stringutils.h │ ├── switcher │ ├── ctrl.cc │ ├── ctrl.h │ ├── dialog.cc │ ├── dialog.h │ ├── group.cc │ ├── group.h │ ├── item.cc │ ├── item.h │ ├── itemlist.cc │ ├── itemlist.h │ ├── readme.md │ ├── style.cc │ └── style.h │ ├── tab.cc │ ├── tab.h │ ├── togui.cc │ ├── togui.h │ ├── variableeditor.cc │ ├── variableeditor.h │ ├── version.h │ ├── wx.h │ ├── wxid.h │ ├── wxutils.cc │ └── wxutils.h └── todo.md /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/Doxyfile.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/LICENSE.rtf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /cpack-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/cpack-config.cmake -------------------------------------------------------------------------------- /cpplint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/cpplint.py -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/cpptoml/include/cpptoml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/external/cpptoml/include/cpptoml.h -------------------------------------------------------------------------------- /external/cpptoml/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/external/cpptoml/readme.md -------------------------------------------------------------------------------- /external/tinyxml2/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/external/tinyxml2/tinyxml2.cpp -------------------------------------------------------------------------------- /external/tinyxml2/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/external/tinyxml2/tinyxml2.h -------------------------------------------------------------------------------- /gfx/icons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/LICENSE -------------------------------------------------------------------------------- /gfx/icons/create_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/create_app.png -------------------------------------------------------------------------------- /gfx/icons/create_library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/create_library.png -------------------------------------------------------------------------------- /gfx/icons/edit_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/edit_copy.png -------------------------------------------------------------------------------- /gfx/icons/edit_cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/edit_cut.png -------------------------------------------------------------------------------- /gfx/icons/edit_make_lowercase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/edit_make_lowercase.png -------------------------------------------------------------------------------- /gfx/icons/edit_make_uppercase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/edit_make_uppercase.png -------------------------------------------------------------------------------- /gfx/icons/edit_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/edit_paste.png -------------------------------------------------------------------------------- /gfx/icons/edit_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/edit_redo.png -------------------------------------------------------------------------------- /gfx/icons/edit_tab_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/edit_tab_add.png -------------------------------------------------------------------------------- /gfx/icons/edit_tab_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/edit_tab_remove.png -------------------------------------------------------------------------------- /gfx/icons/edit_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/edit_undo.png -------------------------------------------------------------------------------- /gfx/icons/file_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/file_normal.png -------------------------------------------------------------------------------- /gfx/icons/file_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/file_properties.png -------------------------------------------------------------------------------- /gfx/icons/file_quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/file_quit.png -------------------------------------------------------------------------------- /gfx/icons/file_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/file_settings.png -------------------------------------------------------------------------------- /gfx/icons/file_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/file_warning.png -------------------------------------------------------------------------------- /gfx/icons/folder_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/folder_error.png -------------------------------------------------------------------------------- /gfx/icons/folder_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/folder_normal.png -------------------------------------------------------------------------------- /gfx/icons/folder_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/folder_warning.png -------------------------------------------------------------------------------- /gfx/icons/project_bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/project_bench.png -------------------------------------------------------------------------------- /gfx/icons/project_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/project_build.png -------------------------------------------------------------------------------- /gfx/icons/project_clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/project_clean.png -------------------------------------------------------------------------------- /gfx/icons/project_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/project_debug.png -------------------------------------------------------------------------------- /gfx/icons/project_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/project_doc.png -------------------------------------------------------------------------------- /gfx/icons/project_rebuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/project_rebuild.png -------------------------------------------------------------------------------- /gfx/icons/project_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/project_run.png -------------------------------------------------------------------------------- /gfx/icons/project_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/project_settings.png -------------------------------------------------------------------------------- /gfx/icons/project_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/project_stop.png -------------------------------------------------------------------------------- /gfx/icons/project_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/project_test.png -------------------------------------------------------------------------------- /gfx/icons/project_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/icons/project_update.png -------------------------------------------------------------------------------- /gfx/install/dmg-install.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/dmg-install.pdn -------------------------------------------------------------------------------- /gfx/install/dmg-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/dmg-install.png -------------------------------------------------------------------------------- /gfx/install/ds_store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/ds_store -------------------------------------------------------------------------------- /gfx/install/nsis-header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/nsis-header.bmp -------------------------------------------------------------------------------- /gfx/install/nsis-header.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/nsis-header.pdn -------------------------------------------------------------------------------- /gfx/install/nsis-wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/nsis-wizard.bmp -------------------------------------------------------------------------------- /gfx/install/nsis-wizard.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/nsis-wizard.pdn -------------------------------------------------------------------------------- /gfx/install/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/readme.txt -------------------------------------------------------------------------------- /gfx/install/wix-banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/wix-banner.bmp -------------------------------------------------------------------------------- /gfx/install/wix-banner.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/wix-banner.pdn -------------------------------------------------------------------------------- /gfx/install/wix-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/wix-banner.png -------------------------------------------------------------------------------- /gfx/install/wix-dialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/wix-dialog.bmp -------------------------------------------------------------------------------- /gfx/install/wix-dialog.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/wix-dialog.pdn -------------------------------------------------------------------------------- /gfx/install/wix-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/install/wix-dialog.png -------------------------------------------------------------------------------- /gfx/logo/256text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/logo/256text.png -------------------------------------------------------------------------------- /gfx/logo/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/logo/256x256.png -------------------------------------------------------------------------------- /gfx/logo/640square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/logo/640square.png -------------------------------------------------------------------------------- /gfx/logo/640text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/logo/640text.png -------------------------------------------------------------------------------- /gfx/logo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/logo/LICENSE -------------------------------------------------------------------------------- /gfx/logo/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/logo/icon.ico -------------------------------------------------------------------------------- /gfx/logo/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/logo/text.svg -------------------------------------------------------------------------------- /gfx/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/screenshots/1.png -------------------------------------------------------------------------------- /gfx/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/screenshots/2.png -------------------------------------------------------------------------------- /gfx/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/gfx/screenshots/3.png -------------------------------------------------------------------------------- /inspiration/a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/a.webp -------------------------------------------------------------------------------- /inspiration/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/autocomplete.png -------------------------------------------------------------------------------- /inspiration/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/b.png -------------------------------------------------------------------------------- /inspiration/board-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/board-manager.png -------------------------------------------------------------------------------- /inspiration/breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/breakpoint.png -------------------------------------------------------------------------------- /inspiration/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/c.png -------------------------------------------------------------------------------- /inspiration/carbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/carbon.png -------------------------------------------------------------------------------- /inspiration/create-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/create-new-project.png -------------------------------------------------------------------------------- /inspiration/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/d.png -------------------------------------------------------------------------------- /inspiration/debugging-variable-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/debugging-variable-value.png -------------------------------------------------------------------------------- /inspiration/debugging_v2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/debugging_v2.webp -------------------------------------------------------------------------------- /inspiration/fjA1C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/fjA1C.jpg -------------------------------------------------------------------------------- /inspiration/ide-2-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/ide-2-overview.png -------------------------------------------------------------------------------- /inspiration/ide-correction.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/ide-correction.webp -------------------------------------------------------------------------------- /inspiration/ide-eclipse-emacs-mode.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/ide-eclipse-emacs-mode.webp -------------------------------------------------------------------------------- /inspiration/ide-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/ide-overview.png -------------------------------------------------------------------------------- /inspiration/image2023-2-16_16-29-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/image2023-2-16_16-29-20.png -------------------------------------------------------------------------------- /inspiration/inline-temporary-variable-refactoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/inline-temporary-variable-refactoring.png -------------------------------------------------------------------------------- /inspiration/inspiration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/inspiration.md -------------------------------------------------------------------------------- /inspiration/intellisense-list-members.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/intellisense-list-members.png -------------------------------------------------------------------------------- /inspiration/overview-ide-console-app-red-boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/overview-ide-console-app-red-boxes.png -------------------------------------------------------------------------------- /inspiration/refactoring-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/refactoring-menu.png -------------------------------------------------------------------------------- /inspiration/rename-quick-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/rename-quick-action.png -------------------------------------------------------------------------------- /inspiration/squiggles-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/squiggles-error.png -------------------------------------------------------------------------------- /inspiration/start-window-create-new-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/start-window-create-new-project.png -------------------------------------------------------------------------------- /inspiration/wing7-screenshot-dark-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/inspiration/wing7-screenshot-dark-small.jpg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/readme.md -------------------------------------------------------------------------------- /samples/autoindent-test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/samples/autoindent-test.rs -------------------------------------------------------------------------------- /samples/cmake.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/samples/cmake.cmake -------------------------------------------------------------------------------- /samples/cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/samples/cpp.cpp -------------------------------------------------------------------------------- /samples/lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/samples/lua.lua -------------------------------------------------------------------------------- /samples/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/samples/markdown.md -------------------------------------------------------------------------------- /samples/rust.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/samples/rust.rs -------------------------------------------------------------------------------- /samples/toml.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/samples/toml.toml -------------------------------------------------------------------------------- /samples/xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/samples/xml.xml -------------------------------------------------------------------------------- /samples/yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/samples/yaml.yaml -------------------------------------------------------------------------------- /scripts/bintray-linux-clang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/scripts/bintray-linux-clang.json -------------------------------------------------------------------------------- /scripts/bintray-linux-gcc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/scripts/bintray-linux-gcc.json -------------------------------------------------------------------------------- /scripts/bintray-osx-clang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/scripts/bintray-osx-clang.json -------------------------------------------------------------------------------- /scripts/install-ubuntu1510-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/scripts/install-ubuntu1510-deps.sh -------------------------------------------------------------------------------- /scripts/travis-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/scripts/travis-cmake.sh -------------------------------------------------------------------------------- /scripts/travis-dependencies-with-sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/scripts/travis-dependencies-with-sudo.sh -------------------------------------------------------------------------------- /scripts/travis-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/scripts/travis-dependencies.sh -------------------------------------------------------------------------------- /scripts/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/scripts/windows.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/ride/auix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/auix.cc -------------------------------------------------------------------------------- /src/ride/auix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/auix.h -------------------------------------------------------------------------------- /src/ride/autocomplete.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/autocomplete.cc -------------------------------------------------------------------------------- /src/ride/autocomplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/autocomplete.h -------------------------------------------------------------------------------- /src/ride/buildconfigurationsdlg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/buildconfigurationsdlg.cc -------------------------------------------------------------------------------- /src/ride/buildconfigurationsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/buildconfigurationsdlg.h -------------------------------------------------------------------------------- /src/ride/builtinthemes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/builtinthemes.cc -------------------------------------------------------------------------------- /src/ride/builtinthemes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/builtinthemes.h -------------------------------------------------------------------------------- /src/ride/bundle-info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/bundle-info.plist -------------------------------------------------------------------------------- /src/ride/cargo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/cargo.cc -------------------------------------------------------------------------------- /src/ride/cargo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/cargo.h -------------------------------------------------------------------------------- /src/ride/cmdrunner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/cmdrunner.cc -------------------------------------------------------------------------------- /src/ride/cmdrunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/cmdrunner.h -------------------------------------------------------------------------------- /src/ride/compilermessage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/compilermessage.cc -------------------------------------------------------------------------------- /src/ride/compilermessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/compilermessage.h -------------------------------------------------------------------------------- /src/ride/createnewfiledlg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/createnewfiledlg.cc -------------------------------------------------------------------------------- /src/ride/createnewfiledlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/createnewfiledlg.h -------------------------------------------------------------------------------- /src/ride/createnewprojectdlg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/createnewprojectdlg.cc -------------------------------------------------------------------------------- /src/ride/createnewprojectdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/createnewprojectdlg.h -------------------------------------------------------------------------------- /src/ride/deletefolderdlg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/deletefolderdlg.cc -------------------------------------------------------------------------------- /src/ride/deletefolderdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/deletefolderdlg.h -------------------------------------------------------------------------------- /src/ride/dpiaware.manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/dpiaware.manifest.xml -------------------------------------------------------------------------------- /src/ride/enabledisable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/enabledisable.cc -------------------------------------------------------------------------------- /src/ride/enabledisable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/enabledisable.h -------------------------------------------------------------------------------- /src/ride/enviroment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/enviroment.cc -------------------------------------------------------------------------------- /src/ride/enviroment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/enviroment.h -------------------------------------------------------------------------------- /src/ride/fileedit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/fileedit.cc -------------------------------------------------------------------------------- /src/ride/fileedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/fileedit.h -------------------------------------------------------------------------------- /src/ride/filepropertiesdlg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/filepropertiesdlg.cc -------------------------------------------------------------------------------- /src/ride/filepropertiesdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/filepropertiesdlg.h -------------------------------------------------------------------------------- /src/ride/finddlg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/finddlg.cc -------------------------------------------------------------------------------- /src/ride/finddlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/finddlg.h -------------------------------------------------------------------------------- /src/ride/form.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/form.cc -------------------------------------------------------------------------------- /src/ride/form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/form.h -------------------------------------------------------------------------------- /src/ride/games/bombs/bombs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/bombs/bombs.cpp -------------------------------------------------------------------------------- /src/ride/games/bombs/bombs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/bombs/bombs.h -------------------------------------------------------------------------------- /src/ride/games/bombs/bombs_glue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/bombs/bombs_glue.cc -------------------------------------------------------------------------------- /src/ride/games/bombs/bombs_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/bombs/bombs_glue.h -------------------------------------------------------------------------------- /src/ride/games/bombs/bombscanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/bombs/bombscanvas.cpp -------------------------------------------------------------------------------- /src/ride/games/bombs/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/bombs/game.cpp -------------------------------------------------------------------------------- /src/ride/games/bombs/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/bombs/game.h -------------------------------------------------------------------------------- /src/ride/games/forty/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/canvas.cpp -------------------------------------------------------------------------------- /src/ride/games/forty/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/canvas.h -------------------------------------------------------------------------------- /src/ride/games/forty/card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/card.cpp -------------------------------------------------------------------------------- /src/ride/games/forty/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/card.h -------------------------------------------------------------------------------- /src/ride/games/forty/forty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/forty.cpp -------------------------------------------------------------------------------- /src/ride/games/forty/forty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/forty.h -------------------------------------------------------------------------------- /src/ride/games/forty/forty_glue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/forty_glue.cc -------------------------------------------------------------------------------- /src/ride/games/forty/forty_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/forty_glue.h -------------------------------------------------------------------------------- /src/ride/games/forty/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/game.cpp -------------------------------------------------------------------------------- /src/ride/games/forty/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/game.h -------------------------------------------------------------------------------- /src/ride/games/forty/pictures.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/pictures.xpm -------------------------------------------------------------------------------- /src/ride/games/forty/pile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/pile.cpp -------------------------------------------------------------------------------- /src/ride/games/forty/pile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/pile.h -------------------------------------------------------------------------------- /src/ride/games/forty/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/readme.txt -------------------------------------------------------------------------------- /src/ride/games/forty/scorefil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/scorefil.cpp -------------------------------------------------------------------------------- /src/ride/games/forty/scorefil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/scorefil.h -------------------------------------------------------------------------------- /src/ride/games/forty/symbols.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/games/forty/symbols.xpm -------------------------------------------------------------------------------- /src/ride/generated/dialogs.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/generated/dialogs.fbp -------------------------------------------------------------------------------- /src/ride/generated/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/generated/ui.cpp -------------------------------------------------------------------------------- /src/ride/generated/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/generated/ui.h -------------------------------------------------------------------------------- /src/ride/generated/ui.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/generated/ui.xrc -------------------------------------------------------------------------------- /src/ride/guilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/guilist.h -------------------------------------------------------------------------------- /src/ride/language.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/language.cc -------------------------------------------------------------------------------- /src/ride/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/language.h -------------------------------------------------------------------------------- /src/ride/loadresult.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/loadresult.cc -------------------------------------------------------------------------------- /src/ride/loadresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/loadresult.h -------------------------------------------------------------------------------- /src/ride/macdylibbundler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/macdylibbundler.cmake -------------------------------------------------------------------------------- /src/ride/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/main.cc -------------------------------------------------------------------------------- /src/ride/mainwindow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/mainwindow.cc -------------------------------------------------------------------------------- /src/ride/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/mainwindow.h -------------------------------------------------------------------------------- /src/ride/menuevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/menuevent.h -------------------------------------------------------------------------------- /src/ride/outputcontrol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/outputcontrol.cc -------------------------------------------------------------------------------- /src/ride/outputcontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/outputcontrol.h -------------------------------------------------------------------------------- /src/ride/outputdirector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/outputdirector.cc -------------------------------------------------------------------------------- /src/ride/outputdirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/outputdirector.h -------------------------------------------------------------------------------- /src/ride/path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/path.cc -------------------------------------------------------------------------------- /src/ride/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/path.h -------------------------------------------------------------------------------- /src/ride/pathtester.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/pathtester.cc -------------------------------------------------------------------------------- /src/ride/pathtester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/pathtester.h -------------------------------------------------------------------------------- /src/ride/pch.private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/pch.private.h -------------------------------------------------------------------------------- /src/ride/pch.public.h: -------------------------------------------------------------------------------- 1 | // public pch 2 | -------------------------------------------------------------------------------- /src/ride/project.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/project.cc -------------------------------------------------------------------------------- /src/ride/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/project.h -------------------------------------------------------------------------------- /src/ride/projectexplorer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/projectexplorer.cc -------------------------------------------------------------------------------- /src/ride/projectexplorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/projectexplorer.h -------------------------------------------------------------------------------- /src/ride/projectsettingsdlg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/projectsettingsdlg.cc -------------------------------------------------------------------------------- /src/ride/projectsettingsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/projectsettingsdlg.h -------------------------------------------------------------------------------- /src/ride/proto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/proto.cc -------------------------------------------------------------------------------- /src/ride/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/proto.h -------------------------------------------------------------------------------- /src/ride/quickopendlg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/quickopendlg.cc -------------------------------------------------------------------------------- /src/ride/quickopendlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/quickopendlg.h -------------------------------------------------------------------------------- /src/ride/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/README.md -------------------------------------------------------------------------------- /src/ride/resources/application.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/application.icns -------------------------------------------------------------------------------- /src/ride/resources/application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/application.ico -------------------------------------------------------------------------------- /src/ride/resources/commonimages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/commonimages.h -------------------------------------------------------------------------------- /src/ride/resources/icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons.h -------------------------------------------------------------------------------- /src/ride/resources/icons/create_app.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/create_app.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/create_library.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/create_library.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/edit_copy.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/edit_copy.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/edit_cut.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/edit_cut.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/edit_file_properties.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/edit_file_properties.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/edit_make_lowercase.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/edit_make_lowercase.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/edit_make_uppercase.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/edit_make_uppercase.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/edit_paste.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/edit_paste.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/edit_redo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/edit_redo.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/edit_tab_add.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/edit_tab_add.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/edit_tab_remove.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/edit_tab_remove.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/edit_undo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/edit_undo.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/file_normal.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/file_normal.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/file_quit.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/file_quit.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/file_settings.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/file_settings.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/file_warning.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/file_warning.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/folder_error.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/folder_error.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/folder_normal.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/folder_normal.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/folder_warning.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/folder_warning.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/icon_ac_crate.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/icon_ac_crate.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/icon_ac_fnarg.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/icon_ac_fnarg.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/icon_ac_function.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/icon_ac_function.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/icon_ac_keyword.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/icon_ac_keyword.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/icon_ac_let.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/icon_ac_let.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/icon_ac_module.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/icon_ac_module.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/icon_ac_snippet.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/icon_ac_snippet.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/icon_ac_struct.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/icon_ac_struct.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/icon_ac_structfield.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/icon_ac_structfield.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/project_bench.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/project_bench.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/project_build.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/project_build.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/project_clean.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/project_clean.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/project_debug.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/project_debug.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/project_doc.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/project_doc.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/project_rebuild.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/project_rebuild.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/project_run.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/project_run.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/project_settings.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/project_settings.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/project_stop.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/project_stop.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/project_test.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/project_test.xpm -------------------------------------------------------------------------------- /src/ride/resources/icons/project_update.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/icons/project_update.xpm -------------------------------------------------------------------------------- /src/ride/resources/resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/resources/resources.rc -------------------------------------------------------------------------------- /src/ride/ride_compiler_settings.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/ride_compiler_settings.in.h -------------------------------------------------------------------------------- /src/ride/runconfigurationsdlg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/runconfigurationsdlg.cc -------------------------------------------------------------------------------- /src/ride/runconfigurationsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/runconfigurationsdlg.h -------------------------------------------------------------------------------- /src/ride/runner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/runner.cc -------------------------------------------------------------------------------- /src/ride/runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/runner.h -------------------------------------------------------------------------------- /src/ride/settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/settings.cc -------------------------------------------------------------------------------- /src/ride/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/settings.h -------------------------------------------------------------------------------- /src/ride/settings.proto.cc: -------------------------------------------------------------------------------- 1 | #include "ride/settings.proto.h" 2 | 3 | namespace ride 4 | { 5 | 6 | } 7 | 8 | -------------------------------------------------------------------------------- /src/ride/settings.proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/settings.proto.h -------------------------------------------------------------------------------- /src/ride/startpage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/startpage.cc -------------------------------------------------------------------------------- /src/ride/startpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/startpage.h -------------------------------------------------------------------------------- /src/ride/stcutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/stcutils.cc -------------------------------------------------------------------------------- /src/ride/stcutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/stcutils.h -------------------------------------------------------------------------------- /src/ride/stringutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/stringutils.cc -------------------------------------------------------------------------------- /src/ride/stringutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/stringutils.h -------------------------------------------------------------------------------- /src/ride/switcher/ctrl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/ctrl.cc -------------------------------------------------------------------------------- /src/ride/switcher/ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/ctrl.h -------------------------------------------------------------------------------- /src/ride/switcher/dialog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/dialog.cc -------------------------------------------------------------------------------- /src/ride/switcher/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/dialog.h -------------------------------------------------------------------------------- /src/ride/switcher/group.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/group.cc -------------------------------------------------------------------------------- /src/ride/switcher/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/group.h -------------------------------------------------------------------------------- /src/ride/switcher/item.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/item.cc -------------------------------------------------------------------------------- /src/ride/switcher/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/item.h -------------------------------------------------------------------------------- /src/ride/switcher/itemlist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/itemlist.cc -------------------------------------------------------------------------------- /src/ride/switcher/itemlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/itemlist.h -------------------------------------------------------------------------------- /src/ride/switcher/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/readme.md -------------------------------------------------------------------------------- /src/ride/switcher/style.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/style.cc -------------------------------------------------------------------------------- /src/ride/switcher/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/switcher/style.h -------------------------------------------------------------------------------- /src/ride/tab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/tab.cc -------------------------------------------------------------------------------- /src/ride/tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/tab.h -------------------------------------------------------------------------------- /src/ride/togui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/togui.cc -------------------------------------------------------------------------------- /src/ride/togui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/togui.h -------------------------------------------------------------------------------- /src/ride/variableeditor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/variableeditor.cc -------------------------------------------------------------------------------- /src/ride/variableeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/variableeditor.h -------------------------------------------------------------------------------- /src/ride/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/version.h -------------------------------------------------------------------------------- /src/ride/wx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/wx.h -------------------------------------------------------------------------------- /src/ride/wxid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/wxid.h -------------------------------------------------------------------------------- /src/ride/wxutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/wxutils.cc -------------------------------------------------------------------------------- /src/ride/wxutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/src/ride/wxutils.h -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeso/ride/HEAD/todo.md --------------------------------------------------------------------------------