always compute range for a redirect automation line, even if it will not be drawn...
[ardour.git] / gtk2_ardour / au_pluginui.h
index f6f995fe928e9119947b3fdc525fca0b5920f788..2f7e5a1f90797d112cd0be5a7a04ebcbf782fe42 100644 (file)
@@ -1,8 +1,12 @@
 #ifndef __gtk2_ardour_auplugin_ui_h__
 #define __gtk2_ardour_auplugin_ui_h__
 
+#include <vector>
+#include <string>
+
 #include <AppKit/AppKit.h>
 #include <Carbon/Carbon.h>
+#include <AudioUnit/AudioUnitCarbonView.h>
 #include <AudioUnit/AudioUnit.h>
 
 /* fix up stupid apple macros */
 #undef verify
 
 #include <gtkmm/box.h>
+#include <gtkmm/combobox.h>
+#include <gtkmm/button.h>
+#include <gtkmm/label.h>
+
 #include "plugin_ui.h"
 
 namespace ARDOUR {
@@ -31,8 +39,16 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
        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);
 
@@ -41,10 +57,20 @@ 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<std::string> automation_mode_strings;
+
        /* Cocoa */
 
        NSWindow*           cocoa_window;
        NSScrollView*       scroll_view;
+       NSView*             au_view;
 
        /* Carbon */
 
@@ -53,13 +79,12 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
        AudioUnitCarbonView  editView;
        WindowRef            carbon_window;     
        EventHandlerRef      carbon_event_handler;
-       bool                 carbon_parented;
-       bool                 cocoa_parented;
+       bool                 _activating_from_app;
+       NSView*              packView;
 
-       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 ();