slightly improved location-UI layout
[ardour.git] / gtk2_ardour / location_ui.h
1 /*
2     Copyright (C) 1999-2002 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 __ardour_location_ui_h__
21 #define __ardour_location_ui_h__
22
23 #include <gtkmm/box.h>
24 #include <gtkmm/checkbutton.h>
25 #include <gtkmm/button.h>
26 #include <gtkmm/table.h>
27 #include <gtkmm/entry.h>
28 #include <gtkmm/label.h>
29 #include <gtkmm/paned.h>
30 #include <gtkmm/scrolledwindow.h>
31
32 #include "pbd/signals.h"
33
34 #include "ardour/location.h"
35 #include "ardour/session_handle.h"
36
37 #include "ardour_button.h"
38 #include "ardour_window.h"
39 #include "audio_clock.h"
40
41 namespace ARDOUR {
42         class Location;
43 }
44
45 class ClockGroup;
46
47 class LocationEditRow  : public Gtk::HBox, public ARDOUR::SessionHandlePtr
48 {
49   public:
50         LocationEditRow (ARDOUR::Session *sess=0, ARDOUR::Location *loc=0, int32_t num=-1);
51         virtual ~LocationEditRow();
52
53         void set_location (ARDOUR::Location*);
54         ARDOUR::Location * get_location() { return location; }
55
56         void set_session (ARDOUR::Session *);
57
58         void set_number (int);
59         void focus_name();
60         void set_clock_group (ClockGroup&);
61         void unset_clock_group () { _clock_group = 0; }
62
63         sigc::signal<void,ARDOUR::Location*> remove_requested;
64         sigc::signal<void> redraw_ranges;
65
66   protected:
67
68         enum LocationPart {
69                 LocStart,
70                 LocEnd,
71                 LocLength
72         };
73
74         ARDOUR::Location *location;
75
76         Gtk::Table    item_table;
77
78         Gtk::Entry    name_entry;
79         Gtk::Label    name_label;
80         Gtk::Label    number_label;
81
82         Gtk::HBox     start_hbox;
83         AudioClock    start_clock;
84         ArdourButton  start_to_playhead_button;
85         ArdourButton  locate_to_start_button;
86
87         Gtk::HBox     end_hbox;
88         AudioClock    end_clock;
89         ArdourButton  end_to_playhead_button;
90         ArdourButton  locate_to_end_button;
91
92         AudioClock    length_clock;
93         Gtk::CheckButton cd_check_button;
94         Gtk::CheckButton hide_check_button;
95         Gtk::CheckButton lock_check_button;
96         Gtk::CheckButton glue_check_button;
97
98         ArdourButton   remove_button;
99
100         Gtk::HBox     cd_track_details_hbox;
101         Gtk::Entry    isrc_entry;
102         Gtk::Label    isrc_label;
103
104
105         Gtk::Label    performer_label;
106         Gtk::Entry    performer_entry;
107         Gtk::Label    composer_label;
108         Gtk::Entry    composer_entry;
109         Gtk::CheckButton   scms_check_button;
110         Gtk::Label         scms_label;
111         Gtk::CheckButton   preemph_check_button;
112         Gtk::Label         preemph_label;
113         ClockGroup* _clock_group;
114
115         guint32 i_am_the_modifier;
116         int   number;
117
118         void name_entry_changed ();
119         void isrc_entry_changed ();
120         void performer_entry_changed ();
121         void composer_entry_changed ();
122
123         void to_playhead_button_pressed (LocationPart part);
124         void locate_button_pressed (LocationPart part);
125
126         void clock_changed (LocationPart part);
127         bool locate_to_clock (GdkEventButton*, AudioClock*);
128
129         void cd_toggled ();
130         void hide_toggled ();
131         void lock_toggled ();
132         void glue_toggled ();
133         void remove_button_pressed ();
134
135         void scms_toggled ();
136         void preemph_toggled ();
137
138         void end_changed ();
139         void start_changed ();
140         void name_changed ();
141         void location_changed ();
142         void flags_changed ();
143         void lock_changed ();
144         void position_lock_style_changed ();
145
146         void set_clock_editable_status ();
147         void show_cd_track_details ();
148
149         PBD::ScopedConnectionList connections;
150 };
151
152 class LocationUI : public Gtk::HBox, public ARDOUR::SessionHandlePtr
153 {
154   public:
155         LocationUI ();
156         ~LocationUI ();
157
158         void set_session (ARDOUR::Session *);
159         void set_clock_mode (AudioClock::Mode);
160
161         void add_new_location();
162         void add_new_range();
163
164         void refresh_location_list ();
165
166         XMLNode & get_state () const;
167
168   private:
169         /** set to the location that has just been created with the LocationUI `add' button
170             (if Config->get_name_new_markers() is true); if it is non-0, the name entry of
171             the location is given the focus by location_added().
172         */
173         ARDOUR::Location *newest_location;
174
175         void session_going_away ();
176
177         LocationEditRow      loop_edit_row;
178         LocationEditRow      punch_edit_row;
179         Gtk::VBox loop_punch_box;
180
181         Gtk::VPaned loc_range_panes;
182
183         Gtk::VBox  loc_frame_box;
184         Gtk::Button add_location_button;
185         Gtk::ScrolledWindow  location_rows_scroller;
186         Gtk::VBox            location_rows;
187
188         Gtk::VBox  range_frame_box;
189         Gtk::Button add_range_button;
190         Gtk::ScrolledWindow  range_rows_scroller;
191         Gtk::VBox            range_rows;
192
193         /* When any location changes it start
194            or end points, it sends a signal that is caught
195            by one of these functions
196         */
197
198         void location_remove_requested (ARDOUR::Location *);
199
200         void location_redraw_ranges ();
201
202         gint do_location_remove (ARDOUR::Location *);
203
204         guint32 i_am_the_modifier;
205
206         void location_removed (ARDOUR::Location *);
207         void location_added (ARDOUR::Location *);
208         void map_locations (const ARDOUR::Locations::LocationList&);
209
210         ClockGroup* _clock_group;
211         AudioClock::Mode clock_mode_from_session_instant_xml () const;
212 };
213
214 class LocationUIWindow : public ArdourWindow
215 {
216   public:
217         LocationUIWindow ();
218         ~LocationUIWindow ();
219
220         void on_map ();
221         void set_session (ARDOUR::Session *);
222
223         LocationUI& ui() { return _ui; }
224
225   protected:
226         LocationUI _ui;
227         bool on_delete_event (GdkEventAny*);
228         void session_going_away();
229 };
230
231 #endif // __ardour_location_ui_h__