コード例 #1
0
 def __init__(self, *a, **k):
     (super(MIDI_Mix, self).__init__)(*a, **k)
     with self.component_guard():
         self._skin = Skin(Colors)
         with inject(skin=(const(self._skin))).everywhere():
             self._create_controls()
         self._create_mixer()
コード例 #2
0
 def __init__(self, *a, **k):
     (super(BeatStep, self).__init__)(*a, **k)
     self._skin = Skin(Colors)
     with self.component_guard():
         self._create_controls()
         self._create_device()
         self._create_session()
         self._create_mixer()
         self._create_transport()
コード例 #3
0
def make_default_skin():
    return Skin(Colors)
コード例 #4
0
def make_skin():
    return Skin(Colors)
コード例 #5
0
def make_stop_button_skin():
    return Skin(StopButtons)
コード例 #6
0
def make_rgb_skin():
    return Skin(RgbColors)
コード例 #7
0
def make_biled_skin():
    return Skin(BiLedColors)
コード例 #8
0
def make_default_skin():
    return Skin(Defaults)
コード例 #9
0
def make_crossfade_button_skin():
    return Skin(CrossfadeButtons)