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:
Paul Davis 2010-03-12 00:19:46 +00:00
parent c5dab0e2a8
commit e10f59f96c
3 changed files with 113 additions and 84 deletions

View file

@ -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;
}