add non-functional meta-controls for 2in/2out panning, to control direction+width. support exists in OSC and MIDI maps. no GUI elements yet

git-svn-id: svn://localhost/ardour2/branches/3.0@8121 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2010-11-28 21:28:54 +00:00
parent ad4e0cd2d1
commit c7df5f5271
8 changed files with 145 additions and 15 deletions

View file

@ -84,9 +84,11 @@ ControllableDescriptor::set (const std::string& str)
} else if (path[1] == "balance") {
_subtype = Balance;
} else if (path[1] == "pan") {
_subtype = Pan;
_target.push_back (atoi (rest[1]));
} else if (path[1] == "panwidth") {
_subtype = PanWidth;
} else if (path[1] == "pandirection") {
_subtype = PanDirection;
} else if (path[1] == "plugin") {
if (path.size() == 3 && rest.size() == 3) {

View file

@ -37,7 +37,8 @@ public:
Solo,
Mute,
Recenable,
Pan,
PanDirection,
PanWidth,
Balance,
SendGain,
PluginParameter