-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCompressorDevice.py
More file actions
115 lines (97 loc) · 3.73 KB
/
CompressorDevice.py
File metadata and controls
115 lines (97 loc) · 3.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# All referenced (missing descriptions)
from typing import Callable
from Live.Device import Device
class CompressorDevice(Device):
"""
This class represents a Compressor device.
"""
@property
def _live_ptr(self) -> int:
"""
Get the pointer to the Live Object.
"""
return 0
@property
def available_input_routing_channels(self):
"""
:return: list of source channels for input routing in the side chain.
"""
return
@property
def available_input_routing_types(self):
"""
:return: list of source types for input routing in the side chain.
"""
return
@property
def input_routing_channel(self):
"""
:return: the current source channel for input routing in the side chain.
"""
return
@property
def input_routing_type(self):
"""
:return: the current source type for input routing in the side chain.
"""
return
def add_available_input_routing_channels_listener(self, arg2: Callable):
"""
Add a listener function or method, which will be called as soon as the property "available_input_routing_channels" has changed.
"""
return
def add_available_input_routing_types_listener(self, arg2: Callable):
"""
Add a listener function or method, which will be called as soon as the property "available_input_routing_types" has changed.
"""
return
def add_input_routing_channel_listener(self, arg2: Callable):
"""
Add a listener function or method, which will be called as soon as the property "input_routing_channel" has changed.
"""
return
def add_input_routing_type_listener(self, arg2: Callable):
"""
Add a listener function or method, which will be called as soon as the property "input_routing_type" has changed.
"""
return
def available_input_routing_channels_has_listener(self, arg2: Callable) -> bool:
"""
Returns true, if the given listener function or method is connected to the property "available_input_routing_channels".
"""
return False
def available_input_routing_types_has_listener(self, arg2: Callable) -> bool:
"""
Returns true, if the given listener function or method is connected to the property "available_input_routing_types".
"""
return False
def input_routing_channel_has_listener(self, arg2: Callable) -> bool:
"""
Returns true, if the given listener function or method is connected to the property "input_routing_channel".
"""
return False
def input_routing_type_has_listener(self, arg2: Callable) -> bool:
"""
Returns true, if the given listener function or method is connected to the property "input_routing_type".
"""
return False
def remove_available_input_routing_channels_listener(self, arg2: Callable):
"""
Remove a previously set listener function or method from property "available_input_routing_channels".
"""
return
def remove_available_input_routing_types_listener(self, arg2: Callable):
"""
Remove a previously set listener function or method from property "available_input_routing_types".
"""
return
def remove_input_routing_channel_listener(self, arg2: Callable):
"""
Remove a previously set listener function or method from property "input_routing_channel".
"""
return
def remove_input_routing_type_listener(self, arg2: Callable):
"""
Remove a previously set listener function or method from property "input_routing_type".
"""
return