X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fau_pluginui.h;h=424d81e901ed18e833e6116e3854d80d31c801e5;hb=04bbe402b030017476bc774af0e940bcd99f35b0;hp=2dcefcc42f3138eb5b15ba332975c964b09b6f97;hpb=2a52135c663e9a60b5f0cc9cc6673799c3ea5549;p=ardour.git diff --git a/gtk2_ardour/au_pluginui.h b/gtk2_ardour/au_pluginui.h index 2dcefcc42f..424d81e901 100644 --- a/gtk2_ardour/au_pluginui.h +++ b/gtk2_ardour/au_pluginui.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2006 Paul Davis + Copyright (C) 2012 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 @@ -17,32 +17,113 @@ */ -#ifndef __au_plugin_ui_h__ -#define __au_plugin_ui_h__ +#ifndef __gtk2_ardour_auplugin_ui_h__ +#define __gtk2_ardour_auplugin_ui_h__ -#include +#include +#include +#include #include +#include #include +/* fix up stupid apple macros */ + +#undef check +#undef require +#undef verify + +#include +#include +#include +#include + +#include "plugin_ui.h" + namespace ARDOUR { class AUPlugin; class PluginInsert; - class Redirect; + class IOProcessor; } -class AUPluginUI +class AUPluginUI; + +@interface NotificationObject : NSObject { + @private + AUPluginUI* plugin_ui; + NSWindow* cocoa_parent; + NSWindow* top_level_parent; +} +@end + +class AUPluginUI : public PlugUIBase, public Gtk::VBox { public: AUPluginUI (boost::shared_ptr); ~AUPluginUI (); - + + gint get_preferred_height () { return prefheight; } + gint get_preferred_width () { return prefwidth; } + bool start_updating(GdkEventAny*); + bool stop_updating(GdkEventAny*); + + void activate (); + void deactivate (); + + bool non_gtk_gui() const { return true; } + + void lower_box_realized (); + void cocoa_view_resized (); + void on_realize (); + void forward_key_event (GdkEventKey*); + + bool on_window_show (const std::string& /*title*/); + void on_window_hide (); + + OSStatus carbon_event (EventHandlerCallRef nextHandlerRef, EventRef event); + private: WindowRef wr; boost::shared_ptr au; + int prefheight; + int prefwidth; + + Gtk::HBox top_box; + Gtk::HBox low_box; + Gtk::VBox vpacker; + Gtk::Label automation_mode_label; + Gtk::ComboBoxText automation_mode_selector; + Gtk::Label preset_label; + + static std::vector automation_mode_strings; + + /* Cocoa */ + + NSWindow* cocoa_window; + NSView* au_view; + NSRect last_au_frame; + + /* Carbon */ + + NSWindow* cocoa_parent; + ComponentDescription carbon_descriptor; + AudioUnitCarbonView editView; + WindowRef carbon_window; + EventHandlerRef carbon_event_handler; + bool _activating_from_app; + NotificationObject* _notify; + + bool test_cocoa_view_support (); + bool test_carbon_view_support (); + int create_carbon_view (); + int create_cocoa_view (); + + int parent_carbon_window (); + int parent_cocoa_window (); + NSWindow* get_nswindow(); - void plugin_going_away (ARDOUR::Redirect*); - Component get_carbon_view_component(OSType subtype); + bool plugin_class_valid (Class pluginClass); }; -#endif // __au_plugin_ui_h__ +#endif /* __gtk2_ardour_auplugin_ui_h__ */