]> git.tdb.fi Git - libs/gui.git/commitdiff
Comment changes
authorMikko Rasa <tdb@tdb.fi>
Tue, 16 Aug 2011 12:55:47 +0000 (15:55 +0300)
committerMikko Rasa <tdb@tdb.fi>
Thu, 25 Aug 2011 09:18:44 +0000 (12:18 +0300)
source/input/binarycontrol.h
source/input/hub.h

index fafa58537175cc19610742a45de9e805ef175dc1..851c6127f08006a11731e90ff037bd8b00c79344 100644 (file)
@@ -8,7 +8,8 @@ namespace Input {
 
 /**
 A control with two possible states.  Button state is mapped directly.  An axis
-is considered to be active when its value is within 10% of the end of the axis.
+is considered to be active when its value is above a threshold (0.5 by
+default).
 */
 class BinaryControl: public Control
 {
@@ -25,10 +26,8 @@ public:
        BinaryControl(const ControlSource &);
        BinaryControl(Device &, ControlSrcType, unsigned);
 
-       /**
-       Sets the threshold between states for axis sources.  No effect on button
-       sources
-       */
+       /** Sets the threshold between states for axis sources.  No effect on button
+       sources */
        void set_threshold(float);
 
        bool get_state() const { return state; }
index af4db47d81da96538482ce0fe62c965b71cee323..9fe57dd95a3bef2a501c23156b9812716fe0074d 100644 (file)
@@ -18,13 +18,8 @@ protected:
 public:
        Hub();
 
-       /**
-       Attaches an input device to the hub.
-
-       @param   dev  Device to attach
-
-       @return  Index of the device within the hub
-       */
+       /** Attaches an input device to the hub.  Returns the index of the device
+       within the hub. */
        unsigned attach(Device &dev);
 
        virtual std::string get_button_name(unsigned) const;