mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Add all_tracks_rec actions
This commit is contained in:
parent
fe7aac8dac
commit
5493e20c84
6 changed files with 36 additions and 0 deletions
|
|
@ -211,6 +211,18 @@ BasicUI::rec_enable_toggle ()
|
|||
}
|
||||
}
|
||||
|
||||
void
|
||||
BasicUI::all_tracks_rec_in ()
|
||||
{
|
||||
session->set_all_tracks_record_enabled (true);
|
||||
}
|
||||
|
||||
void
|
||||
BasicUI::all_tracks_rec_out ()
|
||||
{
|
||||
session->set_all_tracks_record_enabled (false);
|
||||
}
|
||||
|
||||
void
|
||||
BasicUI::save_state ()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -133,6 +133,9 @@ class LIBCONTROLCP_API BasicUI {
|
|||
void rec_enable_toggle ();
|
||||
void toggle_all_rec_enables ();
|
||||
|
||||
void all_tracks_rec_in ();
|
||||
void all_tracks_rec_out ();
|
||||
|
||||
ARDOUR::framecnt_t timecode_frames_per_hour ();
|
||||
|
||||
void timecode_time (framepos_t where, Timecode::Time&);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue