X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fau_pluginui.h;h=41b3116e515955038f0d6673fc35686d23b5aa3d;hb=5e7d9d30e28e8022661497244ccd43a1f5a836c6;hp=e15d48b922689fe4822bc8c45355b233e06d9927;hpb=7295d8e9f675f4441ab626c0655b2d2e6663e47e;p=ardour.git diff --git a/gtk2_ardour/au_pluginui.h b/gtk2_ardour/au_pluginui.h index e15d48b922..41b3116e51 100644 --- a/gtk2_ardour/au_pluginui.h +++ b/gtk2_ardour/au_pluginui.h @@ -1,8 +1,31 @@ +/* + 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 + 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 __gtk2_ardour_auplugin_ui_h__ #define __gtk2_ardour_auplugin_ui_h__ +#include +#include + #include #include +#include #include /* fix up stupid apple macros */ @@ -11,7 +34,19 @@ #undef require #undef verify +#ifdef YES +#undef YES +#endif +#ifdef NO +#undef NO +#endif + #include +#include +#include +#include +#include + #include "plugin_ui.h" namespace ARDOUR { @@ -20,26 +55,42 @@ namespace ARDOUR { class IOProcessor; } +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*); - - virtual void activate (); - virtual void deactivate (); + void activate (); + void deactivate (); + + bool non_gtk_gui() const { return true; } + + void lower_box_realized (); + bool lower_box_visibility_notify (GdkEventVisibility*); + + void cocoa_view_resized (); void on_realize (); - void on_show (); - void on_hide (); - bool on_map_event (GdkEventAny*); - bool on_focus_in_event (GdkEventFocus*); - bool on_focus_out_event (GdkEventFocus*); + void grab_focus(); + void forward_key_event (GdkEventKey*); + + bool on_window_show (const std::string& /*title*/); + void on_window_hide (); OSStatus carbon_event (EventHandlerCallRef nextHandlerRef, EventRef event); @@ -49,27 +100,34 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox int prefheight; int prefwidth; + Gtk::HBox top_box; + Gtk::EventBox 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; - NSScrollView* scroll_view; NSView* au_view; + NSRect last_au_frame; /* Carbon */ NSWindow* cocoa_parent; ComponentDescription carbon_descriptor; AudioUnitCarbonView editView; - WindowRef carbon_window; + WindowRef carbon_window; EventHandlerRef carbon_event_handler; - bool carbon_parented; - bool cocoa_parented; bool _activating_from_app; + NotificationObject* _notify; - void test_view_support (bool&, bool&); bool test_cocoa_view_support (); bool test_carbon_view_support (); - int create_carbon_view (bool generic); + int create_carbon_view (); int create_cocoa_view (); int parent_carbon_window ();