2005-09-25 18:42:24 +00: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-29 04:41:15 +00: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>
|
|
|
|
|
|
2009-12-17 18:24:23 +00:00
|
|
|
#include "ardour/session_handle.h"
|
|
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
#include "enums.h"
|
|
|
|
|
|
|
|
|
|
class Panner2d;
|
2008-12-13 15:18:32 +00:00
|
|
|
class Panner2dWindow;
|
2010-11-30 20:22:43 +00:00
|
|
|
class StereoPanner;
|
2011-01-07 17:36:01 +00:00
|
|
|
class MonoPanner;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
|
class Session;
|
2009-06-09 20:21:19 +00:00
|
|
|
class Panner;
|
2011-02-22 18:44:22 +00:00
|
|
|
class PannerShell;
|
2009-06-09 20:21:19 +00:00
|
|
|
class Delivery;
|
2017-07-01 18:42:24 +02:00
|
|
|
class AutomationControl;
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
2010-08-19 21:09:40 +00:00
|
|
|
|
2005-11-29 04:41:15 +00:00
|
|
|
namespace Gtk {
|
|
|
|
|
class Menu;
|
|
|
|
|
class Menuitem;
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-17 18:24:23 +00:00
|
|
|
class PannerUI : public Gtk::HBox, public ARDOUR::SessionHandlePtr
|
2005-09-25 18:42:24 +00:00
|
|
|
{
|
2017-07-01 21:11:14 +02:00
|
|
|
public:
|
2009-12-17 18:24:23 +00:00
|
|
|
PannerUI (ARDOUR::Session*);
|
2005-09-25 18:42:24 +00:00
|
|
|
~PannerUI ();
|
|
|
|
|
|
2011-02-22 18:44:22 +00:00
|
|
|
virtual void set_panner (boost::shared_ptr<ARDOUR::PannerShell>, boost::shared_ptr<ARDOUR::Panner>);
|
2008-12-08 16:07:28 +00:00
|
|
|
|
2011-02-22 18:44:22 +00:00
|
|
|
void panshell_changed ();
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
void update_pan_sensitive ();
|
|
|
|
|
void update_gain_sensitive ();
|
|
|
|
|
|
|
|
|
|
void set_width (Width);
|
|
|
|
|
void setup_pan ();
|
2014-01-13 15:13:37 +01:00
|
|
|
void set_available_panners(std::map<std::string,std::string>);
|
2014-06-17 15:51:49 +02:00
|
|
|
void set_send_drawing_mode (bool);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
void effective_pan_display ();
|
|
|
|
|
|
2009-05-12 17:03:42 +00:00
|
|
|
void set_meter_strip_name (std::string name);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2010-11-30 03:10:01 +00:00
|
|
|
void on_size_allocate (Gtk::Allocation &);
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2010-11-30 03:10:01 +00:00
|
|
|
static void setup_slider_pix ();
|
2009-10-19 14:46:15 +00:00
|
|
|
|
2017-07-01 21:11:14 +02:00
|
|
|
private:
|
2006-05-19 17:29:05 +00:00
|
|
|
friend class MixerStrip;
|
2014-01-13 15:13:37 +01:00
|
|
|
friend class SendUI;
|
2008-04-11 14:06:50 +00:00
|
|
|
|
2011-02-22 18:44:22 +00:00
|
|
|
boost::shared_ptr<ARDOUR::PannerShell> _panshell;
|
2009-06-09 20:21:19 +00:00
|
|
|
boost::shared_ptr<ARDOUR::Panner> _panner;
|
2009-12-17 18:24:23 +00:00
|
|
|
PBD::ScopedConnectionList connections;
|
2010-05-02 01:33:25 +00:00
|
|
|
PBD::ScopedConnectionList _pan_control_connections;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
bool ignore_toggle;
|
|
|
|
|
bool in_pan_update;
|
2009-08-30 00:40:48 +00:00
|
|
|
int _current_nouts;
|
2011-01-27 01:31:03 +00:00
|
|
|
int _current_nins;
|
2014-02-07 18:05:47 +01:00
|
|
|
std::string _current_uri;
|
2014-06-17 15:51:49 +02:00
|
|
|
bool _send_mode;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2010-04-17 22:51:22 +00:00
|
|
|
Panner2d* twod_panner; ///< 2D panner, or 0
|
2008-12-13 15:18:32 +00:00
|
|
|
Panner2dWindow* big_window;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
Gtk::VBox pan_bar_packer;
|
|
|
|
|
Gtk::VBox pan_vbox;
|
2017-07-01 21:11:14 +02:00
|
|
|
Gtk::VBox poswidth_box;
|
2005-09-25 18:42:24 +00:00
|
|
|
Width _width;
|
2006-05-23 19:54:52 +00:00
|
|
|
|
2017-07-01 18:42:24 +02:00
|
|
|
StereoPanner* _stereo_panner;
|
2011-10-29 12:57:07 +00:00
|
|
|
MonoPanner* _mono_panner;
|
|
|
|
|
|
2017-07-01 18:42:24 +02:00
|
|
|
bool _ignore_width_change;
|
|
|
|
|
bool _ignore_position_change;
|
|
|
|
|
void width_adjusted ();
|
|
|
|
|
void show_width ();
|
|
|
|
|
void position_adjusted ();
|
|
|
|
|
void show_position ();
|
2010-12-01 23:29:44 +00:00
|
|
|
|
2008-12-08 16:07:28 +00:00
|
|
|
Gtk::Menu* pan_astate_menu;
|
|
|
|
|
Gtk::Menu* pan_astyle_menu;
|
2006-05-19 17:29:05 +00:00
|
|
|
|
|
|
|
|
Gtk::ToggleButton pan_automation_state_button;
|
|
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
void pan_value_changed (uint32_t which);
|
2008-12-08 16:07:28 +00:00
|
|
|
void build_astate_menu ();
|
|
|
|
|
void build_astyle_menu ();
|
2005-09-25 18:42:24 +00: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-27 01:31:03 +00:00
|
|
|
bool pan_button_event (GdkEventButton*);
|
2006-05-23 19:54:52 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
Gtk::Menu* pan_menu;
|
|
|
|
|
Gtk::CheckMenuItem* bypass_menu_item;
|
2011-01-27 01:31:03 +00:00
|
|
|
void build_pan_menu ();
|
|
|
|
|
void pan_reset ();
|
2005-09-25 18:42:24 +00:00
|
|
|
void pan_bypass_toggle ();
|
2012-06-06 11:47:09 +00:00
|
|
|
void pan_edit ();
|
2014-01-09 00:18:29 +01:00
|
|
|
void pan_set_custom_type (std::string type);
|
2006-05-19 17:29:05 +00:00
|
|
|
|
|
|
|
|
void pan_automation_state_changed();
|
|
|
|
|
gint pan_automation_state_button_event (GdkEventButton *);
|
|
|
|
|
|
|
|
|
|
std::string astate_string (ARDOUR::AutoState);
|
|
|
|
|
std::string short_astate_string (ARDOUR::AutoState);
|
|
|
|
|
std::string _astate_string (ARDOUR::AutoState, bool);
|
|
|
|
|
|
2017-07-01 18:42:24 +02:00
|
|
|
void start_touch (boost::weak_ptr<ARDOUR::AutomationControl>);
|
|
|
|
|
void stop_touch (boost::weak_ptr<ARDOUR::AutomationControl>);
|
2014-01-09 00:18:29 +01:00
|
|
|
|
|
|
|
|
std::map<std::string,std::string> _panner_list;
|
|
|
|
|
bool _suspend_menu_callbacks;
|
2005-09-25 18:42:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_panner_ui_h__ */
|
|
|
|
|
|