[ Previous | Next | Contents | Glossary | Home | Search ]
Motif and CDE 2.1 Style Guide



CDE Application Messages

From time to time, an application needs to present feedback to keep the user informed about the progress of ongoing activities and to alert the user to situations that require intervention. The CDE Motif interface provides many ways to provide such feedback to the user. This section describes the use of error messages, informational messages, and other message dialog boxes.

Error Messages

Use error messages when it is crucial to bring the information to the user's attention because the intended action cannot be carried out without user intervention. Use a Motif error dialog box to present application error messages. Keep in mind the basic three-part structure for error messages. Each error message should tell the user:

  1. What happened

  2. Why it happened

  3. What should be done to correct the problem

    Figure 58 is an example of an error dialog box.

    It is appropriate to assume that the user knows basic desktop terms, such as files or programs. However, avoid terminology that is typically understood only by an expert or frequent computer user unless the application is specifically targeted at computer professionals.

    In many cases, the only user response to an error dialog box is to click the OK button to dismiss the dialog box. However, you should be able to offer resolutions to the problem. If you have buttons for user actions, be sure to also include a Cancel button.

    Figure 58. Error Dialog Box.




    View figure.

  4. Informational Messages

    Use informational messages in the window footer to present progress, status, or helpful information to the user. Do not use informational messages to present crucial information because informational messages are deliberately designed to be nonobtrusive and many users may not notice them.

    Motif provides a message area at the bottom of the main window, but this is rather clumsy and ugly. A more elegant approach is to provide a wider margin below the data area of the main window where status information can be unobtrusively displayed, as shown in Figure 59. For other examples of using informational messages, see the status message area in the CDE Mailer.

    Figure 59. Informational Message in the Lower Margin of a Window.




    View figure.


    The text "Loading earth.gif..." is displayed at the start of the load and
    the text "Done" is added when the load has completed. The entire message is
    removed 5 seconds later.


    Informational messages in the footer area should be left-justified and displayed in a light font in keeping with their unobtrusive nature. Note that the margin where informational messages are displayed should not accept mouse focus. Progress messages in the footer area are normally displayed only while the operation is in progress. Remove notices and other information that is no longer valid within a few seconds to avoid confusion about whether the information is current.

    Other Message Dialogs

    CDE supports the following dialog boxes:

    Information dialog box
    Used to display status, completion of activity, or other informative types of messages to which the user need not necessarily respond other than to acknowledge having read the message.

    Question dialog box
    Used to ask questions of the user. The question should be clearly worded to indicate what a yes or no response means. The buttons displayed are Yes, No, and Help. Help provides additional information as to what the application will do in response to a Yes or No choice. When possible, you should replace the label for the Yes and No buttons to make it clear what action will be performed as a result of choosing either operation. For example, when a file is not yet saved but the user chooses to close it, Save, Discard, Cancel, and Help would be more appropriate choices than Yes or No in a question dialog box.

    Warning dialog box
    Used to communicate the consequences of an action requested by the user that may result in a loss of data or other undesirable event. The dialog box is presented before the action is performed and offers the user the opportunity to cancel the requested operation. The buttons typically displayed are Yes, No, and Help -- or Continue, Cancel, and Help.

    Working dialog box
    Used to display in-progress information to the user when this information is not displayed in the footer of your application's window. The dialog box contains a Stop button that allows the user to terminate the activity. When pressed, the operation is terminated at the next appropriate breakpoint, and a confirmation might be displayed asking whether the user really wants to stop the activity.


    [ Previous | Next | Contents | Glossary | Home | Search ]