rollback to 3428, before the mysterious removal of libs/* at 3431/3432
[ardour.git] / libs / surfaces / control_protocol / control_protocol / basic_ui.h
1 /*
2     Copyright (C) 2006 Paul Davis 
3
4     This program is free software; you can redistribute it
5     and/or modify it under the terms of the GNU Lesser
6     General Public License as published by the Free Software
7     Foundation; either version 2 of the License, or (at your
8     option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __ardour_basic_ui_h__
22 #define __ardour_basic_ui_h__
23
24 #include <string>
25
26 #include <jack/types.h>
27 #include <control_protocol/smpte.h>
28
29 namespace ARDOUR {
30         class Session;
31 }
32
33 class BasicUI {
34   public:
35         BasicUI (ARDOUR::Session&);
36         virtual ~BasicUI ();
37         
38         void add_marker ();
39
40         void register_thread (std::string name);
41
42         /* transport control */
43
44         void loop_toggle ();
45         void goto_start ();
46         void goto_end ();
47         void rewind ();
48         void ffwd ();
49         void transport_stop ();
50         void transport_play (bool jump_back = true);
51         void set_transport_speed (float speed);
52         float get_transport_speed ();
53
54         jack_nframes_t transport_frame ();
55         void locate (jack_nframes_t frame, bool play = false);
56         bool locating ();
57         bool locked ();
58
59         void save_state ();
60         void prev_marker ();
61         void next_marker ();
62         void undo ();
63         void redo ();
64         void toggle_punch_in ();
65         void toggle_punch_out ();
66
67         void set_record_enable (bool yn);
68         bool get_record_enabled ();
69
70         void rec_enable_toggle ();
71         void toggle_all_rec_enables ();
72
73         jack_nframes_t smpte_frames_per_hour ();
74
75         void smpte_time (jack_nframes_t where, SMPTE::Time&);
76         void smpte_to_sample (SMPTE::Time& smpte, jack_nframes_t& sample, bool use_offset, bool use_subframes) const;
77         void sample_to_smpte (jack_nframes_t sample, SMPTE::Time& smpte, bool use_offset, bool use_subframes) const;
78
79   protected:
80         BasicUI ();
81         ARDOUR::Session* session;
82 };
83
84 #endif /* __ardour_basic_ui_h__ */