2008-09-10 17:27:39 -04:00
|
|
|
/*
|
2012-02-25 04:19:03 -05:00
|
|
|
Copyright (C) 2008-2012 Paul Davis
|
2011-03-08 15:14:45 -05:00
|
|
|
Author: David Robillard
|
2008-09-10 17:27:39 -04:00
|
|
|
|
|
|
|
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_lv2_plugin_ui_h__
|
|
|
|
#define __ardour_lv2_plugin_ui_h__
|
|
|
|
|
2009-07-12 20:26:28 -04:00
|
|
|
#ifdef WAF_BUILD
|
|
|
|
#include "gtk2ardour-config.h"
|
|
|
|
#endif
|
|
|
|
|
2008-09-10 17:27:39 -04:00
|
|
|
#include <list>
|
2012-02-25 04:19:03 -05:00
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
2008-09-10 17:27:39 -04:00
|
|
|
|
|
|
|
#include <gtkmm/widget.h>
|
2012-02-25 04:19:03 -05:00
|
|
|
#include <sigc++/signal.h>
|
2008-09-10 17:27:39 -04:00
|
|
|
|
2009-10-29 20:21:40 -04:00
|
|
|
#include "ardour_dialog.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/types.h"
|
2008-09-10 17:27:39 -04:00
|
|
|
#include "plugin_ui.h"
|
|
|
|
|
2011-05-14 17:05:26 -04:00
|
|
|
#ifdef LV2_SUPPORT
|
2012-08-28 11:42:42 -04:00
|
|
|
#include "ardour/plugin_insert.h"
|
2008-09-10 17:27:39 -04:00
|
|
|
|
2009-10-01 12:28:02 -04:00
|
|
|
#include "lv2_external_ui.h"
|
|
|
|
|
2008-09-10 17:27:39 -04:00
|
|
|
namespace ARDOUR {
|
|
|
|
class PluginInsert;
|
|
|
|
class LV2Plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
class LV2PluginUI : public PlugUIBase, public Gtk::VBox
|
|
|
|
{
|
|
|
|
public:
|
2012-02-25 04:19:03 -05:00
|
|
|
LV2PluginUI (boost::shared_ptr<ARDOUR::PluginInsert>,
|
|
|
|
boost::shared_ptr<ARDOUR::LV2Plugin>);
|
2008-09-10 17:27:39 -04:00
|
|
|
~LV2PluginUI ();
|
|
|
|
|
|
|
|
gint get_preferred_height ();
|
|
|
|
gint get_preferred_width ();
|
2012-03-25 13:17:40 -04:00
|
|
|
bool resizable ();
|
|
|
|
|
2008-11-14 17:14:15 -05:00
|
|
|
bool start_updating(GdkEventAny*);
|
|
|
|
bool stop_updating(GdkEventAny*);
|
2008-09-10 17:27:39 -04:00
|
|
|
|
|
|
|
int package (Gtk::Window&);
|
|
|
|
|
|
|
|
private:
|
2010-12-19 18:11:01 -05:00
|
|
|
|
|
|
|
void parameter_changed (uint32_t, float);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2012-02-25 04:19:03 -05:00
|
|
|
typedef boost::shared_ptr<ARDOUR::AutomationControl> ControllableRef;
|
2009-10-01 12:28:02 -04:00
|
|
|
|
2012-08-28 11:42:42 -04:00
|
|
|
boost::shared_ptr<ARDOUR::PluginInsert> _pi;
|
2012-02-25 04:19:03 -05:00
|
|
|
boost::shared_ptr<ARDOUR::LV2Plugin> _lv2;
|
|
|
|
std::vector<int> _output_ports;
|
|
|
|
sigc::connection _screen_update_connection;
|
2013-08-29 07:05:11 -04:00
|
|
|
sigc::connection _message_update_connection;
|
2012-02-25 04:19:03 -05:00
|
|
|
Gtk::Widget* _gui_widget;
|
2012-03-04 16:45:51 -05:00
|
|
|
/** a box containing the focus, bypass, delete, save / add preset buttons etc. */
|
2013-08-03 07:45:27 -04:00
|
|
|
Gtk::HBox _ardour_buttons_box;
|
2012-02-25 04:19:03 -05:00
|
|
|
float* _values;
|
|
|
|
std::vector<ControllableRef> _controllables;
|
|
|
|
struct lv2_external_ui_host _external_ui_host;
|
|
|
|
LV2_Feature _external_ui_feature;
|
2013-08-25 10:20:27 -04:00
|
|
|
LV2_Feature _external_kxui_feature;
|
2012-02-25 04:19:03 -05:00
|
|
|
struct lv2_external_ui* _external_ui_ptr;
|
2012-08-21 15:29:19 -04:00
|
|
|
LV2_Feature _parent_feature;
|
2012-02-25 04:19:03 -05:00
|
|
|
Gtk::Window* _win_ptr;
|
|
|
|
void* _inst;
|
2009-10-01 12:28:02 -04:00
|
|
|
|
2011-04-22 04:08:37 -04:00
|
|
|
static void on_external_ui_closed(void* controller);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2012-02-25 03:43:23 -05:00
|
|
|
static void write_from_ui(void* controller,
|
|
|
|
uint32_t port_index,
|
|
|
|
uint32_t buffer_size,
|
|
|
|
uint32_t format,
|
|
|
|
const void* buffer);
|
|
|
|
|
|
|
|
static void write_to_ui(void* controller,
|
|
|
|
uint32_t port_index,
|
|
|
|
uint32_t buffer_size,
|
|
|
|
uint32_t format,
|
|
|
|
const void* buffer);
|
|
|
|
|
2012-04-11 00:53:47 -04:00
|
|
|
static uint32_t port_index(void* controller, const char* symbol);
|
|
|
|
|
|
|
|
static void touch(void* controller,
|
|
|
|
uint32_t port_index,
|
|
|
|
bool grabbed);
|
|
|
|
|
2012-02-25 15:43:14 -05:00
|
|
|
void update_timeout();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-09-14 12:51:02 -04:00
|
|
|
void lv2ui_instantiate(const std::string& title);
|
2011-05-30 22:00:16 -04:00
|
|
|
void lv2ui_free();
|
2009-10-01 12:28:02 -04:00
|
|
|
|
2009-01-14 10:47:58 -05:00
|
|
|
void parameter_update(uint32_t, float);
|
2008-09-10 17:27:39 -04:00
|
|
|
bool configure_handler (GdkEventConfigure*);
|
|
|
|
void save_plugin_setting ();
|
2008-11-14 17:14:15 -05:00
|
|
|
void output_update();
|
|
|
|
bool is_update_wanted(uint32_t index);
|
2009-10-01 12:28:02 -04:00
|
|
|
|
2010-09-14 12:51:02 -04:00
|
|
|
virtual bool on_window_show(const std::string& title);
|
2009-10-01 12:28:02 -04:00
|
|
|
virtual void on_window_hide();
|
2008-09-10 17:27:39 -04:00
|
|
|
};
|
2009-05-03 15:53:09 -04:00
|
|
|
|
2011-05-14 17:05:26 -04:00
|
|
|
#endif // LV2_SUPPORT
|
2008-09-10 17:27:39 -04:00
|
|
|
|
|
|
|
#endif /* __ardour_lv2_plugin_ui_h__ */
|
|
|
|
|