2010-12-14 21:21:44 -05:00
|
|
|
/*
|
2019-08-02 17:26:43 -04: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-14 21:21:44 -05:00
|
|
|
|
2017-03-07 12:38:01 -05:00
|
|
|
#ifndef __windows_vst_plugin_ui_h__
|
|
|
|
#define __windows_vst_plugin_ui_h__
|
|
|
|
|
|
|
|
#include "pbd/signals.h"
|
2011-11-22 19:55:25 -05:00
|
|
|
#include "vst_plugin_ui.h"
|
2010-12-14 21:21:44 -05:00
|
|
|
|
2011-11-22 19:55:25 -05:00
|
|
|
class WindowsVSTPluginUI : public VSTPluginUI
|
2010-12-14 21:21:44 -05:00
|
|
|
{
|
2011-11-22 19:55:25 -05:00
|
|
|
public:
|
2023-02-16 18:33:28 -05:00
|
|
|
WindowsVSTPluginUI (std::shared_ptr<ARDOUR::PlugInsertBase>, std::shared_ptr<ARDOUR::VSTPlugin>, GtkWidget *parent);
|
2011-11-21 12:42:29 -05:00
|
|
|
~WindowsVSTPluginUI ();
|
2010-12-14 21:21:44 -05:00
|
|
|
|
2011-11-22 19:55:25 -05:00
|
|
|
bool start_updating (GdkEventAny*) { return false; }
|
|
|
|
bool stop_updating (GdkEventAny*) { return false; }
|
2010-12-14 21:21:44 -05:00
|
|
|
|
2011-11-22 19:55:25 -05:00
|
|
|
int package (Gtk::Window &);
|
2010-12-14 21:21:44 -05:00
|
|
|
|
2010-12-29 16:58:44 -05:00
|
|
|
void forward_key_event (GdkEventKey *);
|
|
|
|
|
2011-11-22 19:55:25 -05:00
|
|
|
private:
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2017-03-07 12:38:01 -05:00
|
|
|
void resize_callback ();
|
2011-11-22 19:55:25 -05:00
|
|
|
int get_XID ();
|
2017-03-07 12:38:01 -05:00
|
|
|
void top_box_allocated (Gtk::Allocation&);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2017-03-07 12:38:01 -05:00
|
|
|
PBD::ScopedConnection _resize_connection;
|
2010-12-14 21:21:44 -05:00
|
|
|
};
|
2017-03-07 12:38:01 -05:00
|
|
|
#endif
|