3fb4632d13d0c366ae0d1c2d57078b05c5577274
[ardour.git] / gtk2_ardour / panner_ui.h
1 /*
2     Copyright (C) 2004 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_gtk_panner_ui_h__
21 #define __ardour_gtk_panner_ui_h__
22
23 #include <vector>
24
25 #include <gtkmm/box.h>
26 #include <gtkmm/adjustment.h>
27 #include <gtkmm/viewport.h>
28 #include <gtkmm/eventbox.h>
29 #include <gtkmm/arrow.h>
30 #include <gtkmm/togglebutton.h>
31 #include <gtkmm/button.h>
32
33 #include <gtkmm2ext/click_box.h>
34 #include <gtkmm2ext/slider_controller.h>
35
36 #include "enums.h"
37
38 class Panner2d;
39 class PannerBar;
40 class Panner2dWindow;
41
42 namespace ARDOUR {
43         class IO;
44         class Session;
45 }
46 namespace Gtkmm2ext {
47         class FastMeter;
48 }
49
50 namespace Gtk {
51         class Menu;
52         class Menuitem;
53 }
54
55 class PannerUI : public Gtk::HBox
56 {
57   public:
58         PannerUI (ARDOUR::Session&);
59         ~PannerUI ();
60
61         virtual void set_io (boost::shared_ptr<ARDOUR::IO>);
62
63         void pan_changed (void *);
64
65         void update_pan_sensitive ();
66         void update_gain_sensitive ();
67
68         void set_width (Width);
69         void setup_pan ();
70
71         void effective_pan_display ();
72
73         void set_meter_strip_name (string name);
74         boost::shared_ptr<PBD::Controllable> get_controllable();
75
76   private:
77         friend class MixerStrip;
78
79         boost::shared_ptr<ARDOUR::IO> _io;
80         ARDOUR::Session& _session;
81         std::vector<sigc::connection> connections;
82
83         bool ignore_toggle;
84         bool in_pan_update;
85
86         static const int pan_bar_height;
87
88         Panner2d*       panner;
89         Panner2dWindow* big_window;
90
91         Gtk::VBox           pan_bar_packer;
92         Gtk::Adjustment     hAdjustment;
93         Gtk::Adjustment     vAdjustment;
94         Gtk::Viewport       panning_viewport;
95         Gtk::EventBox       panning_up;
96         Gtk::Arrow          panning_up_arrow;
97         Gtk::EventBox       panning_down;
98         Gtk::Arrow          panning_down_arrow;
99         Gtk::VBox           pan_vbox;
100         Width              _width;
101
102         Gtk::ToggleButton   panning_link_button;
103         Gtk::Button         panning_link_direction_button;
104         Gtk::HBox           panning_link_box;
105
106         bool panning_link_button_press (GdkEventButton*);
107         bool panning_link_button_release (GdkEventButton*);
108
109         Gtk::Menu* pan_astate_menu;
110         Gtk::Menu* pan_astyle_menu;
111
112         Gtk::Button pan_automation_style_button;
113         Gtk::ToggleButton pan_automation_state_button;
114
115         void panning_link_direction_clicked ();
116
117         std::vector<Gtk::Adjustment*> pan_adjustments;
118         std::vector<PannerBar*> pan_bars;
119
120         void pan_adjustment_changed (uint32_t which);
121         void pan_value_changed (uint32_t which);
122         void pan_printer (char* buf, uint32_t, Gtk::Adjustment*);
123         void update_pan_bars (bool only_if_aplay);
124         void update_pan_linkage ();
125         void update_pan_state ();
126         void build_astate_menu ();
127         void build_astyle_menu ();
128
129         void panner_changed ();
130         
131         void hide_pans ();
132
133         void panner_moved (int which);
134         void panner_bypass_toggled ();
135
136         gint start_pan_touch (GdkEventButton*);
137         gint end_pan_touch (GdkEventButton*);
138
139         bool pan_button_event (GdkEventButton*, uint32_t which);
140
141         Gtk::Menu* pan_menu;
142         Gtk::CheckMenuItem* bypass_menu_item;
143         void build_pan_menu (uint32_t which);
144         void pan_mute (uint32_t which);
145         void pan_reset (uint32_t);
146         void pan_reset_all ();
147         void pan_bypass_toggle ();
148
149         void pan_automation_state_changed();
150         void pan_automation_style_changed();
151         gint pan_automation_style_button_event (GdkEventButton *);
152         gint pan_automation_state_button_event (GdkEventButton *);
153         sigc::connection pan_watching;
154
155         std::string astate_string (ARDOUR::AutoState);
156         std::string short_astate_string (ARDOUR::AutoState);
157         std::string _astate_string (ARDOUR::AutoState, bool);
158
159         std::string astyle_string (ARDOUR::AutoStyle);
160         std::string short_astyle_string (ARDOUR::AutoStyle);
161         std::string _astyle_string (ARDOUR::AutoStyle, bool);
162 };
163
164 #endif /* __ardour_gtk_panner_ui_h__ */
165