Sprints/UX2011/KMessageWidget: Difference between revisions

From KDE Community Wiki
Line 15: Line 15:
* Expected feedback: form closes
* Expected feedback: form closes
* First indicator of failure: form stays there
* First indicator of failure: form stays there
* Second indicator of failure: a KMessageWidget appears on top of the form
* Second indicator of failure: a KMessageWidget appears on top of the form, explaining the error condition


When used to provide negative feedback, KMessageWidget should be placed close to its context. In the case of a form, it should appear on top of the form entries.
When used to provide negative feedback, KMessageWidget should be placed close to its context. In the case of a form, it should appear on top of the form entries.

Revision as of 12:25, 17 April 2011

Three kinds of uses:

1. Positive or negative feedback

2. Opportunistic interaction (example: Firefox "remember password" bar)

3. Find/replace panels

Negative feedback

The KMessageWidget should be used as a secondary indicator of failure: the first indicator is for instance that the action the user expected to happen did not happen.

Example: User fills a form, clicks "Submit".

  • Expected feedback: form closes
  • First indicator of failure: form stays there
  • Second indicator of failure: a KMessageWidget appears on top of the form, explaining the error condition

When used to provide negative feedback, KMessageWidget should be placed close to its context. In the case of a form, it should appear on top of the form entries.

KMessageWidget should get inserted in the existing layout. Space should not be reserved for it, otherwise it becomes "dead space", ignored by the user. KMessageWidget should also not appear as an overlay to prevent blocking access to elements the user needs to interact with to fix the failure.

Positive feedback

KMessageWidget can be used for positive feedback but it shouldn't be overused.

Use KMessageWidget to:

  • Confirm success of "critical" transactions
  • Indicate completion of background tasks

Do not use KMessageWidget to:

  • Indicate successful saving of a file

Opportunistic interaction

Opportunistic interaction is the situation where the application suggests to the user an action he could be interested in perform, either based on an action the user just triggered or an event which the application noticed.

Example use cases:

  • A browser can propose remembering a recently entered password
  • A music collection can propose ripping a CD which just got inserted
  • A chat application may notify the user a "special friend" just connected

Layouts

The KMessageWidget should provide two possible shapes: line and rectangle.

Line

Example of layout for a negative feedback KMessageWidget:

+------------------------------------------+
| Sorry, the password you entered is wrong |
+------------------------------------------+

Example of layout for an opportunistic interaction KMessageWidget:

+--------------------------------------------------------------------------+
| Remember password for site example.com? (Remember) (Do not remember) (X) |
+--------------------------------------------------------------------------+

The widget height is always the height of one line of text plus margins. If text is too long, it is cropped like this:

+------------------------------------------------------------------+
| Remember password for... _more_ (Remember) (Do not remember) (X) |
+------------------------------------------------------------------+

Clicking on _more_ expands the widget to multiple lines:

+------------------------------------------------------------------+
| Remember password for site      (Remember) (Do not remember) (X) |
| example.com?                                                     |
+------------------------------------------------------------------+

Note: One should try to ensure the beginning of the message text makes it possible for the regular user to understand the message without clicking on the _more_ link. So avoid generic introductions like "Do you want FooApp to...".

Rectangle

Example usage: showing feedback at the bottom of a sidebar.

+--------------------+
| Do you want to (X) |
| rip this CD?       |
|                    |
|           (Rip CD) |
+--------------------+

Queuing: KMessageWidgets should not stack on each others. Assuming KMessageWidget A is visible, if KMessageWidget B is created, it should wait until A has been visible for at least 3 seconds and replace it.

Widget API

  • Properties
    • tone (negative, neutral, positive)
    • text
    • shape (line, rectangle)
    • showCloseButton
  • Methods
    • addAction(QAction*)
    • setMainWidget() low-level method to replace the existing text + buttons layout with a custom widget. Setting text and adding actions with addAction() should be preferred whenever possible.

To be refined

  • MessageBox-like Icon on the left?
  • Integration with KNotification?
  • Definition of a container to implement queuing rules?
  • Using a different widget for the "find/replace" use-case?