2005-09-25 14:42:24 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2004 Paul Davis
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_gtk_panner_ui_h__
|
|
|
|
#define __ardour_gtk_panner_ui_h__
|
|
|
|
|
|
|
|
#include <vector>
|
2005-11-28 23:41:15 -05:00
|
|
|
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
#include <gtkmm/adjustment.h>
|
|
|
|
#include <gtkmm/eventbox.h>
|
|
|
|
#include <gtkmm/arrow.h>
|
|
|
|
#include <gtkmm/togglebutton.h>
|
|
|
|
#include <gtkmm/button.h>
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/click_box.h>
|
2006-07-07 19:51:30 -04:00
|
|
|
#include <gtkmm2ext/slider_controller.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
#include "ardour/session_handle.h"
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "enums.h"
|
|
|
|
|
|
|
|
class Panner2d;
|
2008-12-13 10:18:32 -05:00
|
|
|
class Panner2dWindow;
|
2010-11-30 15:22:43 -05:00
|
|
|
class StereoPanner;
|
2011-01-07 12:36:01 -05:00
|
|
|
class MonoPanner;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
2009-06-09 16:21:19 -04:00
|
|
|
class Panner;
|
2011-02-22 13:44:22 -05:00
|
|
|
class PannerShell;
|
2009-06-09 16:21:19 -04:00
|
|
|
class Delivery;
|
2010-08-19 17:09:40 -04:00
|
|
|
class AutomationControl;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2010-08-19 17:09:40 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
namespace Gtkmm2ext {
|
2005-09-25 14:42:24 -04:00
|
|
|
class FastMeter;
|
|
|
|
}
|
|
|
|
|
2005-11-28 23:41:15 -05:00
|
|
|
namespace Gtk {
|
|
|
|
class Menu;
|
|
|
|
class Menuitem;
|
|
|
|
}
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
class PannerUI : public Gtk::HBox, public ARDOUR::SessionHandlePtr
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
2009-12-17 13:24:23 -05:00
|
|
|
PannerUI (ARDOUR::Session*);
|
2005-09-25 14:42:24 -04:00
|
|
|
~PannerUI ();
|
|
|
|
|
2011-02-22 13:44:22 -05:00
|
|
|
virtual void set_panner (boost::shared_ptr<ARDOUR::PannerShell>, boost::shared_ptr<ARDOUR::Panner>);
|
2008-12-08 11:07:28 -05:00
|
|
|
|
2011-02-22 13:44:22 -05:00
|
|
|
void panshell_changed ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void update_pan_sensitive ();
|
|
|
|
void update_gain_sensitive ();
|
|
|
|
|
|
|
|
void set_width (Width);
|
|
|
|
void setup_pan ();
|
|
|
|
|
|
|
|
void effective_pan_display ();
|
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
void set_meter_strip_name (std::string name);
|
2008-09-10 11:03:30 -04:00
|
|
|
boost::shared_ptr<PBD::Controllable> get_controllable();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-11-29 22:10:01 -05:00
|
|
|
void on_size_allocate (Gtk::Allocation &);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-11-29 22:10:01 -05:00
|
|
|
static void setup_slider_pix ();
|
2009-10-19 10:46:15 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
private:
|
2006-05-19 13:29:05 -04:00
|
|
|
friend class MixerStrip;
|
2008-04-11 10:06:50 -04:00
|
|
|
|
2011-02-22 13:44:22 -05:00
|
|
|
boost::shared_ptr<ARDOUR::PannerShell> _panshell;
|
2009-06-09 16:21:19 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Panner> _panner;
|
2009-12-17 13:24:23 -05:00
|
|
|
PBD::ScopedConnectionList connections;
|
2010-05-01 21:33:25 -04:00
|
|
|
PBD::ScopedConnectionList _pan_control_connections;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
bool ignore_toggle;
|
|
|
|
bool in_pan_update;
|
2009-08-29 20:40:48 -04:00
|
|
|
int _current_nouts;
|
2011-01-26 20:31:03 -05:00
|
|
|
int _current_nins;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-12-20 21:52:27 -05:00
|
|
|
static const int pan_bar_height;
|
|
|
|
|
2010-04-17 18:51:22 -04:00
|
|
|
Panner2d* twod_panner; ///< 2D panner, or 0
|
2008-12-13 10:18:32 -05:00
|
|
|
Panner2dWindow* big_window;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
Gtk::VBox pan_bar_packer;
|
|
|
|
Gtk::VBox pan_vbox;
|
2010-11-29 22:10:01 -05:00
|
|
|
Gtk::VBox poswidth_box;
|
2005-09-25 14:42:24 -04:00
|
|
|
Width _width;
|
2006-05-23 15:54:52 -04:00
|
|
|
|
2010-11-30 15:22:43 -05:00
|
|
|
StereoPanner* _stereo_panner;
|
2011-10-29 08:57:07 -04:00
|
|
|
MonoPanner* _mono_panner;
|
|
|
|
|
2010-11-29 22:10:01 -05:00
|
|
|
bool _ignore_width_change;
|
|
|
|
bool _ignore_position_change;
|
|
|
|
void width_adjusted ();
|
|
|
|
void show_width ();
|
|
|
|
void position_adjusted ();
|
|
|
|
void show_position ();
|
2010-12-01 18:29:44 -05:00
|
|
|
|
2008-12-08 11:07:28 -05:00
|
|
|
Gtk::Menu* pan_astate_menu;
|
|
|
|
Gtk::Menu* pan_astyle_menu;
|
2006-05-19 13:29:05 -04:00
|
|
|
|
|
|
|
Gtk::Button pan_automation_style_button;
|
|
|
|
Gtk::ToggleButton pan_automation_state_button;
|
|
|
|
|
2011-01-07 12:36:01 -05:00
|
|
|
std::vector<MonoPanner*> pan_bars;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void pan_value_changed (uint32_t which);
|
2008-12-08 11:07:28 -05:00
|
|
|
void build_astate_menu ();
|
|
|
|
void build_astyle_menu ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void hide_pans ();
|
|
|
|
|
|
|
|
void panner_moved (int which);
|
|
|
|
void panner_bypass_toggled ();
|
|
|
|
|
|
|
|
gint start_pan_touch (GdkEventButton*);
|
|
|
|
gint end_pan_touch (GdkEventButton*);
|
|
|
|
|
2011-01-26 20:31:03 -05:00
|
|
|
bool pan_button_event (GdkEventButton*);
|
2006-05-23 15:54:52 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
Gtk::Menu* pan_menu;
|
|
|
|
Gtk::CheckMenuItem* bypass_menu_item;
|
2011-01-26 20:31:03 -05:00
|
|
|
void build_pan_menu ();
|
|
|
|
void pan_reset ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void pan_bypass_toggle ();
|
2006-05-19 13:29:05 -04:00
|
|
|
|
|
|
|
void pan_automation_state_changed();
|
|
|
|
void pan_automation_style_changed();
|
|
|
|
gint pan_automation_style_button_event (GdkEventButton *);
|
|
|
|
gint pan_automation_state_button_event (GdkEventButton *);
|
|
|
|
sigc::connection pan_watching;
|
|
|
|
|
|
|
|
std::string astate_string (ARDOUR::AutoState);
|
|
|
|
std::string short_astate_string (ARDOUR::AutoState);
|
|
|
|
std::string _astate_string (ARDOUR::AutoState, bool);
|
|
|
|
|
|
|
|
std::string astyle_string (ARDOUR::AutoStyle);
|
|
|
|
std::string short_astyle_string (ARDOUR::AutoStyle);
|
|
|
|
std::string _astyle_string (ARDOUR::AutoStyle, bool);
|
2010-08-19 17:09:40 -04:00
|
|
|
|
|
|
|
void start_touch (boost::weak_ptr<ARDOUR::AutomationControl>);
|
|
|
|
void stop_touch (boost::weak_ptr<ARDOUR::AutomationControl>);
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_panner_ui_h__ */
|
|
|
|
|