use of de.mossgrabers.launchpad.mode.StopClipMode in project DrivenByMoss by git-moss.
the class LaunchpadControllerSetup method createModes.
/**
* {@inheritDoc}
*/
@Override
protected void createModes() {
final LaunchpadControlSurface surface = this.getSurface();
final ModeManager modeManager = surface.getModeManager();
modeManager.registerMode(Modes.MODE_REC_ARM, new RecArmMode(surface, this.model));
modeManager.registerMode(Modes.MODE_TRACK_SELECT, new TrackMode(surface, this.model));
modeManager.registerMode(Modes.MODE_MUTE, new MuteMode(surface, this.model));
modeManager.registerMode(Modes.MODE_SOLO, new SoloMode(surface, this.model));
modeManager.registerMode(Modes.MODE_VOLUME, new VolumeMode(surface, this.model));
modeManager.registerMode(Modes.MODE_PAN, new PanMode(surface, this.model));
modeManager.registerMode(Modes.MODE_SENDS, new SendMode(surface, this.model));
modeManager.registerMode(Modes.MODE_STOP_CLIP, new StopClipMode(surface, this.model));
}
Aggregations