locate when clicking on start/end fields in time info box
[ardour.git] / gtk2_ardour / time_info_box.cc
1 /*
2     Copyright (C) 2011 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 */
19
20 #include "pbd/compose.h"
21
22 #include "gtkmm2ext/cairocell.h"
23 #include "gtkmm2ext/gui_thread.h"
24 #include "gtkmm2ext/utils.h"
25
26 #include "ardour/location.h"
27 #include "ardour/session.h"
28
29 #include "time_info_box.h"
30 #include "audio_clock.h"
31 #include "editor.h"
32
33 #include "i18n.h"
34
35 using namespace Gtk;
36 using namespace ARDOUR;
37
38 TimeInfoBox::TimeInfoBox ()
39         : Table (4, 4)
40         , syncing_selection (false)
41         , syncing_punch (false)
42 {
43         selection_start = new AudioClock ("selection-start", false, "SelectionClockDisplay", false, false, false, false);
44         selection_end = new AudioClock ("selection-end", false, "SelectionClockDisplay", false, false, false, false);
45         selection_length = new AudioClock ("selection-length", false, "SelectionClockDisplay", false, false, true, false);
46
47         punch_start = new AudioClock ("punch-start", false, "PunchClockDisplay", false, false, false, false);
48         punch_end = new AudioClock ("punch-end", false, "PunchClockDisplay", false, false, false, false);
49
50         bool bg = true;
51
52         CairoEditableText& ss (selection_start->main_display());
53         ss.set_ypad (1);
54         ss.set_xpad (1);
55         ss.set_corner_radius (0);
56         ss.set_draw_background (bg);
57
58         CairoEditableText& se (selection_end->main_display());
59         se.set_ypad (1);
60         se.set_xpad (1);
61         se.set_corner_radius (0);
62         se.set_draw_background (bg);
63
64         CairoEditableText& sl (selection_length->main_display());
65         sl.set_ypad (1);
66         sl.set_xpad (2);
67         sl.set_corner_radius (0);
68         sl.set_draw_background (bg);
69
70         CairoEditableText& ps (punch_start->main_display());
71         ps.set_ypad (1);
72         ps.set_xpad (2);
73         ps.set_corner_radius (0);
74         ps.set_draw_background (bg);
75
76         CairoEditableText& pe (punch_end->main_display());
77         pe.set_ypad (1);
78         pe.set_xpad (2);
79         pe.set_corner_radius (0);
80         pe.set_draw_background (bg);
81
82         selection_title.set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("Selection")));
83         punch_title.set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("Punch")));
84
85         set_homogeneous (false);
86         set_spacings (0);
87         set_border_width (2);
88         set_col_spacings (2);
89
90         /* a bit more spacing between the two "sides" */
91         set_col_spacing (1, 10);
92
93         Gtk::Label* l;
94
95         attach (selection_title, 0, 2, 0, 1);
96         l = manage (new Label);
97         l->set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("Start")));
98         attach (*l, 0, 1, 1, 2);
99         attach (*selection_start, 1, 2, 1, 2);
100         l = manage (new Label);
101         l->set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("End")));
102         attach (*l, 0, 1, 2, 3);
103         attach (*selection_end, 1, 2, 2, 3);
104         l = manage (new Label);
105         l->set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("Length")));
106         attach (*l, 0, 1, 3, 4);
107         attach (*selection_length, 1, 2, 3, 4);
108
109         attach (punch_title, 2, 4, 0, 1);
110         l = manage (new Label);
111         l->set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("Start")));
112         attach (*l, 2, 3, 1, 2);
113         attach (*punch_start, 3, 4, 1, 2);
114         l = manage (new Label);
115         l->set_markup (string_compose ("<span size=\"x-small\">%1</span>", _("End")));
116         attach (*l, 2, 3, 2, 3);
117         attach (*punch_end, 3, 4, 2, 3);
118
119         show_all ();
120
121         selection_start->mode_changed.connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::sync_selection_mode), selection_start));
122         selection_end->mode_changed.connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::sync_selection_mode), selection_start));
123         selection_length->mode_changed.connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::sync_selection_mode), selection_start));
124
125         punch_start->mode_changed.connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::sync_punch_mode), punch_start));
126         punch_end->mode_changed.connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::sync_punch_mode), punch_end));
127
128         selection_start->signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::clock_button_release_event), selection_start), true);
129         selection_end->signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::clock_button_release_event), selection_end), true);
130
131         punch_start->signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::clock_button_release_event), punch_start), true);
132         punch_end->signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &TimeInfoBox::clock_button_release_event), punch_end), true);
133
134         Editor::instance().get_selection().TimeChanged.connect (sigc::mem_fun (*this, &TimeInfoBox::selection_changed));
135 }
136
137 TimeInfoBox::~TimeInfoBox ()
138 {
139         delete selection_length;
140         delete selection_end;
141         delete selection_start;
142         
143         delete punch_start;
144         delete punch_end;
145 }
146
147 bool
148 TimeInfoBox::clock_button_release_event (GdkEventButton* ev, AudioClock* src)
149 {
150         if (!_session) {
151                 return false;
152         }
153
154         if (ev->button == 1) {
155                 _session->request_locate (src->current_time ());
156                 return true;
157         }
158
159         return false;
160 }
161
162 void
163 TimeInfoBox::sync_selection_mode (AudioClock* src)
164 {
165         if (!syncing_selection) {
166                 syncing_selection = true;
167                 selection_start->set_mode (src->mode());
168                 selection_end->set_mode (src->mode());
169                 selection_length->set_mode (src->mode());
170                 syncing_selection = false;
171         }
172 }
173
174 void
175 TimeInfoBox::sync_punch_mode (AudioClock* src)
176 {
177         if (!syncing_punch) {
178                 syncing_punch = true;
179                 punch_start->set_mode (src->mode());
180                 punch_end->set_mode (src->mode());
181                 syncing_punch = false;
182         }
183 }
184         
185
186 void
187 TimeInfoBox::set_session (Session* s)
188 {
189         SessionHandlePtr::set_session (s);
190
191         selection_start->set_session (s);
192         selection_end->set_session (s);
193         selection_length->set_session (s);
194
195         punch_start->set_session (s);
196         punch_end->set_session (s);
197
198         if (s) {
199                 Location* punch = s->locations()->auto_punch_location ();
200                 
201                 if (punch) {
202                         watch_punch (punch);
203                 }
204                 
205                 _session->auto_punch_location_changed.connect (_session_connections, MISSING_INVALIDATOR, 
206                                                                boost::bind (&TimeInfoBox::punch_location_changed, this, _1), gui_context());
207         }
208 }
209
210 void
211 TimeInfoBox::selection_changed ()
212 {
213         selection_start->set (Editor::instance().get_selection().time.start());
214         selection_end->set (Editor::instance().get_selection().time.end_frame());
215         selection_length->set (Editor::instance().get_selection().time.length());
216 }
217
218 void
219 TimeInfoBox::punch_location_changed (Location* loc)
220 {
221         if (loc) {
222                 watch_punch (loc);
223         } 
224 }
225
226 void
227 TimeInfoBox::watch_punch (Location* punch)
228 {
229         punch_connections.drop_connections ();
230
231         punch->start_changed.connect (punch_connections, MISSING_INVALIDATOR, boost::bind (&TimeInfoBox::punch_changed, this, _1), gui_context());
232         punch->end_changed.connect (punch_connections, MISSING_INVALIDATOR, boost::bind (&TimeInfoBox::punch_changed, this, _1), gui_context());
233
234         punch_changed (punch);
235 }
236
237 void
238 TimeInfoBox::punch_changed (Location* loc)
239 {
240         if (!loc) {
241                 punch_start->set (99999999);
242                 punch_end->set (999999999);
243                 return;
244         }
245
246         punch_start->set (loc->start());
247         punch_end->set (loc->end());
248 }       
249
250 bool
251 TimeInfoBox::on_expose_event (GdkEventExpose* ev)
252 {
253         {
254                 int x, y;
255                 Gtk::Widget* window_parent;
256                 Glib::RefPtr<Gdk::Window> win = Gtkmm2ext::window_to_draw_on (*this, &window_parent);
257
258                 if (win) {
259                 
260                         Cairo::RefPtr<Cairo::Context> context = win->create_cairo_context();
261
262 #if 0                   
263                         translate_coordinates (*window_parent, ev->area.x, ev->area.y, x, y);
264                         context->rectangle (x, y, ev->area.width, ev->area.height);
265                         context->clip ();
266 #endif
267                         translate_coordinates (*window_parent, 0, 0, x, y);
268                         context->set_source_rgba (0.149, 0.149, 0.149, 1.0);
269                         Gtkmm2ext::rounded_rectangle (context, x, y, get_allocation().get_width(), get_allocation().get_height(), 5);
270                         context->fill ();
271                 }
272         }
273
274         Table::on_expose_event (ev);
275
276         return false;
277 }