Make Dropdown menus at least as wide as the button
[ardour.git] / gtk2_ardour / automation_line.h
index 663310dc46c9d339e6433c219606c2e05c13847f..d51e437bdd7fea04607c9524f9bed7775241860c 100644 (file)
@@ -34,6 +34,7 @@
 #include "pbd/memento_command.h"
 
 #include "ardour/automation_list.h"
+#include "ardour/parameter_descriptor.h"
 #include "ardour/types.h"
 
 #include "canvas/types.h"
@@ -59,15 +60,20 @@ public:
                ControlPoints = 0x2,
                SelectedControlPoints = 0x4
        };
-       
-       AutomationLine (const std::string& name, TimeAxisView&, ArdourCanvas::Item&,
-                       boost::shared_ptr<ARDOUR::AutomationList>,
+
+       AutomationLine (const std::string&                                 name,
+                       TimeAxisView&                                      tv,
+                       ArdourCanvas::Item&                                parent,
+                       boost::shared_ptr<ARDOUR::AutomationList>          al,
+                       const ARDOUR::ParameterDescriptor&                 desc,
                        Evoral::TimeConverter<double, ARDOUR::framepos_t>* converter = 0);
+
        virtual ~AutomationLine ();
 
        void queue_reset ();
        void reset ();
        void clear ();
+       void set_fill (bool f) { _fill = f; } // owner needs to call set_height
 
        void set_selected_points (PointSelection const &);
        void get_selectables (ARDOUR::framepos_t, ARDOUR::framepos_t, double, double, std::list<Selectable*>&);
@@ -117,6 +123,7 @@ public:
        void   view_to_model_coord (double& x, double& y) const;
        void   view_to_model_coord_y (double &) const;
        void   model_to_view_coord (double& x, double& y) const;
+       void   model_to_view_coord_y (double &) const;
 
        void set_list(boost::shared_ptr<ARDOUR::AutomationList> list);
        boost::shared_ptr<ARDOUR::AutomationList> the_list() const { return alist; }
@@ -163,7 +170,7 @@ protected:
        bool _our_time_converter;
 
        VisibleAspects _visible;
+
        bool    _uses_gain_mapping;
        bool    terminal_points_can_slide;
        bool    update_pending;
@@ -196,12 +203,10 @@ private:
        typedef boost::shared_ptr<ContiguousControlPoints> CCP;
        std::vector<CCP> contiguous_points;
 
-       void sync_model_with_view_point (ControlPoint&);
-       void sync_model_with_view_points (std::list<ControlPoint*>);
+       bool sync_model_with_view_point (ControlPoint&);
+       bool sync_model_with_view_points (std::list<ControlPoint*>);
        void start_drag_common (double, float);
 
-       virtual void change_model (ARDOUR::AutomationList::iterator, double x, double y);
-
        void reset_callback (const Evoral::ControlList&);
        void list_changed ();
 
@@ -219,6 +224,7 @@ private:
         */
        ARDOUR::framecnt_t _offset;
 
+       bool is_stepped() const;
        void update_visibility ();
        void reset_line_coords (ControlPoint&);
        void add_visible_control_point (uint32_t, uint32_t, double, double, ARDOUR::AutomationList::iterator, uint32_t);
@@ -231,6 +237,10 @@ private:
        /** maximum time that a point on this line can be at, relative to the position of its region or start of its track */
        ARDOUR::framecnt_t _maximum_time;
 
+       bool _fill;
+
+       const ARDOUR::ParameterDescriptor _desc;
+
        friend class AudioRegionGainLine;
 };