X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fau_pluginui.h;h=445ab27ec5097cb61fd03517f71f2b70a6c001ad;hb=792e3de1d4cb291a02c5c31dad54028049bafed9;hp=2dcefcc42f3138eb5b15ba332975c964b09b6f97;hpb=f99a016f17a890aa4c71f2aa8771e52314492db7;p=ardour.git diff --git a/gtk2_ardour/au_pluginui.h b/gtk2_ardour/au_pluginui.h index 2dcefcc42f..445ab27ec5 100644 --- a/gtk2_ardour/au_pluginui.h +++ b/gtk2_ardour/au_pluginui.h @@ -1,48 +1,97 @@ -/* - Copyright (C) 2006 Paul Davis +#ifndef __gtk2_ardour_auplugin_ui_h__ +#define __gtk2_ardour_auplugin_ui_h__ - 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. +#include +#include - 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. +#include +#include +#include +#include -*/ +/* fix up stupid apple macros */ -#ifndef __au_plugin_ui_h__ -#define __au_plugin_ui_h__ +#undef check +#undef require +#undef verify -#include +#include +#include +#include +#include -#include -#include +#include "plugin_ui.h" namespace ARDOUR { class AUPlugin; class PluginInsert; - class Redirect; + class IOProcessor; } -class AUPluginUI +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 (); + + void lower_box_realized (); + 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*); + + OSStatus carbon_event (EventHandlerCallRef nextHandlerRef, EventRef event); + private: WindowRef wr; boost::shared_ptr au; + 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; + NSView* au_view; + + /* Carbon */ + + NSWindow* cocoa_parent; + ComponentDescription carbon_descriptor; + AudioUnitCarbonView editView; + WindowRef carbon_window; + EventHandlerRef carbon_event_handler; + bool _activating_from_app; + NSView* packView; + + 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__ */