Add browse button to recent session dialogue. Fixes #3357.
[ardour.git] / gtk2_ardour / au_pluginui.h
index 1ca5dca4851c41e5c6fd342bc3d46d0277a96a86..445ab27ec5097cb61fd03517f71f2b70a6c001ad 100644 (file)
@@ -1,6 +1,9 @@
 #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>
 #undef verify
 
 #include <gtkmm/box.h>
+#include <gtkmm/combobox.h>
+#include <gtkmm/button.h>
+#include <gtkmm/label.h>
+
 #include "plugin_ui.h"
 
 namespace ARDOUR {
@@ -26,15 +33,16 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
   public:
        AUPluginUI (boost::shared_ptr<ARDOUR::PluginInsert>);
        ~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 ();
+
+       void lower_box_realized ();
        void on_realize ();
        void on_show ();
        void on_hide ();
@@ -50,10 +58,18 @@ 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 */
@@ -61,16 +77,14 @@ class AUPluginUI : public PlugUIBase, public Gtk::VBox
        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;
+       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 ();