├── .github └── workflows │ └── main.yml ├── .gitignore ├── API - JFugueAPI ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ ├── platform-private.properties │ │ └── private.xml │ ├── project.properties │ ├── project.xml │ └── suite.properties ├── release │ └── modules │ │ └── ext │ │ └── jfugue-4.0.3.jar └── src │ └── org │ └── jfugue │ └── Bundle.properties ├── API - MusicianAPI ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ ├── platform-private.properties │ │ └── private.xml │ ├── project.properties │ ├── project.xml │ └── suite.properties └── src │ └── org │ └── musician │ └── api │ ├── Bundle.properties │ ├── CentralLookup.java │ ├── Composition.java │ ├── Instrument.java │ ├── InstrumentCategory.java │ ├── InvalidNoteException.java │ ├── Note.java │ ├── NoteWrapper.java │ ├── Score.java │ ├── SelectNoteImageFilter.java │ ├── barlineEnums.java │ └── noteInputEnums.java ├── Core - Musician ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ ├── platform-private.properties │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ ├── project.xml │ └── suite.properties └── src │ └── org │ └── netbeans │ └── modules │ └── musician │ ├── Bundle.properties │ ├── Installer.java │ ├── RootFrame.form │ ├── RootFrame.java │ └── actions │ ├── Play16.gif │ └── PlayAllAction.java ├── Core - New Composition Wizard ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── platform-private.properties │ │ └── private.xml │ ├── project.properties │ ├── project.xml │ └── suite.properties └── src │ └── org │ └── jfugue │ └── newcomposition │ ├── Bundle.properties │ ├── CompositionVisualPanel1.form │ ├── CompositionVisualPanel1.java │ ├── CompositionWizardPanel1.java │ └── NewAction.java ├── Core - Resources ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ └── platform-private.properties │ ├── project.properties │ ├── project.xml │ └── suite.properties └── src │ └── org │ └── netbeans │ └── modules │ └── musician │ └── resources │ ├── Bundle.properties │ ├── C-clef-icon.png │ ├── C-clef.png │ ├── CityLights-Properties-fontsColors.xml │ ├── F-clef-icon.png │ ├── F-clef.png │ ├── FastForward16.gif │ ├── FastForward24.gif │ ├── G-clef-icon.png │ ├── G-clef.png │ ├── MidiExample │ ├── NetBeans-Midi-fontsColors.xml │ ├── New16.gif │ ├── New24.gif │ ├── Pause16.gif │ ├── Pause24.gif │ ├── Play16.gif │ ├── Play24.gif │ ├── Rewind16.gif │ ├── Rewind24.gif │ ├── Save16.gif │ ├── Save24.gif │ ├── SaveAll16.gif │ ├── SaveAll24.gif │ ├── SaveAs16.gif │ ├── SaveAs24.gif │ ├── StepBack16.gif │ ├── StepBack24.gif │ ├── StepForward16.gif │ ├── StepForward24.gif │ ├── Stop16.gif │ ├── Stop24.gif │ ├── Thumbs.db │ ├── Volume16.gif │ ├── Volume24.gif │ ├── ball16.png │ ├── banner.cdr │ ├── banner.png │ ├── down-rectangle.png │ ├── editor.gif │ ├── eight.png │ ├── eighth-note-24.png │ ├── eighth-note-down.png │ ├── eighth-note.png │ ├── eighth-rest-24.png │ ├── eighth-rest.png │ ├── five.png │ ├── flat24.png │ ├── four.png │ ├── half-note-24.png │ ├── half-note-down.png │ ├── half-note.png │ ├── half-rest-24.png │ ├── half-rest.png │ ├── java-note-18.png │ ├── java-note-32.png │ ├── java-note.png │ ├── keyboard-16.png │ ├── music-sheet-small-old.png │ ├── music-sheet-small.png │ ├── newFile16.gif │ ├── newFile24.gif │ ├── nine.png │ ├── notes │ ├── eigth-note-16.png │ ├── eigth-note-32.png │ ├── half-note-16.png │ ├── half-note-32.png │ ├── quarter-note-16.png │ └── quarter-note-32.png │ ├── one.png │ ├── quarter-note-16.png │ ├── quarter-note-24.png │ ├── quarter-note-down.png │ ├── quarter-note.png │ ├── quarter-rest-24.png │ ├── quarter-rest.png │ ├── rectangle-rest.png │ ├── restore24.png │ ├── right-rectangle.png │ ├── sel-ball16.png │ ├── sel-eighth-note-24.png │ ├── sel-eighth-rest-24.png │ ├── sel-flat24.png │ ├── sel-half-note-24.png │ ├── sel-half-rest-24.png │ ├── sel-quarter-note-24.png │ ├── sel-quarter-rest-24.png │ ├── sel-restore24.png │ ├── sel-sharp24.png │ ├── sel-sixteenth-note-24.png │ ├── sel-sixteenth-rest-24.png │ ├── sel-whole-note-24.png │ ├── sel-whole-rest-24.png │ ├── sharp24.png │ ├── six.png │ ├── sixteen.png │ ├── sixteenth-note-24.png │ ├── sixteenth-note-down.png │ ├── sixteenth-note.png │ ├── sixteenth-rest-24.png │ ├── sixteenth-rest.png │ ├── splash.gif │ ├── stave-16.png │ ├── three.png │ ├── twelve.png │ ├── two.png │ ├── whole-note-24.png │ ├── whole-note.png │ ├── whole-rest-24.png │ └── whole-rest.png ├── Core - Score ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ ├── platform-private.properties │ │ └── private.xml │ ├── project.properties │ ├── project.xml │ └── suite.properties └── src │ └── org │ └── jfugue │ └── score │ ├── Bundle.properties │ ├── PrintPreview.java │ ├── ScoreTopComponent.form │ ├── ScoreTopComponent.java │ ├── SingleStave.java │ ├── Stave.form │ ├── Stave.java │ └── StaveListener.java ├── Input - Guitar ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ ├── platform-private.properties │ │ └── private.xml │ ├── project.properties │ ├── project.xml │ └── suite.properties ├── release │ └── modules │ │ └── ext │ │ └── jgrid-0.3-SNAPSHOT.jar └── src │ └── org │ └── jfugue │ └── guitar │ ├── Bundle.properties │ ├── GuitarCellRenderer.java │ ├── GuitarJGrid.java │ ├── GuitarJTable.java │ ├── GuitarSelectionListener.java │ ├── GuitarTopComponent.form │ ├── GuitarTopComponent.java │ ├── ball16.png │ └── wood128.png ├── Input - Keyboard ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ ├── platform-private.properties │ │ └── private.xml │ ├── project.properties │ ├── project.xml │ └── suite.properties └── src │ └── org │ └── jfugue │ └── keyboard │ ├── Bundle.properties │ ├── InstrumentMidiReceiver.java │ ├── Key.java │ ├── KeyboardListener.java │ ├── Piano.form │ ├── Piano.java │ ├── ValeriKeyboardTopComponent.form │ ├── ValeriKeyboardTopComponent.java │ ├── keyboard-16.png │ └── layer.xml ├── Input - Xylophone ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ ├── platform-private.properties │ │ └── private.xml │ ├── project.properties │ ├── project.xml │ └── suite.properties └── src │ └── org │ └── jfugue │ └── xylophone │ ├── Bundle.properties │ ├── Xylophone.java │ ├── XylophoneTopComponent.form │ └── XylophoneTopComponent.java ├── Libs - Flamingo Integration ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ ├── platform-private.properties │ │ └── private.xml │ ├── project.properties │ ├── project.xml │ └── suite.properties └── src │ └── com │ └── pinkmatter │ ├── api │ └── flamingo │ │ ├── DiscreteResizableIcon.java │ │ ├── ResizableIcons.java │ │ └── RibbonPresenter.java │ ├── modules │ └── flamingo │ │ ├── ActionItem.java │ │ ├── ActionItems.java │ │ ├── Bundle.properties │ │ ├── FileRibbonApplicationMenuButtonUI.java │ │ ├── FileRibbonUI.java │ │ ├── Installer.java │ │ ├── LAFConfiguration.java │ │ ├── LayerRibbonAppMenuProvider.java │ │ ├── LayerRibbonComponentProvider.java │ │ ├── NbRibbonApplicationMenuButtonUI.java │ │ ├── RibbonComponentFactory.java │ │ ├── RibbonRootPaneLayout.java │ │ ├── Utils.java │ │ ├── app-button-icon24.png │ │ └── help.png │ └── spi │ └── flamingo │ ├── RibbonAppMenuProvider.java │ ├── RibbonComponentProvider.java │ └── RibbonDefaultRolloverProvider.java ├── Libs - Flamingo ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ ├── platform-private.properties │ │ └── private.xml │ ├── project.properties │ ├── project.xml │ └── suite.properties ├── release │ └── modules │ │ └── ext │ │ ├── flamingo.jar │ │ ├── forms-1.3.0.jar │ │ └── trident.jar └── src │ └── org │ └── pushingpixels │ └── flamingo │ └── Bundle.properties ├── Libs - JavaFX Runtime ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ └── platform-private.properties │ ├── project.properties │ ├── project.xml │ └── suite.properties ├── release │ └── modules │ │ └── ext │ │ └── jfxrt.jar └── src │ └── org │ └── jfxrt │ └── Bundle.properties ├── README.md ├── Tools - Composition ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── project.properties │ ├── project.xml │ └── suite.properties └── src │ └── org │ └── jfugue │ └── composition │ ├── Bundle.properties │ ├── CompositionTopComponent.form │ ├── CompositionTopComponent.java │ ├── explorerWsmode.xml │ └── layer.xml ├── Tools - Instruments ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ ├── platform-private.properties │ │ └── private.xml │ ├── project.properties │ ├── project.xml │ └── suite.properties └── src │ └── org │ └── jfugue │ └── instruments │ ├── Bundle.properties │ ├── InstrumentNode.java │ ├── InstrumentsTopComponent.form │ ├── InstrumentsTopComponent.java │ ├── MIDIInstrumentCategories.java │ ├── MIDIInstruments.java │ └── RootNode.java ├── Tools - Syntax ├── build.xml ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── platform.properties │ ├── private │ │ ├── platform-private.properties │ │ └── private.xml │ ├── project.properties │ ├── project.xml │ └── suite.properties └── src │ └── org │ └── jfugue │ └── syntax │ ├── Bundle.properties │ ├── JFugueTopComponent.form │ └── JFugueTopComponent.java ├── branding ├── core │ └── core.jar │ │ └── org │ │ └── netbeans │ │ └── core │ │ └── startup │ │ ├── Bundle.properties │ │ ├── frame.gif │ │ ├── frame48.gif │ │ └── splash.gif └── modules │ ├── org-netbeans-core-windows.jar │ └── org │ │ └── netbeans │ │ └── core │ │ └── windows │ │ └── view │ │ └── ui │ │ └── Bundle.properties │ ├── org-netbeans-core.jar │ └── org │ │ └── netbeans │ │ └── core │ │ └── ui │ │ └── Bundle.properties │ └── org-netbeans-modules-favorites.jar │ └── org │ └── netbeans │ └── modules │ └── favorites │ └── Bundle.properties ├── index.html ├── nbproject ├── build-impl.xml ├── genfiles.properties ├── platform.properties ├── platform.xml ├── private │ ├── platform-private.properties │ └── private.xml ├── project.properties └── project.xml ├── platform.xml ├── release-notes └── changes.json └── www ├── WorksWithOpenJDK1.png ├── WorksWithOpenJDK2.png ├── index.html ├── jmn.png ├── music-notepad.png ├── music-notepad_2.png ├── music-notepad_3.png └── music-notepad_newest.png /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/.gitignore -------------------------------------------------------------------------------- /API - JFugueAPI/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - JFugueAPI/build.xml -------------------------------------------------------------------------------- /API - JFugueAPI/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - JFugueAPI/manifest.mf -------------------------------------------------------------------------------- /API - JFugueAPI/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - JFugueAPI/nbproject/build-impl.xml -------------------------------------------------------------------------------- /API - JFugueAPI/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - JFugueAPI/nbproject/genfiles.properties -------------------------------------------------------------------------------- /API - JFugueAPI/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - JFugueAPI/nbproject/platform.properties -------------------------------------------------------------------------------- /API - JFugueAPI/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - JFugueAPI/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /API - JFugueAPI/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - JFugueAPI/nbproject/private/private.xml -------------------------------------------------------------------------------- /API - JFugueAPI/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | is.autoload=true 2 | -------------------------------------------------------------------------------- /API - JFugueAPI/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - JFugueAPI/nbproject/project.xml -------------------------------------------------------------------------------- /API - JFugueAPI/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /API - JFugueAPI/release/modules/ext/jfugue-4.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - JFugueAPI/release/modules/ext/jfugue-4.0.3.jar -------------------------------------------------------------------------------- /API - JFugueAPI/src/org/jfugue/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=API - JFugueAPI 2 | -------------------------------------------------------------------------------- /API - MusicianAPI/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/build.xml -------------------------------------------------------------------------------- /API - MusicianAPI/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/manifest.mf -------------------------------------------------------------------------------- /API - MusicianAPI/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/nbproject/build-impl.xml -------------------------------------------------------------------------------- /API - MusicianAPI/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/nbproject/genfiles.properties -------------------------------------------------------------------------------- /API - MusicianAPI/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/nbproject/platform.properties -------------------------------------------------------------------------------- /API - MusicianAPI/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /API - MusicianAPI/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/nbproject/private/private.xml -------------------------------------------------------------------------------- /API - MusicianAPI/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/nbproject/project.properties -------------------------------------------------------------------------------- /API - MusicianAPI/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/nbproject/project.xml -------------------------------------------------------------------------------- /API - MusicianAPI/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /API - MusicianAPI/src/org/musician/api/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/src/org/musician/api/Bundle.properties -------------------------------------------------------------------------------- /API - MusicianAPI/src/org/musician/api/CentralLookup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/src/org/musician/api/CentralLookup.java -------------------------------------------------------------------------------- /API - MusicianAPI/src/org/musician/api/Composition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/src/org/musician/api/Composition.java -------------------------------------------------------------------------------- /API - MusicianAPI/src/org/musician/api/Instrument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/src/org/musician/api/Instrument.java -------------------------------------------------------------------------------- /API - MusicianAPI/src/org/musician/api/InstrumentCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/src/org/musician/api/InstrumentCategory.java -------------------------------------------------------------------------------- /API - MusicianAPI/src/org/musician/api/InvalidNoteException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/src/org/musician/api/InvalidNoteException.java -------------------------------------------------------------------------------- /API - MusicianAPI/src/org/musician/api/Note.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/src/org/musician/api/Note.java -------------------------------------------------------------------------------- /API - MusicianAPI/src/org/musician/api/NoteWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/src/org/musician/api/NoteWrapper.java -------------------------------------------------------------------------------- /API - MusicianAPI/src/org/musician/api/Score.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/src/org/musician/api/Score.java -------------------------------------------------------------------------------- /API - MusicianAPI/src/org/musician/api/SelectNoteImageFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/src/org/musician/api/SelectNoteImageFilter.java -------------------------------------------------------------------------------- /API - MusicianAPI/src/org/musician/api/barlineEnums.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/src/org/musician/api/barlineEnums.java -------------------------------------------------------------------------------- /API - MusicianAPI/src/org/musician/api/noteInputEnums.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/API - MusicianAPI/src/org/musician/api/noteInputEnums.java -------------------------------------------------------------------------------- /Core - Musician/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/build.xml -------------------------------------------------------------------------------- /Core - Musician/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/manifest.mf -------------------------------------------------------------------------------- /Core - Musician/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Core - Musician/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Core - Musician/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/nbproject/platform.properties -------------------------------------------------------------------------------- /Core - Musician/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /Core - Musician/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core - Musician/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/nbproject/private/private.xml -------------------------------------------------------------------------------- /Core - Musician/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/nbproject/project.properties -------------------------------------------------------------------------------- /Core - Musician/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/nbproject/project.xml -------------------------------------------------------------------------------- /Core - Musician/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Core - Musician/src/org/netbeans/modules/musician/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/src/org/netbeans/modules/musician/Bundle.properties -------------------------------------------------------------------------------- /Core - Musician/src/org/netbeans/modules/musician/Installer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/src/org/netbeans/modules/musician/Installer.java -------------------------------------------------------------------------------- /Core - Musician/src/org/netbeans/modules/musician/RootFrame.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/src/org/netbeans/modules/musician/RootFrame.form -------------------------------------------------------------------------------- /Core - Musician/src/org/netbeans/modules/musician/RootFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/src/org/netbeans/modules/musician/RootFrame.java -------------------------------------------------------------------------------- /Core - Musician/src/org/netbeans/modules/musician/actions/Play16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/src/org/netbeans/modules/musician/actions/Play16.gif -------------------------------------------------------------------------------- /Core - Musician/src/org/netbeans/modules/musician/actions/PlayAllAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Musician/src/org/netbeans/modules/musician/actions/PlayAllAction.java -------------------------------------------------------------------------------- /Core - New Composition Wizard/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - New Composition Wizard/build.xml -------------------------------------------------------------------------------- /Core - New Composition Wizard/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - New Composition Wizard/manifest.mf -------------------------------------------------------------------------------- /Core - New Composition Wizard/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - New Composition Wizard/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Core - New Composition Wizard/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - New Composition Wizard/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Core - New Composition Wizard/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - New Composition Wizard/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /Core - New Composition Wizard/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - New Composition Wizard/nbproject/private/private.xml -------------------------------------------------------------------------------- /Core - New Composition Wizard/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - New Composition Wizard/nbproject/project.properties -------------------------------------------------------------------------------- /Core - New Composition Wizard/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - New Composition Wizard/nbproject/project.xml -------------------------------------------------------------------------------- /Core - New Composition Wizard/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Core - New Composition Wizard/src/org/jfugue/newcomposition/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=Core - New Composition Wizard 2 | -------------------------------------------------------------------------------- /Core - New Composition Wizard/src/org/jfugue/newcomposition/CompositionVisualPanel1.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - New Composition Wizard/src/org/jfugue/newcomposition/CompositionVisualPanel1.form -------------------------------------------------------------------------------- /Core - New Composition Wizard/src/org/jfugue/newcomposition/CompositionVisualPanel1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - New Composition Wizard/src/org/jfugue/newcomposition/CompositionVisualPanel1.java -------------------------------------------------------------------------------- /Core - New Composition Wizard/src/org/jfugue/newcomposition/CompositionWizardPanel1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - New Composition Wizard/src/org/jfugue/newcomposition/CompositionWizardPanel1.java -------------------------------------------------------------------------------- /Core - New Composition Wizard/src/org/jfugue/newcomposition/NewAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - New Composition Wizard/src/org/jfugue/newcomposition/NewAction.java -------------------------------------------------------------------------------- /Core - Resources/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/build.xml -------------------------------------------------------------------------------- /Core - Resources/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/manifest.mf -------------------------------------------------------------------------------- /Core - Resources/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Core - Resources/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Core - Resources/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/nbproject/platform.properties -------------------------------------------------------------------------------- /Core - Resources/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /Core - Resources/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/nbproject/project.properties -------------------------------------------------------------------------------- /Core - Resources/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/nbproject/project.xml -------------------------------------------------------------------------------- /Core - Resources/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=Core - Resources 2 | -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/C-clef-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/C-clef-icon.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/C-clef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/C-clef.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/CityLights-Properties-fontsColors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/CityLights-Properties-fontsColors.xml -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/F-clef-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/F-clef-icon.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/F-clef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/F-clef.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/FastForward16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/FastForward16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/FastForward24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/FastForward24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/G-clef-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/G-clef-icon.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/G-clef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/G-clef.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/MidiExample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/MidiExample -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/NetBeans-Midi-fontsColors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/NetBeans-Midi-fontsColors.xml -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/New16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/New16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/New24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/New24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Pause16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Pause16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Pause24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Pause24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Play16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Play16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Play24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Play24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Rewind16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Rewind16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Rewind24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Rewind24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Save16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Save16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Save24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Save24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/SaveAll16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/SaveAll16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/SaveAll24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/SaveAll24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/SaveAs16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/SaveAs16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/SaveAs24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/SaveAs24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/StepBack16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/StepBack16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/StepBack24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/StepBack24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/StepForward16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/StepForward16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/StepForward24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/StepForward24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Stop16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Stop16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Stop24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Stop24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Thumbs.db -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Volume16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Volume16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/Volume24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/Volume24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/ball16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/ball16.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/banner.cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/banner.cdr -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/banner.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/down-rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/down-rectangle.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/editor.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/eight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/eight.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/eighth-note-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/eighth-note-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/eighth-note-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/eighth-note-down.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/eighth-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/eighth-note.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/eighth-rest-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/eighth-rest-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/eighth-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/eighth-rest.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/five.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/five.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/flat24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/flat24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/four.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/half-note-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/half-note-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/half-note-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/half-note-down.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/half-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/half-note.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/half-rest-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/half-rest-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/half-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/half-rest.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/java-note-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/java-note-18.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/java-note-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/java-note-32.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/java-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/java-note.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/keyboard-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/keyboard-16.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/music-sheet-small-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/music-sheet-small-old.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/music-sheet-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/music-sheet-small.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/newFile16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/newFile16.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/newFile24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/newFile24.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/nine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/nine.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/notes/eigth-note-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/notes/eigth-note-16.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/notes/eigth-note-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/notes/eigth-note-32.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/notes/half-note-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/notes/half-note-16.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/notes/half-note-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/notes/half-note-32.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/notes/quarter-note-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/notes/quarter-note-16.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/notes/quarter-note-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/notes/quarter-note-32.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/one.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/quarter-note-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/quarter-note-16.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/quarter-note-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/quarter-note-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/quarter-note-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/quarter-note-down.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/quarter-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/quarter-note.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/quarter-rest-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/quarter-rest-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/quarter-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/quarter-rest.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/rectangle-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/rectangle-rest.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/restore24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/restore24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/right-rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/right-rectangle.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-ball16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-ball16.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-eighth-note-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-eighth-note-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-eighth-rest-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-eighth-rest-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-flat24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-flat24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-half-note-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-half-note-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-half-rest-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-half-rest-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-quarter-note-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-quarter-note-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-quarter-rest-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-quarter-rest-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-restore24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-restore24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-sharp24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-sharp24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-sixteenth-note-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-sixteenth-note-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-sixteenth-rest-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-sixteenth-rest-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-whole-note-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-whole-note-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sel-whole-rest-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sel-whole-rest-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sharp24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sharp24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/six.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sixteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sixteen.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sixteenth-note-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sixteenth-note-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sixteenth-note-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sixteenth-note-down.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sixteenth-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sixteenth-note.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sixteenth-rest-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sixteenth-rest-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/sixteenth-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/sixteenth-rest.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/splash.gif -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/stave-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/stave-16.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/three.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/twelve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/twelve.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/two.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/whole-note-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/whole-note-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/whole-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/whole-note.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/whole-rest-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/whole-rest-24.png -------------------------------------------------------------------------------- /Core - Resources/src/org/netbeans/modules/musician/resources/whole-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Resources/src/org/netbeans/modules/musician/resources/whole-rest.png -------------------------------------------------------------------------------- /Core - Score/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/build.xml -------------------------------------------------------------------------------- /Core - Score/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/manifest.mf -------------------------------------------------------------------------------- /Core - Score/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Core - Score/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Core - Score/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/nbproject/platform.properties -------------------------------------------------------------------------------- /Core - Score/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /Core - Score/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/nbproject/private/private.xml -------------------------------------------------------------------------------- /Core - Score/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/nbproject/project.properties -------------------------------------------------------------------------------- /Core - Score/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/nbproject/project.xml -------------------------------------------------------------------------------- /Core - Score/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Core - Score/src/org/jfugue/score/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=Core - Score 2 | -------------------------------------------------------------------------------- /Core - Score/src/org/jfugue/score/PrintPreview.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/src/org/jfugue/score/PrintPreview.java -------------------------------------------------------------------------------- /Core - Score/src/org/jfugue/score/ScoreTopComponent.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/src/org/jfugue/score/ScoreTopComponent.form -------------------------------------------------------------------------------- /Core - Score/src/org/jfugue/score/ScoreTopComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/src/org/jfugue/score/ScoreTopComponent.java -------------------------------------------------------------------------------- /Core - Score/src/org/jfugue/score/SingleStave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/src/org/jfugue/score/SingleStave.java -------------------------------------------------------------------------------- /Core - Score/src/org/jfugue/score/Stave.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/src/org/jfugue/score/Stave.form -------------------------------------------------------------------------------- /Core - Score/src/org/jfugue/score/Stave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/src/org/jfugue/score/Stave.java -------------------------------------------------------------------------------- /Core - Score/src/org/jfugue/score/StaveListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Core - Score/src/org/jfugue/score/StaveListener.java -------------------------------------------------------------------------------- /Input - Guitar/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/build.xml -------------------------------------------------------------------------------- /Input - Guitar/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/manifest.mf -------------------------------------------------------------------------------- /Input - Guitar/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Input - Guitar/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Input - Guitar/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/nbproject/platform.properties -------------------------------------------------------------------------------- /Input - Guitar/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /Input - Guitar/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/nbproject/private/private.xml -------------------------------------------------------------------------------- /Input - Guitar/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/nbproject/project.properties -------------------------------------------------------------------------------- /Input - Guitar/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/nbproject/project.xml -------------------------------------------------------------------------------- /Input - Guitar/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Input - Guitar/release/modules/ext/jgrid-0.3-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/release/modules/ext/jgrid-0.3-SNAPSHOT.jar -------------------------------------------------------------------------------- /Input - Guitar/src/org/jfugue/guitar/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/src/org/jfugue/guitar/Bundle.properties -------------------------------------------------------------------------------- /Input - Guitar/src/org/jfugue/guitar/GuitarCellRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/src/org/jfugue/guitar/GuitarCellRenderer.java -------------------------------------------------------------------------------- /Input - Guitar/src/org/jfugue/guitar/GuitarJGrid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/src/org/jfugue/guitar/GuitarJGrid.java -------------------------------------------------------------------------------- /Input - Guitar/src/org/jfugue/guitar/GuitarJTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/src/org/jfugue/guitar/GuitarJTable.java -------------------------------------------------------------------------------- /Input - Guitar/src/org/jfugue/guitar/GuitarSelectionListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/src/org/jfugue/guitar/GuitarSelectionListener.java -------------------------------------------------------------------------------- /Input - Guitar/src/org/jfugue/guitar/GuitarTopComponent.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/src/org/jfugue/guitar/GuitarTopComponent.form -------------------------------------------------------------------------------- /Input - Guitar/src/org/jfugue/guitar/GuitarTopComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/src/org/jfugue/guitar/GuitarTopComponent.java -------------------------------------------------------------------------------- /Input - Guitar/src/org/jfugue/guitar/ball16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/src/org/jfugue/guitar/ball16.png -------------------------------------------------------------------------------- /Input - Guitar/src/org/jfugue/guitar/wood128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Guitar/src/org/jfugue/guitar/wood128.png -------------------------------------------------------------------------------- /Input - Keyboard/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/build.xml -------------------------------------------------------------------------------- /Input - Keyboard/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/manifest.mf -------------------------------------------------------------------------------- /Input - Keyboard/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Input - Keyboard/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Input - Keyboard/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/nbproject/platform.properties -------------------------------------------------------------------------------- /Input - Keyboard/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /Input - Keyboard/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/nbproject/private/private.xml -------------------------------------------------------------------------------- /Input - Keyboard/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/nbproject/project.properties -------------------------------------------------------------------------------- /Input - Keyboard/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/nbproject/project.xml -------------------------------------------------------------------------------- /Input - Keyboard/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Input - Keyboard/src/org/jfugue/keyboard/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/src/org/jfugue/keyboard/Bundle.properties -------------------------------------------------------------------------------- /Input - Keyboard/src/org/jfugue/keyboard/InstrumentMidiReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/src/org/jfugue/keyboard/InstrumentMidiReceiver.java -------------------------------------------------------------------------------- /Input - Keyboard/src/org/jfugue/keyboard/Key.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/src/org/jfugue/keyboard/Key.java -------------------------------------------------------------------------------- /Input - Keyboard/src/org/jfugue/keyboard/KeyboardListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/src/org/jfugue/keyboard/KeyboardListener.java -------------------------------------------------------------------------------- /Input - Keyboard/src/org/jfugue/keyboard/Piano.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/src/org/jfugue/keyboard/Piano.form -------------------------------------------------------------------------------- /Input - Keyboard/src/org/jfugue/keyboard/Piano.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/src/org/jfugue/keyboard/Piano.java -------------------------------------------------------------------------------- /Input - Keyboard/src/org/jfugue/keyboard/ValeriKeyboardTopComponent.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/src/org/jfugue/keyboard/ValeriKeyboardTopComponent.form -------------------------------------------------------------------------------- /Input - Keyboard/src/org/jfugue/keyboard/ValeriKeyboardTopComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/src/org/jfugue/keyboard/ValeriKeyboardTopComponent.java -------------------------------------------------------------------------------- /Input - Keyboard/src/org/jfugue/keyboard/keyboard-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/src/org/jfugue/keyboard/keyboard-16.png -------------------------------------------------------------------------------- /Input - Keyboard/src/org/jfugue/keyboard/layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Keyboard/src/org/jfugue/keyboard/layer.xml -------------------------------------------------------------------------------- /Input - Xylophone/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Xylophone/build.xml -------------------------------------------------------------------------------- /Input - Xylophone/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Xylophone/manifest.mf -------------------------------------------------------------------------------- /Input - Xylophone/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Xylophone/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Input - Xylophone/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Xylophone/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Input - Xylophone/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Xylophone/nbproject/platform.properties -------------------------------------------------------------------------------- /Input - Xylophone/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Xylophone/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /Input - Xylophone/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Xylophone/nbproject/private/private.xml -------------------------------------------------------------------------------- /Input - Xylophone/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Xylophone/nbproject/project.properties -------------------------------------------------------------------------------- /Input - Xylophone/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Xylophone/nbproject/project.xml -------------------------------------------------------------------------------- /Input - Xylophone/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Input - Xylophone/src/org/jfugue/xylophone/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=Input - Xylophone 2 | -------------------------------------------------------------------------------- /Input - Xylophone/src/org/jfugue/xylophone/Xylophone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Xylophone/src/org/jfugue/xylophone/Xylophone.java -------------------------------------------------------------------------------- /Input - Xylophone/src/org/jfugue/xylophone/XylophoneTopComponent.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Xylophone/src/org/jfugue/xylophone/XylophoneTopComponent.form -------------------------------------------------------------------------------- /Input - Xylophone/src/org/jfugue/xylophone/XylophoneTopComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Input - Xylophone/src/org/jfugue/xylophone/XylophoneTopComponent.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/build.xml -------------------------------------------------------------------------------- /Libs - Flamingo Integration/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/manifest.mf -------------------------------------------------------------------------------- /Libs - Flamingo Integration/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Libs - Flamingo Integration/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Libs - Flamingo Integration/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/nbproject/platform.properties -------------------------------------------------------------------------------- /Libs - Flamingo Integration/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /Libs - Flamingo Integration/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/nbproject/private/private.xml -------------------------------------------------------------------------------- /Libs - Flamingo Integration/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/nbproject/project.properties -------------------------------------------------------------------------------- /Libs - Flamingo Integration/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/nbproject/project.xml -------------------------------------------------------------------------------- /Libs - Flamingo Integration/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/api/flamingo/DiscreteResizableIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/api/flamingo/DiscreteResizableIcon.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/api/flamingo/ResizableIcons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/api/flamingo/ResizableIcons.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/api/flamingo/RibbonPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/api/flamingo/RibbonPresenter.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/ActionItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/ActionItem.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/ActionItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/ActionItems.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/Bundle.properties -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/FileRibbonApplicationMenuButtonUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/FileRibbonApplicationMenuButtonUI.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/FileRibbonUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/FileRibbonUI.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/Installer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/Installer.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/LAFConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/LAFConfiguration.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/LayerRibbonAppMenuProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/LayerRibbonAppMenuProvider.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/LayerRibbonComponentProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/LayerRibbonComponentProvider.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/NbRibbonApplicationMenuButtonUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/NbRibbonApplicationMenuButtonUI.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/RibbonComponentFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/RibbonComponentFactory.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/RibbonRootPaneLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/RibbonRootPaneLayout.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/Utils.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/app-button-icon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/app-button-icon24.png -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/modules/flamingo/help.png -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/spi/flamingo/RibbonAppMenuProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/spi/flamingo/RibbonAppMenuProvider.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/spi/flamingo/RibbonComponentProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/spi/flamingo/RibbonComponentProvider.java -------------------------------------------------------------------------------- /Libs - Flamingo Integration/src/com/pinkmatter/spi/flamingo/RibbonDefaultRolloverProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo Integration/src/com/pinkmatter/spi/flamingo/RibbonDefaultRolloverProvider.java -------------------------------------------------------------------------------- /Libs - Flamingo/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo/build.xml -------------------------------------------------------------------------------- /Libs - Flamingo/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo/manifest.mf -------------------------------------------------------------------------------- /Libs - Flamingo/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Libs - Flamingo/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Libs - Flamingo/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo/nbproject/platform.properties -------------------------------------------------------------------------------- /Libs - Flamingo/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /Libs - Flamingo/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo/nbproject/private/private.xml -------------------------------------------------------------------------------- /Libs - Flamingo/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo/nbproject/project.properties -------------------------------------------------------------------------------- /Libs - Flamingo/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo/nbproject/project.xml -------------------------------------------------------------------------------- /Libs - Flamingo/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Libs - Flamingo/release/modules/ext/flamingo.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo/release/modules/ext/flamingo.jar -------------------------------------------------------------------------------- /Libs - Flamingo/release/modules/ext/forms-1.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo/release/modules/ext/forms-1.3.0.jar -------------------------------------------------------------------------------- /Libs - Flamingo/release/modules/ext/trident.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - Flamingo/release/modules/ext/trident.jar -------------------------------------------------------------------------------- /Libs - Flamingo/src/org/pushingpixels/flamingo/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=Libs - Flamingo 2 | -------------------------------------------------------------------------------- /Libs - JavaFX Runtime/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - JavaFX Runtime/build.xml -------------------------------------------------------------------------------- /Libs - JavaFX Runtime/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - JavaFX Runtime/manifest.mf -------------------------------------------------------------------------------- /Libs - JavaFX Runtime/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - JavaFX Runtime/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Libs - JavaFX Runtime/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - JavaFX Runtime/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Libs - JavaFX Runtime/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - JavaFX Runtime/nbproject/platform.properties -------------------------------------------------------------------------------- /Libs - JavaFX Runtime/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - JavaFX Runtime/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /Libs - JavaFX Runtime/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | is.autoload=true 2 | -------------------------------------------------------------------------------- /Libs - JavaFX Runtime/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - JavaFX Runtime/nbproject/project.xml -------------------------------------------------------------------------------- /Libs - JavaFX Runtime/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Libs - JavaFX Runtime/release/modules/ext/jfxrt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Libs - JavaFX Runtime/release/modules/ext/jfxrt.jar -------------------------------------------------------------------------------- /Libs - JavaFX Runtime/src/org/jfxrt/Bundle.properties: -------------------------------------------------------------------------------- 1 | OpenIDE-Module-Name=Libs - JavaFX Runtime 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/README.md -------------------------------------------------------------------------------- /Tools - Composition/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Composition/build.xml -------------------------------------------------------------------------------- /Tools - Composition/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Composition/manifest.mf -------------------------------------------------------------------------------- /Tools - Composition/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Composition/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Tools - Composition/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Composition/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Tools - Composition/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Composition/nbproject/platform.properties -------------------------------------------------------------------------------- /Tools - Composition/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Composition/nbproject/project.properties -------------------------------------------------------------------------------- /Tools - Composition/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Composition/nbproject/project.xml -------------------------------------------------------------------------------- /Tools - Composition/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Tools - Composition/src/org/jfugue/composition/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Composition/src/org/jfugue/composition/Bundle.properties -------------------------------------------------------------------------------- /Tools - Composition/src/org/jfugue/composition/CompositionTopComponent.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Composition/src/org/jfugue/composition/CompositionTopComponent.form -------------------------------------------------------------------------------- /Tools - Composition/src/org/jfugue/composition/CompositionTopComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Composition/src/org/jfugue/composition/CompositionTopComponent.java -------------------------------------------------------------------------------- /Tools - Composition/src/org/jfugue/composition/explorerWsmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Composition/src/org/jfugue/composition/explorerWsmode.xml -------------------------------------------------------------------------------- /Tools - Composition/src/org/jfugue/composition/layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Composition/src/org/jfugue/composition/layer.xml -------------------------------------------------------------------------------- /Tools - Instruments/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/build.xml -------------------------------------------------------------------------------- /Tools - Instruments/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/manifest.mf -------------------------------------------------------------------------------- /Tools - Instruments/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Tools - Instruments/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Tools - Instruments/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/nbproject/platform.properties -------------------------------------------------------------------------------- /Tools - Instruments/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /Tools - Instruments/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/nbproject/private/private.xml -------------------------------------------------------------------------------- /Tools - Instruments/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/nbproject/project.properties -------------------------------------------------------------------------------- /Tools - Instruments/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/nbproject/project.xml -------------------------------------------------------------------------------- /Tools - Instruments/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Tools - Instruments/src/org/jfugue/instruments/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/src/org/jfugue/instruments/Bundle.properties -------------------------------------------------------------------------------- /Tools - Instruments/src/org/jfugue/instruments/InstrumentNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/src/org/jfugue/instruments/InstrumentNode.java -------------------------------------------------------------------------------- /Tools - Instruments/src/org/jfugue/instruments/InstrumentsTopComponent.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/src/org/jfugue/instruments/InstrumentsTopComponent.form -------------------------------------------------------------------------------- /Tools - Instruments/src/org/jfugue/instruments/InstrumentsTopComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/src/org/jfugue/instruments/InstrumentsTopComponent.java -------------------------------------------------------------------------------- /Tools - Instruments/src/org/jfugue/instruments/MIDIInstrumentCategories.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/src/org/jfugue/instruments/MIDIInstrumentCategories.java -------------------------------------------------------------------------------- /Tools - Instruments/src/org/jfugue/instruments/MIDIInstruments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/src/org/jfugue/instruments/MIDIInstruments.java -------------------------------------------------------------------------------- /Tools - Instruments/src/org/jfugue/instruments/RootNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Instruments/src/org/jfugue/instruments/RootNode.java -------------------------------------------------------------------------------- /Tools - Syntax/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Syntax/build.xml -------------------------------------------------------------------------------- /Tools - Syntax/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Syntax/manifest.mf -------------------------------------------------------------------------------- /Tools - Syntax/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Syntax/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Tools - Syntax/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Syntax/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Tools - Syntax/nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Syntax/nbproject/platform.properties -------------------------------------------------------------------------------- /Tools - Syntax/nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Syntax/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /Tools - Syntax/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Syntax/nbproject/private/private.xml -------------------------------------------------------------------------------- /Tools - Syntax/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Syntax/nbproject/project.properties -------------------------------------------------------------------------------- /Tools - Syntax/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Syntax/nbproject/project.xml -------------------------------------------------------------------------------- /Tools - Syntax/nbproject/suite.properties: -------------------------------------------------------------------------------- 1 | suite.dir=${basedir}/.. 2 | -------------------------------------------------------------------------------- /Tools - Syntax/src/org/jfugue/syntax/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Syntax/src/org/jfugue/syntax/Bundle.properties -------------------------------------------------------------------------------- /Tools - Syntax/src/org/jfugue/syntax/JFugueTopComponent.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Syntax/src/org/jfugue/syntax/JFugueTopComponent.form -------------------------------------------------------------------------------- /Tools - Syntax/src/org/jfugue/syntax/JFugueTopComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/Tools - Syntax/src/org/jfugue/syntax/JFugueTopComponent.java -------------------------------------------------------------------------------- /branding/core/core.jar/org/netbeans/core/startup/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/branding/core/core.jar/org/netbeans/core/startup/Bundle.properties -------------------------------------------------------------------------------- /branding/core/core.jar/org/netbeans/core/startup/frame.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/branding/core/core.jar/org/netbeans/core/startup/frame.gif -------------------------------------------------------------------------------- /branding/core/core.jar/org/netbeans/core/startup/frame48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/branding/core/core.jar/org/netbeans/core/startup/frame48.gif -------------------------------------------------------------------------------- /branding/core/core.jar/org/netbeans/core/startup/splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/branding/core/core.jar/org/netbeans/core/startup/splash.gif -------------------------------------------------------------------------------- /branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/branding/modules/org-netbeans-core-windows.jar/org/netbeans/core/windows/view/ui/Bundle.properties -------------------------------------------------------------------------------- /branding/modules/org-netbeans-core.jar/org/netbeans/core/ui/Bundle.properties: -------------------------------------------------------------------------------- 1 | LBL_ProductInformation=Music NotePad 2 | -------------------------------------------------------------------------------- /branding/modules/org-netbeans-modules-favorites.jar/org/netbeans/modules/favorites/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/branding/modules/org-netbeans-modules-favorites.jar/org/netbeans/modules/favorites/Bundle.properties -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/index.html -------------------------------------------------------------------------------- /nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/nbproject/build-impl.xml -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/nbproject/genfiles.properties -------------------------------------------------------------------------------- /nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/nbproject/platform.properties -------------------------------------------------------------------------------- /nbproject/platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/nbproject/platform.xml -------------------------------------------------------------------------------- /nbproject/private/platform-private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/nbproject/private/platform-private.properties -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/nbproject/private/private.xml -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/platform.xml -------------------------------------------------------------------------------- /release-notes/changes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/release-notes/changes.json -------------------------------------------------------------------------------- /www/WorksWithOpenJDK1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/www/WorksWithOpenJDK1.png -------------------------------------------------------------------------------- /www/WorksWithOpenJDK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/www/WorksWithOpenJDK2.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/www/index.html -------------------------------------------------------------------------------- /www/jmn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/www/jmn.png -------------------------------------------------------------------------------- /www/music-notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/www/music-notepad.png -------------------------------------------------------------------------------- /www/music-notepad_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/www/music-notepad_2.png -------------------------------------------------------------------------------- /www/music-notepad_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/www/music-notepad_3.png -------------------------------------------------------------------------------- /www/music-notepad_newest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geertjanw/jmn/HEAD/www/music-notepad_newest.png --------------------------------------------------------------------------------