add queen mary DSP library
[ardour.git] / gtk2_ardour / au_pluginui.h
index 445ab27ec5097cb61fd03517f71f2b70a6c001ad..af3551b08e812c14e0ae304308220eb2cd7c9271 100644 (file)
@@ -28,6 +28,16 @@ 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:
@@ -42,13 +52,18 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
        void activate ();
        void deactivate ();
 
+        bool non_gtk_gui() const { return true; }
+
        void lower_box_realized ();
+       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 forward_key_event (GdkEventKey*);
+
+       bool on_window_show (const std::string& /*title*/);
+       void on_window_hide ();
 
        OSStatus carbon_event (EventHandlerCallRef nextHandlerRef, EventRef event);
 
@@ -80,7 +95,7 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
        WindowRef            carbon_window;
        EventHandlerRef      carbon_event_handler;
        bool                 _activating_from_app;
-       NSView*              packView;
+       NotificationObject* _notify;
 
        bool test_cocoa_view_support ();
        bool test_carbon_view_support ();