remove fade nonsense from region popup editor
[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&, boost::shared_ptr<ARDOUR::AudioRegion>, AudioRegionView& rv);
57         ~AudioRegionEditor ();
58
59   private:
60         boost::shared_ptr<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::HSeparator sep3;
111         Gtk::VSeparator sep1;
112         Gtk::VSeparator sep2;
113
114         void region_changed (ARDOUR::Change);
115         void bounds_changed (ARDOUR::Change);
116         void name_changed ();
117         void opacity_changed ();
118         void mute_changed ();
119         void envelope_active_changed ();
120         void lock_changed ();
121         void layer_changed ();
122
123         void audition_state_changed (bool);
124
125         void activation ();
126
127         void name_entry_changed ();
128         void start_clock_changed ();
129         void end_clock_changed ();
130         void length_clock_changed ();
131
132         gint envelope_active_button_press (GdkEventButton *);
133         gint envelope_active_button_release (GdkEventButton *);
134
135         void audition_button_toggled ();
136         void envelope_view_button_toggled ();
137         void lock_button_clicked ();
138         void mute_button_clicked ();
139         void opaque_button_clicked ();
140         void raise_button_clicked ();
141         void lower_button_clicked ();
142
143         gint bpressed (GdkEventButton* ev, Gtk::SpinButton* but, void (AudioRegionEditor::*pmf)());
144         gint breleased (GdkEventButton* ev, Gtk::SpinButton* but, void (AudioRegionEditor::*pmf)());
145
146         bool spin_arrow_grab;
147 };
148
149 #endif /* __gtk_ardour_audio_region_edit_h__ */