Accommodate the change from libtimecode to libtemporal
[ardour.git] / libs / canvas / canvas / poly_line.h
index 911dd140fc13ebba65cc9d6e6f154d998053cc56..7c6894719cd91de6723a78b06e78b9d28758b850 100644 (file)
 #ifndef __CANVAS_POLY_LINE_H__
 #define __CANVAS_POLY_LINE_H__
 
+#include "canvas/visibility.h"
 #include "canvas/poly_item.h"
 #include "canvas/outline.h"
 
 namespace ArdourCanvas {
 
-class PolyLine : public PolyItem
+class LIBCANVAS_API PolyLine : public PolyItem
 {
 public:
-       PolyLine (Group *);
+       PolyLine (Canvas*);
+       PolyLine (Item*);
 
        void render (Rect const & area, Cairo::RefPtr<Cairo::Context>) const;
+
+       virtual void set_steps (Points const &, bool stepped);
+       virtual void compute_bounding_box () const;
+
+       bool covers (Duple const &) const;
+       /**
+        * Set the distance at which a point will be considered to be covered
+        * by the line. For the definition of "distance" see
+        * utils.cc:distance_to_segment_squared()
+        */
+       void set_covers_threshold (double);
+
+       void set_fill_y1 (double);
+
+private:
+       double _threshold;
+       double _y1;
 };
-       
+
 }
 
 #endif