├── .gitignore ├── README.md ├── codecraft ├── .gitignore ├── .metadata ├── README.md ├── lib │ ├── controller │ │ ├── color_controller.dart │ │ ├── edit_controller.dart │ │ ├── explorer_controller.dart │ │ ├── global_controller.dart │ │ └── save_controller.dart │ ├── functions.dart │ ├── globals.dart │ ├── main.dart │ ├── model │ │ ├── data │ │ │ └── file.dart │ │ ├── extensions.dart │ │ ├── syntax.dart │ │ └── syntax │ │ │ ├── dart.dart │ │ │ └── gitignore.dart │ └── view │ │ ├── dfbasdhf.dart │ │ ├── file_explorer.dart │ │ ├── new_file.dart │ │ ├── save_file.dart │ │ └── status_bar.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── pubspec.lock ├── pubspec.yaml └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── run_loop.cpp │ ├── run_loop.h │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h └── resources └── images ├── raster ├── codecraft_file_browser.png ├── codecraft_syntax_highlighting.png ├── codecraft_welcome.png ├── icon.png └── logo.png └── vector ├── icon.svg └── logo.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/README.md -------------------------------------------------------------------------------- /codecraft/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/.gitignore -------------------------------------------------------------------------------- /codecraft/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/.metadata -------------------------------------------------------------------------------- /codecraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/README.md -------------------------------------------------------------------------------- /codecraft/lib/controller/color_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/controller/color_controller.dart -------------------------------------------------------------------------------- /codecraft/lib/controller/edit_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/controller/edit_controller.dart -------------------------------------------------------------------------------- /codecraft/lib/controller/explorer_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/controller/explorer_controller.dart -------------------------------------------------------------------------------- /codecraft/lib/controller/global_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/controller/global_controller.dart -------------------------------------------------------------------------------- /codecraft/lib/controller/save_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/controller/save_controller.dart -------------------------------------------------------------------------------- /codecraft/lib/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/functions.dart -------------------------------------------------------------------------------- /codecraft/lib/globals.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/globals.dart -------------------------------------------------------------------------------- /codecraft/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/main.dart -------------------------------------------------------------------------------- /codecraft/lib/model/data/file.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecraft/lib/model/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/model/extensions.dart -------------------------------------------------------------------------------- /codecraft/lib/model/syntax.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/model/syntax.dart -------------------------------------------------------------------------------- /codecraft/lib/model/syntax/dart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/model/syntax/dart.dart -------------------------------------------------------------------------------- /codecraft/lib/model/syntax/gitignore.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/model/syntax/gitignore.dart -------------------------------------------------------------------------------- /codecraft/lib/view/dfbasdhf.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecraft/lib/view/file_explorer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/view/file_explorer.dart -------------------------------------------------------------------------------- /codecraft/lib/view/new_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/view/new_file.dart -------------------------------------------------------------------------------- /codecraft/lib/view/save_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/view/save_file.dart -------------------------------------------------------------------------------- /codecraft/lib/view/status_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/lib/view/status_bar.dart -------------------------------------------------------------------------------- /codecraft/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /codecraft/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/linux/CMakeLists.txt -------------------------------------------------------------------------------- /codecraft/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /codecraft/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /codecraft/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /codecraft/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /codecraft/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/linux/main.cc -------------------------------------------------------------------------------- /codecraft/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/linux/my_application.cc -------------------------------------------------------------------------------- /codecraft/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/linux/my_application.h -------------------------------------------------------------------------------- /codecraft/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/pubspec.lock -------------------------------------------------------------------------------- /codecraft/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/pubspec.yaml -------------------------------------------------------------------------------- /codecraft/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/.gitignore -------------------------------------------------------------------------------- /codecraft/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/CMakeLists.txt -------------------------------------------------------------------------------- /codecraft/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /codecraft/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /codecraft/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /codecraft/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /codecraft/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /codecraft/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/Runner.rc -------------------------------------------------------------------------------- /codecraft/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /codecraft/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /codecraft/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/main.cpp -------------------------------------------------------------------------------- /codecraft/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/resource.h -------------------------------------------------------------------------------- /codecraft/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /codecraft/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /codecraft/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/run_loop.h -------------------------------------------------------------------------------- /codecraft/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /codecraft/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/utils.cpp -------------------------------------------------------------------------------- /codecraft/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/utils.h -------------------------------------------------------------------------------- /codecraft/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /codecraft/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/codecraft/windows/runner/win32_window.h -------------------------------------------------------------------------------- /resources/images/raster/codecraft_file_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/resources/images/raster/codecraft_file_browser.png -------------------------------------------------------------------------------- /resources/images/raster/codecraft_syntax_highlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/resources/images/raster/codecraft_syntax_highlighting.png -------------------------------------------------------------------------------- /resources/images/raster/codecraft_welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/resources/images/raster/codecraft_welcome.png -------------------------------------------------------------------------------- /resources/images/raster/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/resources/images/raster/icon.png -------------------------------------------------------------------------------- /resources/images/raster/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/resources/images/raster/logo.png -------------------------------------------------------------------------------- /resources/images/vector/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/resources/images/vector/icon.svg -------------------------------------------------------------------------------- /resources/images/vector/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldrinmathew/codecraft/HEAD/resources/images/vector/logo.svg --------------------------------------------------------------------------------