Split pretty much the entire GUI in 3. Audio and Midi "editor strips" and
[ardour.git] / gtk2_ardour / audio_region_editor.h
1 /*
2     Copyright (C) 2001 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 __gtk_ardour_audio_region_edit_h__
22 #define __gtk_ardour_audio_region_edit_h__
23
24 #include <map>
25
26 #include <gtkmm/label.h>
27 #include <gtkmm/entry.h>
28 #include <gtkmm/box.h>
29 #include <gtkmm/togglebutton.h>
30 #include <gtkmm/button.h>
31 #include <gtkmm/arrow.h>
32 #include <gtkmm/frame.h>
33 #include <gtkmm/table.h>
34 #include <gtkmm/alignment.h>
35 #include <gtkmm/adjustment.h>
36 #include <gtkmm/separator.h>
37 #include <gtkmm/spinbutton.h>
38
39 #include <libgnomecanvas/libgnomecanvas.h>
40 #include <sigc++/signal.h>
41
42 #include "audio_clock.h"
43 #include "ardour_dialog.h"
44 #include "region_editor.h"
45
46 namespace ARDOUR {
47         class AudioRegion;
48         class Session;
49 }
50
51 class AudioRegionView;
52
53 class AudioRegionEditor : public RegionEditor
54 {
55   public:
56         AudioRegionEditor (ARDOUR::Session&, ARDOUR::AudioRegion&, AudioRegionView& rv);
57         ~AudioRegionEditor ();
58
59   private:
60         ARDOUR::AudioRegion& _region;
61         AudioRegionView& _region_view;
62
63         void connect_editor_events ();
64
65         Gtk::Label name_label;
66         Gtk::Entry name_entry;
67         Gtk::HBox  name_hbox;
68
69         Gtk::HBox  top_row_hbox;
70         Gtk::HBox  top_row_button_hbox;
71
72         Gtk::ToggleButton lock_button;
73         Gtk::ToggleButton mute_button;
74         Gtk::ToggleButton opaque_button;
75         Gtk::ToggleButton envelope_active_button;
76         Gtk::ToggleButton envelope_view_button;
77
78         Gtk::Button       raise_button;
79         Gtk::Arrow        raise_arrow;
80         Gtk::Button       lower_button;
81         Gtk::Arrow        lower_arrow;
82         Gtk::Frame        layer_frame;
83         Gtk::Label        layer_value_label;
84         Gtk::Label        layer_label;
85         Gtk::HBox         layer_hbox;
86
87         Gtk::ToggleButton  audition_button;
88
89         Gtk::HBox  lower_hbox;
90         
91         Gtk::Table time_table;
92
93         Gtk::Label start_label;
94         Gtk::Label end_label;
95         Gtk::Label length_label;
96         Gtk::Alignment start_alignment;
97         Gtk::Alignment end_alignment;
98         Gtk::Alignment length_alignment;
99
100         AudioClock start_clock;
101         AudioClock end_clock;
102         AudioClock length_clock;
103         AudioClock sync_offset_clock;
104
105         Gtk::Table  envelope_loop_table;
106         Gtk::Button loop_button;
107         Gtk::Label  loop_label;
108         Gtk::Label  envelope_label;
109
110         Gtk::Table fade_in_table;
111         Gtk::Label fade_in_label;
112         Gtk::Alignment fade_in_label_align;
113         Gtk::Label fade_in_active_button_label;
114         Gtk::ToggleButton fade_in_active_button;
115         Gtk::Label fade_in_length_label;
116
117         Gtk::Adjustment fade_in_length_adjustment;
118         Gtk::SpinButton fade_in_length_spinner;
119
120         Gtk::Table fade_out_table;
121         Gtk::Label fade_out_label;
122         Gtk::Alignment fade_out_label_align;
123         Gtk::Label fade_out_active_button_label;
124         Gtk::ToggleButton fade_out_active_button;
125         Gtk::Label fade_out_length_label;
126
127         Gtk::Adjustment fade_out_length_adjustment;
128         Gtk::SpinButton fade_out_length_spinner;
129
130         Gtk::HSeparator sep3;
131         Gtk::VSeparator sep1;
132         Gtk::VSeparator sep2;
133
134         void region_changed (ARDOUR::Change);
135         void bounds_changed (ARDOUR::Change);
136         void name_changed ();
137         void opacity_changed ();
138         void mute_changed ();
139         void envelope_active_changed ();
140         void lock_changed ();
141         void layer_changed ();
142
143         void fade_in_length_adjustment_changed ();
144         void fade_out_length_adjustment_changed ();
145         void fade_in_changed ();
146         void fade_out_changed ();
147         void audition_state_changed (bool);
148
149         void activation ();
150
151         void name_entry_changed ();
152         void start_clock_changed ();
153         void end_clock_changed ();
154         void length_clock_changed ();
155
156         gint envelope_active_button_press (GdkEventButton *);
157         gint envelope_active_button_release (GdkEventButton *);
158
159         void audition_button_toggled ();
160         void envelope_view_button_toggled ();
161         void lock_button_clicked ();
162         void mute_button_clicked ();
163         void opaque_button_clicked ();
164         void raise_button_clicked ();
165         void lower_button_clicked ();
166
167         void fade_in_active_toggled ();
168         void fade_out_active_toggled ();
169         void fade_in_active_changed ();
170         void fade_out_active_changed ();
171
172         void fade_in_realized ();
173         void fade_out_realized ();
174
175         void start_editing_fade_in ();
176         void start_editing_fade_out ();
177         void stop_editing_fade_in ();
178         void stop_editing_fade_out ();
179
180         gint bpressed (GdkEventButton* ev, Gtk::SpinButton* but, void (AudioRegionEditor::*pmf)());
181         gint breleased (GdkEventButton* ev, Gtk::SpinButton* but, void (AudioRegionEditor::*pmf)());
182
183         bool spin_arrow_grab;
184 };
185
186 #endif /* __gtk_ardour_audio_region_edit_h__ */