2010-12-15 02:21:44 +00:00
|
|
|
/*
|
2019-08-02 23:26:43 +02:00
|
|
|
* Copyright (C) 2011 Carl Hetherington <carl@carlh.net>
|
|
|
|
|
* Copyright (C) 2014-2017 Robin Gareus <robin@gareus.org>
|
|
|
|
|
*
|
|
|
|
|
* 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.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
*/
|
2010-12-15 02:21:44 +00:00
|
|
|
|
2017-03-07 18:38:01 +01:00
|
|
|
#ifndef __windows_vst_plugin_ui_h__
|
|
|
|
|
#define __windows_vst_plugin_ui_h__
|
|
|
|
|
|
|
|
|
|
#include "pbd/signals.h"
|
2011-11-23 00:55:25 +00:00
|
|
|
#include "vst_plugin_ui.h"
|
2010-12-15 02:21:44 +00:00
|
|
|
|
2011-11-23 00:55:25 +00:00
|
|
|
class WindowsVSTPluginUI : public VSTPluginUI
|
2010-12-15 02:21:44 +00:00
|
|
|
{
|
2011-11-23 00:55:25 +00:00
|
|
|
public:
|
2014-04-18 01:54:59 +02:00
|
|
|
WindowsVSTPluginUI (boost::shared_ptr<ARDOUR::PluginInsert>, boost::shared_ptr<ARDOUR::VSTPlugin>, GtkWidget *parent);
|
2011-11-21 17:42:29 +00:00
|
|
|
~WindowsVSTPluginUI ();
|
2010-12-15 02:21:44 +00:00
|
|
|
|
2011-11-23 00:55:25 +00:00
|
|
|
bool start_updating (GdkEventAny*) { return false; }
|
|
|
|
|
bool stop_updating (GdkEventAny*) { return false; }
|
2010-12-15 02:21:44 +00:00
|
|
|
|
2011-11-23 00:55:25 +00:00
|
|
|
int package (Gtk::Window &);
|
2010-12-15 02:21:44 +00:00
|
|
|
|
2010-12-29 21:58:44 +00:00
|
|
|
void forward_key_event (GdkEventKey *);
|
|
|
|
|
|
2011-11-23 00:55:25 +00:00
|
|
|
private:
|
2015-10-05 16:17:49 +02:00
|
|
|
|
2017-03-07 18:38:01 +01:00
|
|
|
void resize_callback ();
|
2011-11-23 00:55:25 +00:00
|
|
|
int get_XID ();
|
2017-03-07 18:38:01 +01:00
|
|
|
void top_box_allocated (Gtk::Allocation&);
|
2015-10-05 16:17:49 +02:00
|
|
|
|
2017-03-07 18:38:01 +01:00
|
|
|
PBD::ScopedConnection _resize_connection;
|
2010-12-15 02:21:44 +00:00
|
|
|
};
|
2017-03-07 18:38:01 +01:00
|
|
|
#endif
|