OSC: Add preset loading to OSC GUI
[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/eventbox.h>
28 #include <gtkmm/arrow.h>
29 #include <gtkmm/togglebutton.h>
30 #include <gtkmm/button.h>
31
32 #include <gtkmm2ext/click_box.h>
33 #include <gtkmm2ext/slider_controller.h>
34
35 #include "ardour/session_handle.h"
36
37 #include "enums.h"
38
39 class Panner2d;
40 class Panner2dWindow;
41 class StereoPanner;
42 class MonoPanner;
43
44 namespace ARDOUR {
45         class Session;
46         class Panner;
47         class PannerShell;
48         class Delivery;
49         class AutomationControl;
50 }
51
52 namespace Gtkmm2ext {
53         class FastMeter;
54 }
55
56 namespace Gtk {
57         class Menu;
58         class Menuitem;
59 }
60
61 class PannerUI : public Gtk::HBox, public ARDOUR::SessionHandlePtr
62 {
63   public:
64         PannerUI (ARDOUR::Session*);
65         ~PannerUI ();
66
67         virtual void set_panner (boost::shared_ptr<ARDOUR::PannerShell>, boost::shared_ptr<ARDOUR::Panner>);
68
69         void panshell_changed ();
70
71         void update_pan_sensitive ();
72         void update_gain_sensitive ();
73
74         void set_width (Width);
75         void setup_pan ();
76         void set_available_panners(std::map<std::string,std::string>);
77         void set_send_drawing_mode (bool);
78
79         void effective_pan_display ();
80
81         void set_meter_strip_name (std::string name);
82
83         void on_size_allocate (Gtk::Allocation &);
84
85         static void setup_slider_pix ();
86
87   private:
88         friend class MixerStrip;
89         friend class SendUI;
90
91         boost::shared_ptr<ARDOUR::PannerShell> _panshell;
92         boost::shared_ptr<ARDOUR::Panner> _panner;
93         PBD::ScopedConnectionList connections;
94         PBD::ScopedConnectionList _pan_control_connections;
95
96         bool ignore_toggle;
97         bool in_pan_update;
98         int _current_nouts;
99         int _current_nins;
100         std::string _current_uri;
101         bool _send_mode;
102
103         Panner2d*       twod_panner; ///< 2D panner, or 0
104         Panner2dWindow* big_window;
105
106         Gtk::VBox           pan_bar_packer;
107         Gtk::VBox           pan_vbox;
108         Gtk::VBox           poswidth_box;
109         Width              _width;
110
111         StereoPanner*  _stereo_panner;
112         MonoPanner*    _mono_panner;
113
114         bool _ignore_width_change;
115         bool _ignore_position_change;
116         void width_adjusted ();
117         void show_width ();
118         void position_adjusted ();
119         void show_position ();
120
121         Gtk::Menu* pan_astate_menu;
122         Gtk::Menu* pan_astyle_menu;
123
124         Gtk::Button pan_automation_style_button;
125         Gtk::ToggleButton pan_automation_state_button;
126
127         void pan_value_changed (uint32_t which);
128         void build_astate_menu ();
129         void build_astyle_menu ();
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*);
140
141         Gtk::Menu* pan_menu;
142         Gtk::CheckMenuItem* bypass_menu_item;
143         void build_pan_menu ();
144         void pan_reset ();
145         void pan_bypass_toggle ();
146         void pan_edit ();
147         void pan_set_custom_type (std::string type);
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         void start_touch (boost::weak_ptr<ARDOUR::AutomationControl>);
164         void stop_touch (boost::weak_ptr<ARDOUR::AutomationControl>);
165
166         std::map<std::string,std::string> _panner_list;
167         bool _suspend_menu_callbacks;
168 };
169
170 #endif /* __ardour_gtk_panner_ui_h__ */
171