remove unused line
[ardour.git] / libs / ardour / ardour / parameter_descriptor.h
index a451887f2269c4810331c14d334a9f8243e7df82..87363bb2c31b46e9782868d7427de873059cd5e7 100644 (file)
@@ -73,6 +73,21 @@ struct LIBARDOUR_API ParameterDescriptor : public Evoral::ParameterDescriptor
         */
        float from_interface (float) const;
 
+       bool  is_linear () const;
+       float compute_delta (float from, float to) const;
+       float apply_delta (float value, float delta) const;
+
+       /* find the closest scale-point, return the internal value of
+        * the prev/next scale-point (no wrap-around)
+        *
+        * If the given parameter is not en enum, the given val is returned.
+        *
+        * @param val internal (not interface) value
+        * @param prev if true, step to prev scale-point, otherwise next
+        * @return internal value, suitable for set_value()
+        */
+       float step_enum (float val, bool prev) const;
+
        /** Set step, smallstep, and largestep, based on current description. */
        void update_steps();