Update locations GUI more efficiently by avoiding a rebuild when a location is remove...
[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_dialog.h"
38 #include "audio_clock.h"
39
40 namespace ARDOUR {
41         class LocationStack;
42         class Location;
43 }
44
45 class LocationEditRow  : public Gtk::HBox, public ARDOUR::SessionHandlePtr
46 {
47   public:
48         LocationEditRow (ARDOUR::Session *sess=0, ARDOUR::Location *loc=0, int32_t num=-1);
49         virtual ~LocationEditRow();
50
51         void set_location (ARDOUR::Location*);
52         ARDOUR::Location * get_location() { return location; }
53
54         void set_session (ARDOUR::Session *);
55
56         void set_number (int);
57         void focus_name();
58
59         sigc::signal<void,ARDOUR::Location*> remove_requested;
60         sigc::signal<void> redraw_ranges;
61
62   protected:
63
64         enum LocationPart {
65                 LocStart,
66                 LocEnd,
67                 LocLength
68         };
69
70         ARDOUR::Location *location;
71
72         Gtk::Table    item_table;
73
74         Gtk::Entry    name_entry;
75         Gtk::Label    name_label;
76         Gtk::Label    number_label;
77
78         Gtk::HBox     start_hbox;
79         Gtk::Button   start_go_button;
80         AudioClock    start_clock;
81
82         Gtk::HBox     end_hbox;
83         Gtk::Button   end_go_button;
84         AudioClock    end_clock;
85
86         AudioClock    length_clock;
87         Gtk::CheckButton cd_check_button;
88         Gtk::CheckButton hide_check_button;
89
90         Gtk::Button   remove_button;
91
92         Gtk::HBox     cd_track_details_hbox;
93         Gtk::Entry    isrc_entry;
94         Gtk::Label    isrc_label;
95
96
97         Gtk::Label    performer_label;
98         Gtk::Entry  performer_entry;
99         Gtk::Label    composer_label;
100         Gtk::Entry  composer_entry;
101         Gtk::CheckButton   scms_check_button;
102         Gtk::CheckButton   preemph_check_button;
103
104         guint32 i_am_the_modifier;
105         int   number;
106
107         void name_entry_changed ();
108         void isrc_entry_changed ();
109         void performer_entry_changed ();
110         void composer_entry_changed ();
111
112         void set_button_pressed (LocationPart part);
113         void go_button_pressed (LocationPart part);
114
115         void clock_changed (LocationPart part);
116         void change_aborted (LocationPart part);
117
118         void cd_toggled ();
119         void hide_toggled ();
120         void remove_button_pressed ();
121
122         void scms_toggled ();
123         void preemph_toggled ();
124
125         void end_changed (ARDOUR::Location *);
126         void start_changed (ARDOUR::Location *);
127         void name_changed (ARDOUR::Location *);
128         void location_changed (ARDOUR::Location *);
129         void flags_changed (ARDOUR::Location *, void *src);
130
131         PBD::ScopedConnectionList connections;
132 };
133
134 class LocationUI : public Gtk::HBox, public ARDOUR::SessionHandlePtr
135 {
136   public:
137         LocationUI ();
138         ~LocationUI ();
139         
140         void set_session (ARDOUR::Session *);
141
142         void add_new_location();
143         void add_new_range();
144
145         void refresh_location_list ();
146
147   private:
148         ARDOUR::LocationStack* locations;
149         ARDOUR::Location *newest_location;
150
151         void session_going_away ();
152
153         Gtk::VBox  location_vpacker;
154
155         LocationEditRow      loop_edit_row;
156         LocationEditRow      punch_edit_row;
157         Gtk::VBox loop_punch_box;
158         Gtk::ScrolledWindow loop_punch_scroller;
159
160         Gtk::VPaned loc_range_panes;
161
162         Gtk::Frame loc_frame;
163         Gtk::VBox  loc_frame_box;
164         Gtk::Button add_location_button;
165         Gtk::ScrolledWindow  location_rows_scroller;
166         Gtk::VBox            location_rows;
167
168         Gtk::Frame range_frame;
169         Gtk::VBox  range_frame_box;
170         Gtk::Button add_range_button;
171         Gtk::ScrolledWindow  range_rows_scroller;
172         Gtk::VBox            range_rows;
173
174         /* When any location changes it start
175            or end points, it sends a signal that is caught
176            by one of these functions
177         */
178
179         void location_remove_requested (ARDOUR::Location *);
180
181         void location_redraw_ranges ();
182
183         gint do_location_remove (ARDOUR::Location *);
184
185         guint32 i_am_the_modifier;
186
187         void location_removed (ARDOUR::Location *);
188         void location_added (ARDOUR::Location *);
189         void locations_changed (ARDOUR::Locations::Change);
190         void map_locations (ARDOUR::Locations::LocationList&);
191 };
192
193 class LocationUIWindow : public ArdourDialog
194 {
195   public:
196         LocationUIWindow ();
197         ~LocationUIWindow ();
198
199         void on_show();
200         void set_session (ARDOUR::Session *);
201
202         LocationUI& ui() { return _ui; }
203
204   protected:
205         LocationUI _ui;
206         bool on_delete_event (GdkEventAny*);
207         void session_going_away();
208 };
209
210 #endif // __ardour_location_ui_h__