implement remover_marker, jump_by_bars, and jump_by_seconds

This commit is contained in:
Ben Loftis
2016-01-15 16:40:46 -06:00
committed by Robin Gareus
parent 5a55ac582d
commit f0d9295dd6
4 changed files with 79 additions and 0 deletions

View File

@@ -43,6 +43,10 @@ class LIBCONTROLCP_API BasicUI {
virtual ~BasicUI ();
void add_marker (const std::string& = std::string());
void remove_marker_at_playhead ();
// void mark_in();
// void mark_out();
void register_thread (std::string name);
@@ -62,6 +66,9 @@ class LIBCONTROLCP_API BasicUI {
void set_transport_speed (double speed);
double get_transport_speed ();
void jump_by_seconds( double sec );
void jump_by_bars(double bars);
ARDOUR::framepos_t transport_frame ();
void locate (ARDOUR::framepos_t frame, bool play = false);
bool locating ();