show timecode info in selected audio clocks
[ardour.git] / gtk2_ardour / audio_clock.h
1 /*
2     Copyright (C) 1999 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #ifndef __audio_clock_h__
22 #define __audio_clock_h__
23
24 #include <gtkmm/box.h>
25 #include <gtkmm/menu.h>
26 #include <gtkmm/eventbox.h>
27 #include <gtkmm/label.h>
28 #include <gtkmm/frame.h>
29 #include <ardour/ardour.h>
30
31 namespace ARDOUR {
32         class Session;
33 }
34
35 class AudioClock : public Gtk::HBox
36 {
37   public:
38         enum Mode {
39                 SMPTE,
40                 BBT,
41                 MinSec,
42                 Frames,
43                 Off
44         };
45         
46         AudioClock (const string& name, bool editable, bool is_duration = false, bool with_tempo_meter = false);
47
48         Mode mode() const { return _mode; }
49         
50         void set (nframes_t, bool force = false);
51         void set_mode (Mode);
52
53         nframes_t current_time (nframes_t position = 0) const;
54         nframes_t current_duration (nframes_t position = 0) const;
55         void set_session (ARDOUR::Session *s);
56
57         sigc::signal<void> ValueChanged;
58
59   private:
60         ARDOUR::Session  *session;
61         Mode             _mode;
62         uint32_t      key_entry_state;
63         bool              is_duration;
64         bool              editable;
65
66         Gtk::Menu  *ops_menu;
67
68         Gtk::HBox   smpte_packer_hbox;
69         Gtk::HBox   smpte_packer;
70
71         Gtk::HBox   minsec_packer_hbox;
72         Gtk::HBox   minsec_packer;
73
74         Gtk::HBox   bbt_packer_hbox;
75         Gtk::HBox   bbt_packer;
76
77         Gtk::HBox   frames_packer_hbox;
78        
79         enum Field {
80                 SMPTE_Hours,
81                 SMPTE_Minutes,
82                 SMPTE_Seconds,
83                 SMPTE_Frames,
84                 MS_Hours,
85                 MS_Minutes,
86                 MS_Seconds,
87                 Bars,
88                 Beats, 
89                 Ticks,
90                 AudioFrames
91         };
92
93         Gtk::EventBox  audio_frames_ebox;
94         Gtk::Label     audio_frames_label;
95
96         Gtk::EventBox  hours_ebox;
97         Gtk::EventBox  minutes_ebox;
98         Gtk::EventBox  seconds_ebox;
99         Gtk::EventBox  frames_ebox;
100
101         Gtk::EventBox  ms_hours_ebox;
102         Gtk::EventBox  ms_minutes_ebox;
103         Gtk::EventBox  ms_seconds_ebox;
104
105         Gtk::EventBox  bars_ebox;
106         Gtk::EventBox  beats_ebox;
107         Gtk::EventBox  ticks_ebox;
108
109         Gtk::Label  hours_label;
110         Gtk::Label  minutes_label;
111         Gtk::Label  seconds_label;
112         Gtk::Label  frames_label;
113         Gtk::Label  colon1, colon2, colon3;
114
115         Gtk::Label*  framerate_label;
116         Gtk::Label*  pullup_label;
117
118         Gtk::VBox   rate_pullup_box;
119
120         Gtk::Label  ms_hours_label;
121         Gtk::Label  ms_minutes_label;
122         Gtk::Label  ms_seconds_label;
123         Gtk::Label  colon4, colon5;
124
125         Gtk::Label  bars_label;
126         Gtk::Label  beats_label;
127         Gtk::Label  ticks_label;
128         Gtk::Label  b1;
129         Gtk::Label  b2;
130
131         Gtk::Label*  tempo_label;
132         Gtk::Label*  meter_label;
133
134         Gtk::VBox   tempo_meter_box;
135
136         Gtk::EventBox  clock_base;
137         Gtk::Frame     clock_frame;
138
139         nframes_t last_when;
140
141         uint32_t last_hrs;
142         uint32_t last_mins;
143         uint32_t last_secs;
144         uint32_t last_frames;
145         bool last_negative;
146
147         long  ms_last_hrs;
148         long  ms_last_mins;
149         float ms_last_secs;
150
151         bool dragging;
152         double drag_start_y;
153         double drag_y;
154         double drag_accum;
155
156         void on_realize ();
157         
158         bool field_motion_notify_event (GdkEventMotion *ev, Field);
159         bool field_button_press_event (GdkEventButton *ev, Field);
160         bool field_button_release_event (GdkEventButton *ev, Field);
161         bool field_button_scroll_event (GdkEventScroll *ev, Field);
162         bool field_key_release_event (GdkEventKey *, Field);
163         bool field_focus_in_event (GdkEventFocus *, Field);
164         bool field_focus_out_event (GdkEventFocus *, Field);
165
166         void set_smpte (nframes_t, bool);
167         void set_bbt (nframes_t, bool);
168         void set_minsec (nframes_t, bool);
169         void set_frames (nframes_t, bool);
170
171         nframes_t get_frames (Field,nframes_t pos = 0,int dir=1);
172         
173         void smpte_sanitize_display();
174         nframes_t smpte_frame_from_display () const;
175         nframes_t bbt_frame_from_display (nframes_t) const;
176         nframes_t bbt_frame_duration_from_display (nframes_t) const;
177         nframes_t minsec_frame_from_display () const;
178         nframes_t audio_frame_from_display () const;
179
180         void build_ops_menu ();
181         void setup_events ();
182
183         void smpte_offset_changed ();
184         void set_size_requests ();
185
186         static const uint32_t field_length[(int)AudioFrames+1];
187 };
188
189 #endif /* __audio_clock_h__ */