Projects/Usability/HIG/Spin Box: Difference between revisions

    From KDE TechBase
    < Projects‎ | Usability‎ | HIG
    (Add links about "Slider" and "Slider and Spin Box", and make text more consistent with "Slider")
    (Added Implementation section)
    Line 1: Line 1:
    == Purpose ==
    A spin box is a text box that accepts a range of values. It incorporates two arrow buttons that allow the user to increase or decrease the current value by a fixed amount.
    A spin box is a text box that accepts a range of values. It incorporates two arrow buttons that allow the user to increase or decrease the current value by a fixed amount.


    ===Guidelines===
    == Guidelines ==
    * Use spin boxes for numerical input only. Use a list or option menu when you need the user to select from fixed data sets of other types.
    * Use spin boxes for numerical input only. Use a list or option menu when you need the user to select from fixed data sets of other types.
    * Use a spin box if the numerical value is meaningful or useful for the user to know, and the valid input range is unlimited or fixed at one end only. For example, a control for specifying the number of iterations of some action, or a timeout value. If the range is fixed at both ends, or the numerical values are arbitrary (for example, a volume control), use a [[../Slider|Slider]] control instead.
    * Use a spin box if the numerical value is meaningful or useful for the user to know, and the valid input range is unlimited or fixed at one end only. For example, a control for specifying the number of iterations of some action, or a timeout value. If the range is fixed at both ends, or the numerical values are arbitrary (for example, a volume control), use a [[../Slider|Slider]] control instead.
    Line 8: Line 9:
    * For cases where the values are constrained at both ends and there large ranges of integers (more than about 20) or floating-point values that require precise control, consider providing both a [[../Slider_and_Spin_Box|Slider and Spin Box]]. This allows the user to quickly set or fine-tune the setting more easily than they could with the slider control alone.
    * For cases where the values are constrained at both ends and there large ranges of integers (more than about 20) or floating-point values that require precise control, consider providing both a [[../Slider_and_Spin_Box|Slider and Spin Box]]. This allows the user to quickly set or fine-tune the setting more easily than they could with the slider control alone.


    === Related Patterns ===  
    == Implementation ==
    * [http://qt-project.org/doc/qt-4.8/qspinbox.html QSpinBox]
     
    == Related Patterns ==  


    [[../Slider|Slider]]; [[../Slider_and_Spin_Box|Slider and Spin Box]]
    [[../Slider|Slider]]; [[../Slider_and_Spin_Box|Slider and Spin Box]]

    Revision as of 15:40, 27 June 2013

    Purpose

    A spin box is a text box that accepts a range of values. It incorporates two arrow buttons that allow the user to increase or decrease the current value by a fixed amount.

    Guidelines

    • Use spin boxes for numerical input only. Use a list or option menu when you need the user to select from fixed data sets of other types.
    • Use a spin box if the numerical value is meaningful or useful for the user to know, and the valid input range is unlimited or fixed at one end only. For example, a control for specifying the number of iterations of some action, or a timeout value. If the range is fixed at both ends, or the numerical values are arbitrary (for example, a volume control), use a Slider control instead.
    • Label the spin box with a text label above it or to its left, using sentence capitalization. Provide an access key in the label that allows the user to give focus directly to the spin box.
    • Right-justify the contents of spin boxes, unless the convention in the user's locale demands otherwise. This is useful in windows where the user might want to compare two numerical values in the same column of controls. In this case, ensure the right edges of the relevant controls are also aligned.
    • For cases where the values are constrained at both ends and there large ranges of integers (more than about 20) or floating-point values that require precise control, consider providing both a Slider and Spin Box. This allows the user to quickly set or fine-tune the setting more easily than they could with the slider control alone.

    Implementation

    Related Patterns

    Slider; Slider and Spin Box