-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathView.js
More file actions
85 lines (69 loc) · 2.75 KB
/
Copy pathView.js
File metadata and controls
85 lines (69 loc) · 2.75 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
// Written by Jürgen Moßgraber - mossgrabers.de
// (c) 2014
// Licensed under GPLv3 - http://www.gnu.org/licenses/gpl.html
function View ()
{
this.push = null;
}
View.prototype.attachTo = function (aPush)
{
this.push = aPush;
};
View.prototype.usesButton = function (buttonID)
{
return true;
};
View.prototype.onActivate = function () {};
View.prototype.drawGrid = function () {};
View.prototype.onGrid = function (note, velocity) {};
View.prototype.onPlay = function () {};
View.prototype.onRecord = function () {};
View.prototype.onNew = function (isPressed) {};
View.prototype.onDuplicate = function () {};
View.prototype.onAutomation = function () {};
View.prototype.onFixedLength = function (isDown) {};
View.prototype.onQuantize = function () {};
View.prototype.onDouble = function () {};
View.prototype.onDelete = function () {};
View.prototype.onUndo = function () {};
View.prototype.onSmallKnob1 = function (increase) {};
View.prototype.onSmallKnob2 = function (increase) {};
View.prototype.onClick = function () {};
View.prototype.onTapTempo = function () {};
View.prototype.onValueKnob = function (index, value) {};
View.prototype.onValueKnob9 = function (value) {};
View.prototype.onFirstRow = function (index) {};
View.prototype.onSecondRow = function (index) {};
View.prototype.onMaster = function () {};
View.prototype.onStop = function (isPressed) {};
View.prototype.onScene = function (index) {};
View.prototype.onVolume = function () {};
View.prototype.onPanAndSend = function () {};
View.prototype.onTrack = function () {};
View.prototype.onClip = function () {};
View.prototype.onDevice = function () {};
View.prototype.onBrowse = function () {};
View.prototype.onDeviceLeft = function () {};
View.prototype.onDeviceRight = function () {};
View.prototype.onMute = function () {};
View.prototype.onSolo = function () {};
View.prototype.onScales = function (isDown) {};
View.prototype.onUser = function () {};
View.prototype.onRepeat = function (isDown) {};
View.prototype.onAccent = function (isDown) {};
View.prototype.onOctaveDown = function () {};
View.prototype.onOctaveUp = function () {};
View.prototype.onAddFX = function () {};
View.prototype.onAddTrack = function () {};
View.prototype.onNote = function () {};
View.prototype.onSession = function () {};
View.prototype.onSelect = function (isSelectPressed) {};
View.prototype.onShift = function (isShiftPressed) {};
View.prototype.onUp = function () {};
View.prototype.onDown = function () {};
View.prototype.onLeft = function () {};
View.prototype.onRight = function () {};
View.prototype.onValueKnobTouch = function (knob, isTouched) {};
View.prototype.onValueKnob9Touch = function (isTouched) {};
View.prototype.onSmallKnob1Touch = function (isTouched) {};
View.prototype.onSmallKnob1Touch = function (isTouched) {};