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