def _create_device(self):
     self._device = DeviceComponent(
         name='Device',
         is_enabled=False,
         layer=Layer(parameter_controls=self._device_controls,
                     bank_buttons=self._device_bank_buttons,
                     bank_prev_button=self._device_prev_bank_button,
                     bank_next_button=self._device_next_bank_button,
                     on_off_button=self._device_on_off_button,
                     lock_button=self._device_lock_button))
 def _create_device(self):
     self._device = DeviceComponent(
         name='Device_Component',
         is_enabled=False,
         layer=Layer(bank_buttons=self._device_bank_buttons,
                     on_off_button=self._device_on_off_button),
         use_fake_banks=True)
     ChannelTranslationSelector(8, name='Control_Translations')
     self._device.set_parameter_controls(
         tuple(self._device_param_controls_raw))
 def _create_device_component(self):
     return DeviceComponent(name='Device_Component', is_enabled=False)
Example #4
0
 def _create_device_component(self):
     return DeviceComponent(name=u'Device_Component',
                            is_enabled=False,
                            device_selection_follows_track_selection=True)