Projects/Usability/HIG/Dialogs: Difference between revisions

    From KDE TechBase
    < Projects‎ | Usability‎ | HIG
    No edit summary
    (12 intermediate revisions by 4 users not shown)
    Line 1: Line 1:
    == Dialogs ==
    __NOTOC__
    '''Reduce the dialog flood'''
    * Do not nest dialogs more than two levels deep. <br><small>For example "Configuration dialog > Advanced dialog" is ok, "Configuration dialog > Advanced dialog > Further settings dialog" is too deep.</small>
    * Avoid dialogs that contain only one or two options. If possible, use [[Design_and_Layout:Interaction:Input#Inline Editing|inline-editing]] instead.
    * Do not use dialogs to display non-critical messages which do not require any further user interaction (typically dialogs with a single "OK" or "Close" button). Use [[Guidelines:Info Panel|info panels]] instead.


    == Purpose ==
    A ''dialog'' is a secondary window that allows users to perform a command, asks users a question, or provides users with information or progress feedback.


    '''Position of dialogs'''
    Dialogs can be modal and require users to complete and close before continuing with the owner window, or modeless, i.e. users can switch between dialogs and parent window.
    * Always keep dialogs on top of their parent. <br><small>This is usually taken care of by the window manager. But in composed applications, focus problems may occur. Check carefully in this case.</small>
    == Guidelines ==
    * If reference in the parent window is required, make sure your dialog does not cover relevant parts. <br><small>For example a find dialog should neither be centered, nor cover a search result.</small>


    === Is this the right control? ===
    * Use a dialog to structure the work flow. For instance, the functions Open, Save, Advanced Search need user input or confirmation. In particular, dialogs are expected by users for configuration.
    * Do not use dialogs if the flow must not get interrupted. In this case prefer inline controls.
    * Consider to use alternative ways for communication with users like [[Projects/Usability/HIG/Tooltip| tool-tip]] or [[Projects/Usability/HIG/MessageWidget| message panel]].
    * Always use standard dialogs, if available.


    '''Interaction'''
    === Behavior ===
    * Set input focus on confirmation button.
    * Do not apply dialog boxes that require the use of a scroll bar.
    * Do not include a menu bar or status bar in dialogs.
    * Do not display more than one owned choice dialog at a time from an owner choice dialog.
    * Always keep dialogs on top of their parent.
    ::{|
    | [[Image:DialogPositionParentBad.png]]
    | {{BadUsability}}
    |-
    | [[Image:DialogsPositioningParentGood.png]]
    | {{GoodUsability}}
    |}
    ::
    * Set input focus on confirmation button by default. But set focus on disruptive button (Cancel, Don't apply or the like) if the dialog comprises of critical confirmation.
    * Avoid to nest dialogs, especially in case of modal dialogs.
    * Avoid dialogs that contain only one or two options. If possible, use direct selection or inline-editing instead.
    * Do not use dialogs to display non-critical messages which do not require any further user interaction (typically dialogs with a single "OK" or "Close" button). Consider to use [[Projects/Usability/HIG/Tooltip| tool-tips]] or a [[Projects/Usability/HIG/MessageWidget|message panel]].
    * Use modal dialogs only if allowing interaction with other parts of the application while the window is opened could cause data loss or some other serious problem.
    * Provide a clear way of leaving the modal dialog, such as a Cancel button.
    * When the dialog is used to inform about an unexpected condition that needs interaction, follow the guidelines for [[Projects/Usability/HIG/Messages|message dialogs]].


     
    === Appearance ===
    '''Only use modal dialogs when''':
    * Use tabbed dialogs when you have a limited number of tabs (max. 6). If you cannot see all the tabs without scrolling or splitting them into multiple rows, you are probably using too many and should use a paged dialog instead.
    * Use modal dialogs only if allowing interaction with other parts of the application while the window is open could cause data loss or some other serious problem.  
    ::{|
    Provide a clear way of leaving the modal dialog, such as a Cancel button in an alert.
    | [[Image:Tabs_bad.png]]
     
    | {{BadUsability}}
     
    |-
     
    | [[Image:Tabs_good.png]]
    == Dialog Layout ==
    | {{GoodUsability}}
     
    |}
    * Design dialogs not to be bigger than 800x600 Pixels and should always be resizable
    ::
    * Always use paged dialogs for configuration dialogs - assuming that there is more than one section of options to be configured. For other dialogs, use paged dialogs if there are too many tabs to put them into a tabbed dialog.
    ::{|
    | [[Image:Paged_dialog.png]]
    | {{GoodUsability}}
    |}
    ::
    * Dialogs should not be bigger than two thirds of the screen size and should always be resizable. Take care about high resolution displays (i.e. QXGA and more).
    * Save and restore user adjustments of dialog size.
    * Make sure there is at least one third white space, do not overload the panel.
    * Make sure there is at least one third white space, do not overload the panel.
    * The reading direction in dialogs is left to right, top to bottom. <br><small>In a row, related options may be positioned next to each other, like "Access" and "Show time as" like in the example screenshot.</small>
    * Consider the common reading direction from left to right and top to bottom.
    * Dialogs are grouped in meaningful sections. The actions are grouped along their context of use, not along technical relations.
    * Dialogs are grouped in meaningful sections, for instance by [[Projects/Usability/HIG/GroupBox|group boxes]]. The actions are grouped along their context of use, not along technical relations.
    * Each section has a title.
    * Provide a title to each section.
    * Labels are right-aligned, input widgets are left aligned.
    * Follow the guidelines for [[Projects/Usability/HIG/Alignment| alignment]].
    * Provide one or two major vertical axis in your dialog that guide the user's attention.<br>The vertical line where the right aligned labels and the left aligned input widgets meet is one such example.
    * Widgets which are subordinate to another widget are indented. If their enabled state depends on the parent widget, create an appropriate slot.
     
    Otherwise, follow the guidelines described in [[Projects/Usability/HIG/Form_Label_Alignment|Form: Label Alignment]]  
     
     


    === See Also ===
    == Implementation ==
    * [[Projects/Usability/HIG/Tabs_Pages|Tabs and Pages in Dialogs]]
    * [http://api.kde.org/4.10-api/kdelibs-apidocs/kdeui/html/classKPageDialog.html KPageDialog].
    * [[Projects/Usability/HIG/Form_Label_Alignment|Form: Label Alignment]]
    * [http://api.kde.org/4.10-api/kdelibs-apidocs/kdeui/html/classKConfigDialog.html KConfigDialog]
    * [http://api.kde.org/4.10-api/kdelibs-apidocs/kdeui/html/classKDialog.html KDialog]

    Revision as of 14:18, 4 October 2013


    Purpose

    A dialog is a secondary window that allows users to perform a command, asks users a question, or provides users with information or progress feedback.

    Dialogs can be modal and require users to complete and close before continuing with the owner window, or modeless, i.e. users can switch between dialogs and parent window.

    Guidelines

    Is this the right control?

    • Use a dialog to structure the work flow. For instance, the functions Open, Save, Advanced Search need user input or confirmation. In particular, dialogs are expected by users for configuration.
    • Do not use dialogs if the flow must not get interrupted. In this case prefer inline controls.
    • Consider to use alternative ways for communication with users like tool-tip or message panel.
    • Always use standard dialogs, if available.

    Behavior

    • Do not apply dialog boxes that require the use of a scroll bar.
    • Do not include a menu bar or status bar in dialogs.
    • Do not display more than one owned choice dialog at a time from an owner choice dialog.
    • Always keep dialogs on top of their parent.
    Bad
    Good
    • Set input focus on confirmation button by default. But set focus on disruptive button (Cancel, Don't apply or the like) if the dialog comprises of critical confirmation.
    • Avoid to nest dialogs, especially in case of modal dialogs.
    • Avoid dialogs that contain only one or two options. If possible, use direct selection or inline-editing instead.
    • Do not use dialogs to display non-critical messages which do not require any further user interaction (typically dialogs with a single "OK" or "Close" button). Consider to use tool-tips or a message panel.
    • Use modal dialogs only if allowing interaction with other parts of the application while the window is opened could cause data loss or some other serious problem.
    • Provide a clear way of leaving the modal dialog, such as a Cancel button.
    • When the dialog is used to inform about an unexpected condition that needs interaction, follow the guidelines for message dialogs.

    Appearance

    • Use tabbed dialogs when you have a limited number of tabs (max. 6). If you cannot see all the tabs without scrolling or splitting them into multiple rows, you are probably using too many and should use a paged dialog instead.
    Bad
    Good
    • Always use paged dialogs for configuration dialogs - assuming that there is more than one section of options to be configured. For other dialogs, use paged dialogs if there are too many tabs to put them into a tabbed dialog.
    Good
    • Dialogs should not be bigger than two thirds of the screen size and should always be resizable. Take care about high resolution displays (i.e. QXGA and more).
    • Save and restore user adjustments of dialog size.
    • Make sure there is at least one third white space, do not overload the panel.
    • Consider the common reading direction from left to right and top to bottom.
    • Dialogs are grouped in meaningful sections, for instance by group boxes. The actions are grouped along their context of use, not along technical relations.
    • Provide a title to each section.
    • Follow the guidelines for alignment.

    Implementation