mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 20:26:30 +01:00
map most (all?) monitor processor state into/onto monitor section GUI
git-svn-id: svn://localhost/ardour2/branches/3.0@6749 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
c5dab0e2a8
commit
e10f59f96c
3 changed files with 113 additions and 84 deletions
|
|
@ -201,7 +201,7 @@ MonitorProcessor::state (bool full)
|
|||
chn_node->add_property ("id", buf);
|
||||
|
||||
chn_node->add_property (X_("cut"), x->cut == 1.0 ? "no" : "yes");
|
||||
chn_node->add_property (X_("invert"), x->polarity == 1.0 ? "yes" : "no");
|
||||
chn_node->add_property (X_("invert"), x->polarity == 1.0 ? "no" : "yes");
|
||||
chn_node->add_property (X_("dim"), x->dim ? "yes" : "no");
|
||||
chn_node->add_property (X_("solo"), x->soloed ? "yes" : "no");
|
||||
|
||||
|
|
@ -409,3 +409,15 @@ MonitorProcessor::mono () const
|
|||
{
|
||||
return _mono;
|
||||
}
|
||||
|
||||
bool
|
||||
MonitorProcessor::dim_all () const
|
||||
{
|
||||
return _dim_all;
|
||||
}
|
||||
|
||||
bool
|
||||
MonitorProcessor::cut_all () const
|
||||
{
|
||||
return _cut_all;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue