├── .gitignore ├── .hgignore ├── README.md ├── __init__.py ├── lsmc ├── .gitignore ├── EmptySynthPanel.py ├── ImageSetViewField.py ├── InstrumentPane.py ├── InstrumentPanel.py ├── KitInstrumentPanel.py ├── LSMC ├── LogWindow.py ├── Makefile ├── NoInstrumentSelectedPanel.py ├── NoiseInstrumentPanel.py ├── ProjectModel.py ├── ProjectsWindow.py ├── PulseInstrumentPanel.py ├── ReadOnlyTextViewField.py ├── SelectedSynthPanel.py ├── SongWindow.py ├── StaticTextViewField.py ├── SynthPane.py ├── SynthParamsPanel.py ├── TablePane.py ├── VibeTypeViewField.py ├── ViewField.py ├── WaveInstrumentPanel.py ├── WavePanel.py ├── WaveViewField.py ├── WavesPanel.py ├── __init__.py ├── channels.py ├── dirs.py ├── event_handlers.py ├── icon.icns ├── icon.ico ├── icon.xcf ├── images │ ├── __init__.py │ ├── blank.gif │ ├── hires │ │ ├── synth_saw.gif │ │ ├── synth_sine.gif │ │ ├── synth_square.gif │ │ ├── vibe_hfsine.gif │ │ ├── vibe_saw.gif │ │ ├── vibe_sine.gif │ │ ├── vibe_square.gif │ │ ├── wave12.5.gif │ │ ├── wave25.gif │ │ ├── wave50.gif │ │ └── wave75.gif │ ├── images.py │ ├── lsdj_logo.png │ ├── make_images.sh │ ├── make_images_win.sh │ ├── synth_saw.gif │ ├── synth_sine.gif │ ├── synth_square.gif │ ├── vibe_hfsine.gif │ ├── vibe_saw.gif │ ├── vibe_sine.gif │ ├── vibe_square.gif │ ├── wave12.5.gif │ ├── wave25.gif │ ├── wave50.gif │ └── wave75.gif ├── setup.py ├── setup_win.py ├── utils.py └── viewutils.py ├── patch_virtualenv.sh ├── requirements.txt ├── requirements_win.txt └── vectorized_images.graffle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | *.pyc 3 | .coverage 4 | htmlcov 5 | .\#* 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lsmc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/.gitignore -------------------------------------------------------------------------------- /lsmc/EmptySynthPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/EmptySynthPanel.py -------------------------------------------------------------------------------- /lsmc/ImageSetViewField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/ImageSetViewField.py -------------------------------------------------------------------------------- /lsmc/InstrumentPane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/InstrumentPane.py -------------------------------------------------------------------------------- /lsmc/InstrumentPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/InstrumentPanel.py -------------------------------------------------------------------------------- /lsmc/KitInstrumentPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/KitInstrumentPanel.py -------------------------------------------------------------------------------- /lsmc/LSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/LSMC -------------------------------------------------------------------------------- /lsmc/LogWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/LogWindow.py -------------------------------------------------------------------------------- /lsmc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/Makefile -------------------------------------------------------------------------------- /lsmc/NoInstrumentSelectedPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/NoInstrumentSelectedPanel.py -------------------------------------------------------------------------------- /lsmc/NoiseInstrumentPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/NoiseInstrumentPanel.py -------------------------------------------------------------------------------- /lsmc/ProjectModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/ProjectModel.py -------------------------------------------------------------------------------- /lsmc/ProjectsWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/ProjectsWindow.py -------------------------------------------------------------------------------- /lsmc/PulseInstrumentPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/PulseInstrumentPanel.py -------------------------------------------------------------------------------- /lsmc/ReadOnlyTextViewField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/ReadOnlyTextViewField.py -------------------------------------------------------------------------------- /lsmc/SelectedSynthPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/SelectedSynthPanel.py -------------------------------------------------------------------------------- /lsmc/SongWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/SongWindow.py -------------------------------------------------------------------------------- /lsmc/StaticTextViewField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/StaticTextViewField.py -------------------------------------------------------------------------------- /lsmc/SynthPane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/SynthPane.py -------------------------------------------------------------------------------- /lsmc/SynthParamsPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/SynthParamsPanel.py -------------------------------------------------------------------------------- /lsmc/TablePane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/TablePane.py -------------------------------------------------------------------------------- /lsmc/VibeTypeViewField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/VibeTypeViewField.py -------------------------------------------------------------------------------- /lsmc/ViewField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/ViewField.py -------------------------------------------------------------------------------- /lsmc/WaveInstrumentPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/WaveInstrumentPanel.py -------------------------------------------------------------------------------- /lsmc/WavePanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/WavePanel.py -------------------------------------------------------------------------------- /lsmc/WaveViewField.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/WaveViewField.py -------------------------------------------------------------------------------- /lsmc/WavesPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/WavesPanel.py -------------------------------------------------------------------------------- /lsmc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lsmc/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/channels.py -------------------------------------------------------------------------------- /lsmc/dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/dirs.py -------------------------------------------------------------------------------- /lsmc/event_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/event_handlers.py -------------------------------------------------------------------------------- /lsmc/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/icon.icns -------------------------------------------------------------------------------- /lsmc/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/icon.ico -------------------------------------------------------------------------------- /lsmc/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/icon.xcf -------------------------------------------------------------------------------- /lsmc/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lsmc/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/blank.gif -------------------------------------------------------------------------------- /lsmc/images/hires/synth_saw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/hires/synth_saw.gif -------------------------------------------------------------------------------- /lsmc/images/hires/synth_sine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/hires/synth_sine.gif -------------------------------------------------------------------------------- /lsmc/images/hires/synth_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/hires/synth_square.gif -------------------------------------------------------------------------------- /lsmc/images/hires/vibe_hfsine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/hires/vibe_hfsine.gif -------------------------------------------------------------------------------- /lsmc/images/hires/vibe_saw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/hires/vibe_saw.gif -------------------------------------------------------------------------------- /lsmc/images/hires/vibe_sine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/hires/vibe_sine.gif -------------------------------------------------------------------------------- /lsmc/images/hires/vibe_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/hires/vibe_square.gif -------------------------------------------------------------------------------- /lsmc/images/hires/wave12.5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/hires/wave12.5.gif -------------------------------------------------------------------------------- /lsmc/images/hires/wave25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/hires/wave25.gif -------------------------------------------------------------------------------- /lsmc/images/hires/wave50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/hires/wave50.gif -------------------------------------------------------------------------------- /lsmc/images/hires/wave75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/hires/wave75.gif -------------------------------------------------------------------------------- /lsmc/images/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/images.py -------------------------------------------------------------------------------- /lsmc/images/lsdj_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/lsdj_logo.png -------------------------------------------------------------------------------- /lsmc/images/make_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/make_images.sh -------------------------------------------------------------------------------- /lsmc/images/make_images_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/make_images_win.sh -------------------------------------------------------------------------------- /lsmc/images/synth_saw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/synth_saw.gif -------------------------------------------------------------------------------- /lsmc/images/synth_sine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/synth_sine.gif -------------------------------------------------------------------------------- /lsmc/images/synth_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/synth_square.gif -------------------------------------------------------------------------------- /lsmc/images/vibe_hfsine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/vibe_hfsine.gif -------------------------------------------------------------------------------- /lsmc/images/vibe_saw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/vibe_saw.gif -------------------------------------------------------------------------------- /lsmc/images/vibe_sine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/vibe_sine.gif -------------------------------------------------------------------------------- /lsmc/images/vibe_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/vibe_square.gif -------------------------------------------------------------------------------- /lsmc/images/wave12.5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/wave12.5.gif -------------------------------------------------------------------------------- /lsmc/images/wave25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/wave25.gif -------------------------------------------------------------------------------- /lsmc/images/wave50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/wave50.gif -------------------------------------------------------------------------------- /lsmc/images/wave75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/images/wave75.gif -------------------------------------------------------------------------------- /lsmc/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/setup.py -------------------------------------------------------------------------------- /lsmc/setup_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/setup_win.py -------------------------------------------------------------------------------- /lsmc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/utils.py -------------------------------------------------------------------------------- /lsmc/viewutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/lsmc/viewutils.py -------------------------------------------------------------------------------- /patch_virtualenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/patch_virtualenv.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_win.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/requirements_win.txt -------------------------------------------------------------------------------- /vectorized_images.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexras/lsmc/HEAD/vectorized_images.graffle --------------------------------------------------------------------------------