Forgot a help fix: Drag a dock's title bar, not divider, to reposition
[supercollider.git] / HelpSource / Classes / TouchResponder.schelp
blob0a7e9a8fb5062004f44f4105a171dfc93be5abec
1 class:: TouchResponder
2 summary:: allow functions to be registered to respond to MIDI aftertouch events
3 related:: Classes/MIDIFunc, Classes/MIDIdef, Classes/MIDIResponder, Classes/CCResponder
4 categories:: External Control>MIDI
6 Description::
7 note:: SC 3.5 added the link::Classes/MIDIFunc:: and link::Classes/MIDIdef:: classes. These are faster, and aim to have a more convenient, logical and consistent interface, which shares a common design with link::Classes/OSCFunc:: and link::Classes/OSCdef::.They still lack some features of the MIDIresponder classes.::
8 ClassMethods::
10 method::new
12 argument::function
13 A link::Classes/Function:: to be evaluated. Arguments passed to the function are: src, chan, value.
15 argument::src
16 The src number may be the system UID (obtained from code:: MIDIClient.sources[index].uid ::) or the index of the source in the code:: MIDIClient.sources :: array. nil matches all.
18 argument::chan
19 An link::Classes/Integer:: between 0 and 15 that selects which MIDI channel to match. nil matches all. May also be a link::Classes/Function:: which will be evaluated to determine the match. eg: { |val| val < 2 }
21 argument::value
22 An link::Classes/Integer:: between 0 and 127 to filter values. nil matches all. May also be a link::Classes/Function:: which will be evaluated to determine the match. eg: { |val| val < 50 }
24 argument::install
25 If true, install the responder automatically so it is active and ready to respond. If false, then it will be inactive.
27 argument::swallowEvent
28 If true, then if the midi event is matched, cease testing any further responders. Note that doing this will prevent any other responders of this type from responding, including ones added behind the scenes in classes. Note also that this functionality is sensitive to the order in which responders are added. 
30 InstanceMethods::
32 method::learn
33 Wait for the next aftertouch message, reset self to match src, chan.
34 code::
36 c = TouchResponder({ |src,chan,value|
37                 [src,chan,value].postln;
38         });
39         c.learn; // wait for the first touch message
41 TouchResponder.removeAll
45 Examples::
47 code::
49         c = TouchResponder({ |src,chan,val|
50                 [src,chan,val].postln;
51                 },
52                 nil, // any source
53                 nil, // any channel
54                 nil // any value
55         )
58 c.remove
61 code::
63         c = TouchResponder({ |src,chan,val|
64                 [src,chan,val].postln;
65                 },
66                 nil, // any source
67                 nil, // any channel
68                 (50..90) // values within this range
69         )
72 c.remove