Restore 'Edit with basic controls' plugin UI functionality.
[ardour.git] / gtk2_ardour / processor_box.h
index a8a84e636cc0478a6d50ba7c758a0cae258f6f8c..7d80abdc68c1ebff17c6e0d4e891add109b59653 100644 (file)
@@ -34,6 +34,7 @@
 #include "gtkmm2ext/click_box.h"
 #include "gtkmm2ext/dndvbox.h"
 #include "gtkmm2ext/pixfader.h"
+#include "gtkmm2ext/persistent_tooltip.h"
 
 #include "pbd/stateful.h"
 #include "pbd/signals.h"
@@ -52,8 +53,8 @@
 #include "io_selector.h"
 #include "send_ui.h"
 #include "enums.h"
-#include "window_proxy.h"
 #include "ardour_button.h"
+#include "window_manager.h"
 
 class MotionController;
 class PluginSelector;
@@ -74,28 +75,28 @@ namespace ARDOUR {
 
 class ProcessorBox;
 
-/** A WindowProxy for Processor UI windows; it knows how to ask a ProcessorBox
- *  to create a UI window for a particular processor.
- */
-class ProcessorWindowProxy : public WindowProxy<Gtk::Window>
+class ProcessorWindowProxy : public WM::ProxyBase 
 {
-public:
-       ProcessorWindowProxy (std::string const &, XMLNode const *, ProcessorBox *, boost::weak_ptr<ARDOUR::Processor>);
+  public:
+    ProcessorWindowProxy (std::string const &, ProcessorBox *, boost::weak_ptr<ARDOUR::Processor>);
 
-       void show ();
-       bool rc_configured () const {
-               return false;
-       }
+    Gtk::Window* get (bool create = false);
+    
+    boost::weak_ptr<ARDOUR::Processor> processor () const {
+           return _processor;
+    }
 
-       boost::weak_ptr<ARDOUR::Processor> processor () const {
-               return _processor;
-       }
+    ARDOUR::SessionHandlePtr* session_handle();
+    void toggle();
+    void set_custom_ui_mode(bool use_custom) { want_custom = use_custom; }
 
-       bool marked;
+    bool marked;
 
-private:
-       ProcessorBox* _processor_box;
-       boost::weak_ptr<ARDOUR::Processor> _processor;
+  private:
+    ProcessorBox* _processor_box;
+    boost::weak_ptr<ARDOUR::Processor> _processor;
+    bool is_custom;
+    bool want_custom;
 };
 
 class ProcessorEntry : public Gtkmm2ext::DnDVBoxChild, public sigc::trackable
@@ -118,7 +119,6 @@ public:
        void set_position (Position);
        boost::shared_ptr<ARDOUR::Processor> processor () const;
        void set_enum_width (Width);
-       virtual void set_pixel_width (int);
 
        /** Hide any widgets that should be hidden */
        virtual void hide_things ();
@@ -130,8 +130,6 @@ public:
        std::string state_id () const;
        Gtk::Menu* build_controls_menu ();
 
-       static void setup_slider_pix ();
-
 protected:
        ArdourButton _button;
        Gtk::VBox _vbox;
@@ -139,9 +137,6 @@ protected:
 
        virtual void setup_visuals ();
 
-       static Glib::RefPtr<Gdk::Pixbuf> _slider_pixbuf;
-       static Glib::RefPtr<Gdk::Pixbuf> _slider_pixbuf_desensitised;
-
 private:
        void led_clicked();
        void processor_active_changed ();
@@ -156,11 +151,10 @@ private:
        PBD::ScopedConnection active_connection;
        PBD::ScopedConnection name_connection;
 
-       class Control {
+       class Control : public sigc::trackable {
        public:
-               Control (Glib::RefPtr<Gdk::Pixbuf>, Glib::RefPtr<Gdk::Pixbuf>, boost::shared_ptr<ARDOUR::AutomationControl>, std::string const &);
+               Control (boost::shared_ptr<ARDOUR::AutomationControl>, std::string const &);
 
-               void set_pixel_width (int);
                void set_visible (bool);
                void add_state (XMLNode *) const;
                void set_state (XMLNode const *);
@@ -189,6 +183,7 @@ private:
                Gtk::Adjustment _adjustment;
                Gtkmm2ext::HSliderController _slider;
                Gtk::Label _label;
+               Gtkmm2ext::PersistentTooltip _slider_persistant_tooltip;
                /* things for a button */
                ArdourButton _button;
                bool _ignore_ui_adjustment;
@@ -260,9 +255,15 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARD
 
        void hide_things ();
 
+        /* Everything except a WindowProxy object should use this to get the window */
        Gtk::Window* get_processor_ui (boost::shared_ptr<ARDOUR::Processor>) const;
-       void toggle_edit_processor (boost::shared_ptr<ARDOUR::Processor>);
-       void toggle_edit_generic_processor (boost::shared_ptr<ARDOUR::Processor>);
+
+        /* a WindowProxy object can use this */
+        Gtk::Window* get_editor_window (boost::shared_ptr<ARDOUR::Processor>, bool);
+        Gtk::Window* get_generic_editor_window (boost::shared_ptr<ARDOUR::Processor>);
+
+        void edit_processor (boost::shared_ptr<ARDOUR::Processor>);
+        void generic_edit_processor (boost::shared_ptr<ARDOUR::Processor>);
 
        void update_gui_object_state (ProcessorEntry *);
        
@@ -303,6 +304,7 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARD
        void object_drop (Gtkmm2ext::DnDVBox<ProcessorEntry> *, ProcessorEntry *, Glib::RefPtr<Gdk::DragContext> const &);
 
        Width _width;
+        bool  _redisplay_pending;
 
        Gtk::Menu *processor_menu;
        gint processor_menu_map_handler (GdkEventAny *ev);
@@ -369,7 +371,6 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARD
        gint idle_delete_processor (boost::weak_ptr<ARDOUR::Processor>);
 
        void weird_plugin_dialog (ARDOUR::Plugin& p, ARDOUR::Route::ProcessorStreams streams);
-       void on_size_allocate (Gtk::Allocation &);
 
        void setup_entry_positions ();
 
@@ -398,7 +399,9 @@ class ProcessorBox : public Gtk::HBox, public PluginInterestedObject, public ARD
        void route_property_changed (const PBD::PropertyChange&);
        std::string generate_processor_title (boost::shared_ptr<ARDOUR::PluginInsert> pi);
 
-       std::list<ProcessorWindowProxy*> _processor_window_proxies;
+       std::list<ProcessorWindowProxy*> _processor_window_info;
+        ProcessorWindowProxy* find_window_proxy (boost::shared_ptr<ARDOUR::Processor>) const;
+
        void set_processor_ui (boost::shared_ptr<ARDOUR::Processor>, Gtk::Window *);
        void maybe_add_processor_to_ui_list (boost::weak_ptr<ARDOUR::Processor>);