DSP-Load Window: subscribe to newly added routes
[ardour.git] / gtk2_ardour / time_info_box.h
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 #ifndef __time_info_box_h__
21 #define __time_info_box_h__
22
23 #include <map>
24
25 #include <gtkmm/box.h>
26 #include <gtkmm/label.h>
27 #include <gtkmm/table.h>
28
29 #include "ardour/ardour.h"
30 #include "ardour/session_handle.h"
31
32 #include "gtkmm2ext/cairo_packer.h"
33
34 namespace ARDOUR {
35         class Session;
36         class Location;
37 }
38
39 class AudioClock;
40
41 class TimeInfoBox : public CairoHPacker, public ARDOUR::SessionHandlePtr
42 {
43 public:
44         TimeInfoBox (std::string state_node_name, bool with_punch);
45         ~TimeInfoBox ();
46
47         void set_session (ARDOUR::Session*);
48
49 private:
50         Gtk::Table table;
51
52         AudioClock* selection_start;
53         AudioClock* selection_end;
54         AudioClock* selection_length;
55
56         AudioClock* punch_start;
57         AudioClock* punch_end;
58
59         Gtk::Label selection_title;
60         Gtk::Label punch_title;
61         bool syncing_selection;
62         bool syncing_punch;
63         bool with_punch_clock;
64
65         void punch_changed (ARDOUR::Location*);
66         void punch_location_changed (ARDOUR::Location*);
67         void watch_punch (ARDOUR::Location*);
68         PBD::ScopedConnectionList punch_connections;
69         PBD::ScopedConnectionList editor_connections;
70         PBD::ScopedConnectionList region_property_connections;
71
72         void selection_changed ();
73         void region_selection_changed ();
74
75         void sync_selection_mode (AudioClock*);
76         void sync_punch_mode (AudioClock*);
77
78         bool clock_button_release_event (GdkEventButton* ev, AudioClock* src);
79         void track_mouse_mode ();
80 };
81
82 #endif /* __time_info_box_h__ */