mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
faderport: more global button functions added
This commit is contained in:
parent
2e3721ecf4
commit
000b11dc4d
1 changed files with 5 additions and 1 deletions
|
|
@ -139,7 +139,11 @@ FaderPort::FaderPort (Session& s)
|
||||||
|
|
||||||
/* See comments about Stop above .. */
|
/* See comments about Stop above .. */
|
||||||
button_info (Rewind).set_action (boost::bind (&BasicUI::rewind, this), true, RewindDown);
|
button_info (Rewind).set_action (boost::bind (&BasicUI::rewind, this), true, RewindDown);
|
||||||
button_info (Rewind).set_action (boost::bind (&BasicUI::goto_start, this), true, ButtonState (RewindDown|StopDown));
|
button_info (Rewind).set_action (boost::bind (&BasicUI::goto_zero, this), true, ButtonState (RewindDown|StopDown));
|
||||||
|
button_info (Rewind).set_action (boost::bind (&BasicUI::goto_start, this), true, ButtonState (RewindDown|ShiftDown));
|
||||||
|
|
||||||
|
button_info (Ffwd).set_action (boost::bind (&BasicUI::ffwd, this), true);
|
||||||
|
button_info (Ffwd).set_action (boost::bind (&BasicUI::goto_end, this), true, ShiftDown);
|
||||||
|
|
||||||
button_info (Loop).set_action (boost::bind (&BasicUI::loop_toggle, this), true);
|
button_info (Loop).set_action (boost::bind (&BasicUI::loop_toggle, this), true);
|
||||||
button_info (Loop).set_action (boost::bind (&BasicUI::add_marker, this, string()), true, ShiftDown);
|
button_info (Loop).set_action (boost::bind (&BasicUI::add_marker, this, string()), true, ShiftDown);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue