]> git.tdb.fi Git - libs/gui.git/blobdiff - source/input/binarycontrol.h
Use lambdas for comparison functions
[libs/gui.git] / source / input / binarycontrol.h
index ff773b8a3fb8f2d225ac01ea387aa5998c6c16a6..0d71bdc3349e0dc4afedf3a5a9423528ca82977a 100644 (file)
@@ -18,14 +18,14 @@ public:
        sigc::signal<void> signal_release;
 
 private:
-       bool state;
-       float threshold;
+       bool state = false;
+       float threshold = 0.5f;
 
 public:
-       BinaryControl();
+       BinaryControl() = default;
        BinaryControl(const ControlSource &);
        BinaryControl(Device &, ControlSrcType, unsigned);
-       virtual ~BinaryControl();
+       ~BinaryControl();
 
        /** Sets the threshold between states for axis sources.  No effect on button
        sources */
@@ -36,9 +36,9 @@ public:
        bool was_released() const { return falling_edge; }
 
 private:
-       virtual void on_press();
-       virtual void on_release();
-       virtual void on_motion(float, float);
+       void on_press() override;
+       void on_release() override;
+       void on_motion(float, float) override;
 };
 
 } // namespace Input