X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fau_pluginui.h;h=eafe82207824e974e677cdcb5d19932e2352061d;hb=e5a181c323243a03338f5a9934a5df254986370d;hp=cbf83d5d92e7f4f4834a43bd7371da8f85a4dffe;hpb=d54a35a6718e4791ef57d0ad86dc2f41a1ec46a2;p=ardour.git diff --git a/gtk2_ardour/au_pluginui.h b/gtk2_ardour/au_pluginui.h index cbf83d5d92..eafe822078 100644 --- a/gtk2_ardour/au_pluginui.h +++ b/gtk2_ardour/au_pluginui.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012 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 @@ -14,7 +14,6 @@ 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__ @@ -23,6 +22,8 @@ #include #include +#include + #include #include #include @@ -34,7 +35,15 @@ #undef require #undef verify +#ifdef YES +#undef YES +#endif +#ifdef NO +#undef NO +#endif + #include +#include #include #include #include @@ -52,33 +61,44 @@ class AUPluginUI; @interface NotificationObject : NSObject { @private AUPluginUI* plugin_ui; - NSWindow* cocoa_parent; + NSWindow* cocoa_parent; NSWindow* top_level_parent; } @end +@interface LiveResizeNotificationObject : NSObject { + @private + AUPluginUI* plugin_ui; +} +@end + class AUPluginUI : public PlugUIBase, public Gtk::VBox { - public: +public: AUPluginUI (boost::shared_ptr); ~AUPluginUI (); - gint get_preferred_height () { return prefheight; } - gint get_preferred_width () { return prefwidth; } + gint get_preferred_width () { return req_width; } + gint get_preferred_height () { return req_height; } bool start_updating(GdkEventAny*); bool stop_updating(GdkEventAny*); void activate (); void deactivate (); - bool non_gtk_gui() const { return true; } + bool non_gtk_gui() const { return true; } void lower_box_realized (); + bool lower_box_visibility_notify (GdkEventVisibility*); + + void lower_box_map (); + void lower_box_unmap (); + void lower_box_size_request (GtkRequisition*); + void lower_box_size_allocate (Gtk::Allocation&); + void cocoa_view_resized (); void on_realize (); - 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*/); @@ -86,14 +106,17 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox OSStatus carbon_event (EventHandlerCallRef nextHandlerRef, EventRef event); - private: + void start_live_resize (); + void end_live_resize (); + +private: WindowRef wr; boost::shared_ptr au; int prefheight; int prefwidth; Gtk::HBox top_box; - Gtk::HBox low_box; + Gtk::EventBox low_box; Gtk::VBox vpacker; Gtk::Label automation_mode_label; Gtk::ComboBoxText automation_mode_selector; @@ -101,10 +124,17 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox static std::vector automation_mode_strings; + bool resizable; + int req_width; + int req_height; + /* Cocoa */ NSWindow* cocoa_window; NSView* au_view; + NSRect last_au_frame; + bool in_live_resize; + uint32_t plugin_requested_resize; /* Carbon */ @@ -112,9 +142,13 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox ComponentDescription carbon_descriptor; AudioUnitCarbonView editView; WindowRef carbon_window; - EventHandlerRef carbon_event_handler; + EventHandlerRef carbon_event_handler; bool _activating_from_app; + + /* Generic */ + NotificationObject* _notify; + LiveResizeNotificationObject* _resize_notify; bool test_cocoa_view_support (); bool test_carbon_view_support (); @@ -125,7 +159,24 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox int parent_cocoa_window (); NSWindow* get_nswindow(); + void update_view_size (); + bool plugin_class_valid (Class pluginClass); + + friend void au_cf_timer_callback (CFRunLoopTimerRef timer, void* info); + static CFRunLoopTimerRef cf_timer; + static void cf_timer_callback (); + static int64_t last_timer; + static bool timer_needed; + static uint64_t timer_callbacks; + static uint64_t timer_out_of_range; + + static bool timer_callback (); + static sigc::connection timer_connection; + +public: + static void start_cf_timer (); + static void stop_cf_timer (); }; #endif /* __gtk2_ardour_auplugin_ui_h__ */