summaryrefslogtreecommitdiff
path: root/gtk2_ardour/plugin_ui.h
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2006-08-10 04:01:15 +0000
committerTaybin Rutkin <taybin@taybin.com>2006-08-10 04:01:15 +0000
commit77a13df5bd70bf87ee856b81acec7eeed5b1f033 (patch)
treea3b6fcceecc0ab7f5607c986cfc4c4d88b2ad2d4 /gtk2_ardour/plugin_ui.h
parentd4dd338beb813bcfe7470729cf6611aeea55cfa4 (diff)
Moved PluginInfo::Type to ARDOUR::PluginType in ardour/types.h.
Figured out (mostly) AUPluginUI hierarchy. Moved LadspaPluginUI to its own ladspa_pluginui.cc file. git-svn-id: svn://localhost/ardour2/trunk@782 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/plugin_ui.h')
-rw-r--r--gtk2_ardour/plugin_ui.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/gtk2_ardour/plugin_ui.h b/gtk2_ardour/plugin_ui.h
index dc1e61887b..5b1fd89178 100644
--- a/gtk2_ardour/plugin_ui.h
+++ b/gtk2_ardour/plugin_ui.h
@@ -209,7 +209,6 @@ class PluginUIWindow : public ArdourDialog
void plugin_going_away (ARDOUR::Redirect*);
};
-
#ifdef VST_SUPPORT
class VSTPluginUI : public PlugUIBase, public Gtk::VBox
{
@@ -235,16 +234,12 @@ class VSTPluginUI : public PlugUIBase, public Gtk::VBox
#endif // VST_SUPPORT
#ifdef HAVE_COREAUDIO
-class AUPluginUI : public PlugUIBase
+class AUPluginUI
{
public:
- AUPluginUI (boost::shared_ptr<ARDOUR::PluginInsert>, boost::shared_ptr<ARDOUR::AUPlugin>);
+ AUPluginUI (ARDOUR::AudioEngine&, boost::shared_ptr<ARDOUR::PluginInsert>);
~AUPluginUI ();
- gint get_preferred_height ();
- bool start_updating(GdkEventAny*) {return false;}
- bool stop_updating(GdkEventAny*) {return false;}
-
private:
boost::shared_ptr<ARDOUR::AUPlugin> au;
};