├── .github └── FUNDING.yml ├── .gitignore ├── COPYRIGHT ├── Halcyon-IDE.png ├── LICENSE ├── README.md ├── doc └── documentation.md ├── halcyon.settings ├── halcyon_ide.md ├── manifest.mf ├── nbproject ├── build-impl.xml ├── genfiles.properties ├── private │ ├── config.properties │ ├── private.properties │ └── private.xml ├── project.properties └── project.xml └── src ├── halcyon ├── icons │ ├── copy.gif │ ├── cut.png │ ├── edit.gif │ ├── faq.gif │ ├── halcyon-logo.png │ ├── halcyon.png │ ├── help.gif │ ├── hints.gif │ ├── icon-cogs.png │ ├── icon-copy.png │ ├── icon-cut.png │ ├── icon-help.png │ ├── icon-new.png │ ├── icon-open.png │ ├── icon-paste.png │ ├── icon-play.png │ ├── icon-print.png │ ├── icon-save.png │ ├── icon-search.png │ ├── icon-settings.png │ ├── icon-stop.png │ ├── icon-undo.png │ ├── link.gif │ ├── logo-name.png │ ├── logo.png │ ├── new.gif │ ├── open.gif │ ├── options.gif │ ├── paste.gif │ ├── print.gif │ ├── refresh.gif │ ├── save.gif │ ├── scan.gif │ ├── search.gif │ ├── settings.gif │ ├── stop.gif │ ├── undo.gif │ └── x.gif └── ide │ ├── CommandExecutionHandler.java │ ├── ConfigurationManager.java │ ├── FileSystemModel.java │ ├── HalcyonBean.java │ ├── HalcyonIDE.java │ ├── MainPanel.form │ ├── MainPanel.java │ ├── ScriptBuilder.java │ └── ThreadHandler.java └── lib ├── autocomplete.jar └── rsyntaxtextarea.jar /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Halcyon-IDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/Halcyon-IDE.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/README.md -------------------------------------------------------------------------------- /doc/documentation.md: -------------------------------------------------------------------------------- 1 | Contributions are welcome 2 | -------------------------------------------------------------------------------- /halcyon.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/halcyon.settings -------------------------------------------------------------------------------- /halcyon_ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/halcyon_ide.md -------------------------------------------------------------------------------- /manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/manifest.mf -------------------------------------------------------------------------------- /nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/nbproject/build-impl.xml -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/nbproject/genfiles.properties -------------------------------------------------------------------------------- /nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/nbproject/private/private.properties -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/nbproject/private/private.xml -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /src/halcyon/icons/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/copy.gif -------------------------------------------------------------------------------- /src/halcyon/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/cut.png -------------------------------------------------------------------------------- /src/halcyon/icons/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/edit.gif -------------------------------------------------------------------------------- /src/halcyon/icons/faq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/faq.gif -------------------------------------------------------------------------------- /src/halcyon/icons/halcyon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/halcyon-logo.png -------------------------------------------------------------------------------- /src/halcyon/icons/halcyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/halcyon.png -------------------------------------------------------------------------------- /src/halcyon/icons/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/help.gif -------------------------------------------------------------------------------- /src/halcyon/icons/hints.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/hints.gif -------------------------------------------------------------------------------- /src/halcyon/icons/icon-cogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-cogs.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-copy.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-cut.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-help.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-new.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-open.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-paste.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-play.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-print.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-save.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-search.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-settings.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-stop.png -------------------------------------------------------------------------------- /src/halcyon/icons/icon-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/icon-undo.png -------------------------------------------------------------------------------- /src/halcyon/icons/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/link.gif -------------------------------------------------------------------------------- /src/halcyon/icons/logo-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/logo-name.png -------------------------------------------------------------------------------- /src/halcyon/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/logo.png -------------------------------------------------------------------------------- /src/halcyon/icons/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/new.gif -------------------------------------------------------------------------------- /src/halcyon/icons/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/open.gif -------------------------------------------------------------------------------- /src/halcyon/icons/options.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/options.gif -------------------------------------------------------------------------------- /src/halcyon/icons/paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/paste.gif -------------------------------------------------------------------------------- /src/halcyon/icons/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/print.gif -------------------------------------------------------------------------------- /src/halcyon/icons/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/refresh.gif -------------------------------------------------------------------------------- /src/halcyon/icons/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/save.gif -------------------------------------------------------------------------------- /src/halcyon/icons/scan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/scan.gif -------------------------------------------------------------------------------- /src/halcyon/icons/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/search.gif -------------------------------------------------------------------------------- /src/halcyon/icons/settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/settings.gif -------------------------------------------------------------------------------- /src/halcyon/icons/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/stop.gif -------------------------------------------------------------------------------- /src/halcyon/icons/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/undo.gif -------------------------------------------------------------------------------- /src/halcyon/icons/x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/icons/x.gif -------------------------------------------------------------------------------- /src/halcyon/ide/CommandExecutionHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/ide/CommandExecutionHandler.java -------------------------------------------------------------------------------- /src/halcyon/ide/ConfigurationManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/ide/ConfigurationManager.java -------------------------------------------------------------------------------- /src/halcyon/ide/FileSystemModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/ide/FileSystemModel.java -------------------------------------------------------------------------------- /src/halcyon/ide/HalcyonBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/ide/HalcyonBean.java -------------------------------------------------------------------------------- /src/halcyon/ide/HalcyonIDE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/ide/HalcyonIDE.java -------------------------------------------------------------------------------- /src/halcyon/ide/MainPanel.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/ide/MainPanel.form -------------------------------------------------------------------------------- /src/halcyon/ide/MainPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/ide/MainPanel.java -------------------------------------------------------------------------------- /src/halcyon/ide/ScriptBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/ide/ScriptBuilder.java -------------------------------------------------------------------------------- /src/halcyon/ide/ThreadHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/halcyon/ide/ThreadHandler.java -------------------------------------------------------------------------------- /src/lib/autocomplete.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/lib/autocomplete.jar -------------------------------------------------------------------------------- /src/lib/rsyntaxtextarea.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s4n7h0/Halcyon-IDE/HEAD/src/lib/rsyntaxtextarea.jar --------------------------------------------------------------------------------