Qtopia Home - Classes - Hierachy - Annotated - Functions - Qt Embedded |
|
Contents
This document describes the rules to be followed when designing an application for the Qtopia Phone Edition. The focus is on consistency, think very carefully before departing from the preferred style.
There are two basic styles of application:
The main window of a document based application will present a list of items, or in some cases a list of sub-lists.
Note: The documents are not necessarily individual files. The entries in an address book for instance may be considered documents.
Document based applications should follow a standard navigational flow:
This is rarely needed. It is used when there are a number of lists that behave differently or have some incompatible properties. An example application is the Qtopia Messaging application. This application shows folders that have specific functions. The Outbox, Trash, Inbox, etc. all have particular properties that preclude grouping their items into one list.
The context menu must contain entries that act on all of the lists, and optionally a New entry.
Highlighting a list and pressing Select displays the List of Items. Pressing Back or Done must close the application.
This is the screen most applications will display when started via the launcher. It lists the documents that the application may view and/or edit. It is recommended that the menu contains a View Category... option to display only the items in the selected category.
The context menu should contain entries that act on all of the items, and optionally a New entry.
Highlighting an item and pressing Select should display a more detailed view of the highlighted item. Pressing Back or Done must return to the previous list of items or lists (if present), otherwise close the application.
When an item in the list is used to group or store information; selecting that list item should present the information about that item.
This screen displays a single item, and may allow navigation and activation of data within the view.
The context menu must contain entries that act only on the viewed item. If the application can edit the document, it should contain an Edit menu entry.
If the view contains elements that can be activated, then the Select key must activate the highlighted element. Pressing Back or Done must return to the list of items.
This screen allows a single item to be modified. Edit screens must be able to be canceled via the Cancel option found in the context menu.
Note: When a user selects the Done or Back option and nothing has been altered the button acts as the Cancel option otherwise the item will be stored. More information on this can be found in the ... section.
When creating or editing an item, the first tab must be displayed with the first input widget focused.
The context menu must be limited to those entries that act on the item being edited. Phones that do not offer a No button may automatically have a Cancel entry added to the end of the menu.
Pressing Back or Done must accept the changes and return to the view. Pressing Cancel must discard the changes and return to the view.
An application that can create or edit an item should provide the ability to remove an item of the same type.
Items are only able to be deleted when viewing there details hence only one at a time.
In order to maintain a consistent navigational flow, the following rules must be adhered to:
Note: In case there is no tabbed dialog it is very tempting to give the left and right buttons the same functionality as up and down. We have explicitly chosen NOT to do so in order to keep the user interface as consistent as possible, i.e. maintaining one way of doing things.
An input form should provide a simple and familiar way for the user to input data. The basic layout of an input form is a 2 columned table: the first column provides a label for the field found in the same row; the second is the input field.
The basic layout of an input form should remain consistent between all applications. It is also recommended that the same input form is used when creating and editing an item.
These applications allow a specific task to be performed. They do not operate on documents, though they may generate documents. Examples of task based applications are Clock and Calculator.
The rules listed below should be followed when creating a label:
Please utilize the Currently used label names table to keep labels consistent across applications.
Button labels should follow the same labeling scheme described in Labels section.
For some applications it is desirable to associate keypad keys to buttons displayed in the applications (as is done in the the stopwatch/clock application) this is not recommended but if it must be done the label should include the associated keys label.
The Copy and Paste options should be available in all text input fields unless there is sufficient reason not to have these options listed.
When the using the multitap input method pressing the 1 button should display a number of extended characters that are specific to the currently selected dialog.
Note: When using the singletap input method and the field should always start with a capital letter, the first character should automatically be capitalized.
Input fields should only remember the input type for that specific field (not all widgets of that type).
By default singletap should be enabled in any text input field.
No characters other than numbers should be allowed in this field. Letters should be appended as labels or combo-boxes where appropriate. For example, "10 mins" should only display "10" and have mins appended as a label.
Tab widgets should be able to gain focus from the user pressing either of the up or down directional pad buttons. When a user has the tab selected pressing the select button should allow the them to proceed to the next available tab. Pressing the up or down directional pad buttons again will return the focus to the dialog, selecting the first or last element in the dialog.
If the user presses either of the left or right directional pad buttons while in a tabbed dialog, the user should be able to change the tab with the focus shifting to the tab's label/icon.
A list may be displayed as an icon while it is not selected but when the list is opened the icon and label should be displayed with the icon displayed.
The default focus when opening a list should be on the item that the list was set to prior to opening.
If the list allows the user to select a blank item then the blank item should be listed as blank ie. not use a label such as "blank" or The ordering of items in a menu must be based of the following ordering:
When the selection of a menu item leads to a new dialog, the menu item label should only be suffixed with "..." if the command is being further refined. In other words, the "..." extension should only be placed on the end of menu names when a selection of items is going to be offered or additional commands have to be specified. No space should be left between the first '.' and the last character of the menu name. Please refer to Using the "..." label for a full explanation.
Note: Application menu labels should not be appended with the type of item on which they are performing the action. For example, only "Edit" is required on the menu label, not "Edit Event".
Where an application is structured as a list of items and selecting an item shows its details, the menu for the list should not include any actions that are directly related to a single item. Actions that are applied to an individual item (and never to a list) should be placed in the menu that becomes available when the details of an item are shown. (Menu, Down-past-New, Select-Edit is just as many steps as Select-Item, Menu, Select-Edit).
When particular widgets are selected the context menu may change its option list. Promoting this functionality is not recommended.
Menu names should follow all conventions found in the Naming conventions.
An acronym or abbreviation for a menu item should only be used if the label doesn't fit on the screen OR if an acronym or abbreviation already exists for the current label (promotes consistency in the use of text labels).
Some dialogs consist of a list of items, only one of which the user needs to select in order to complete an operation. In a small number of cases the user may wish to do more with the item, such as edit it via the menu.
Such list dialogs are Menu-like Dialogs, and should behave like menus:
To assist in creating Menu-like dialogs you can call the function
QPEApplication::setMenuLike();
which will map the context bar and menu correctly for the dialog.
If the dialog has a menu, consider having 'Activate', or 'Select' in the menu,
but make sure that this command does not close the dialog.
Examples: Profile selection, Speed dial action selection.
A Dialogs title should describe the process that is currently taking place in the dialog. For example, "Editing event", "Creating event". A dialog title should not have its text appended with "...".
Message dialogs that allow a positive or negative response should be phrased such that the user can answer "Yes" or "No", rather than "OK" or "Cancel".
Informative Message dialogs should only allow the Back/ Done context bar option.
Well defined widgets (ie. those defined in qt) should always be used where possible. If a custom widget must be used, make sure that such a widget doesn't already exist.
Ie. Time input widgets.
When an application is activated via a QCop message in order to view a document, pressing Back or Done must close the application. For example viewing a picture from the Documents launcher will open the picture in the Pictures application, Closing the image viewed in the application will close the application and return to the Documents launcher.
Application names should be based on established application names used in the current phone market. They should be nouns and obvious to a user from any background.
Note: An application's title should be the same as its launcher name.
All words should start with a capital letter with the exception of words that
are usually excluded from acronyms such as "of", "and", or "to". These extremely common words are referred to as stop words.
Once a certain name is used for a specific item it should be re-used in each
and every application. For example: if Contacts and Calendar both have a
"company" info field they should use the same label. This means both applications use either "Company", "Cmpny", or "Comp.". Please see the used label names table for reference.
The rules listed below should be followed when using abbreviations:
NOTE: No abbreviation point is required if the last letter of the word is displayed such as "cmpny".
Acronyms basically follow the same set of rules as those found in the abbreviations section. Always check existing acronyms before creating a new one.
The following rules define the use of the ... in association with menu items.
Use ... only when the menu is followed by another dialog that is a direct and integral continuation of the command.
Do not use "..." when the menu is followed by another dialog that is related to but not a continuation of the command.
Qtopia requires the following keys:
Qtopia supports the following additional keys:
* on some phones, two keys represent both vertical and horizontal directions of suggested motion. Sometimes these are a Left/Up button and a Right/Down button, at other times they are a Left/Down button and a Right/Up button.
Qtopia desktop should follow the same standards adhered in Qtopia but should also follow close to the standards established by desktop user interfaces.
Note: Creation of events, tasks and contacts should follow the creation rules specified in Qtopia ie. if the user doesn't enter sufficient information the item is not created.
When should I display a confirmation dialog?:
What size should I be setting my dialog?:
Should widgets be hidden or disabled?:
Should I be adding a "Properties" option to my application?:
Menus
Menu names
Menu-like dialogs
Dialogs
Custom widgets
Interprocess actions
Application naming
Naming conventions
Abbreviations
Acronyms
Using the "..." label
Examples of when to use "..."
Examples of when not to use "..."
Currently used label names
PDA Label Phone Label
Categories Category
Time zone T.Z.
Anniversary Anniv.
Qtopia Phone Keys
Name
Alternative representations
Usual binding
Previous
Left, Up, or Down Arrow*
Previous item or value.
Next
Right, Down, or Up Arrow*
Next item or value.
Select
Yes, OK
Activate item or confirm changes.
Back
No, Cancel
Delete text or close window.
1
1 or space
2..9
Digits with phone key lettering.
0
0 or Function 1
*
* or Function 2
#
# or Function 3
Name
Alternative representations
Usual binding
Menu
Invoke context menu.
Up
Up Arrow
Item physically above
Down
Down Arrow
Item physically below.
Left
Left Arrow
Item physically to the left.
Right
Right Arrow
Item physically to the right.
Delete
Cancel, Clear
Delete item.
Jog
Wheel up/down
Scroll view or values.
F\ex
Function keys
Invoke global operation.
Standard Icons and Usage
Icon
Component
Filename
Description of Use

Context Bar
back.png
Done: Finished using the current screen and wish to return to previous window.

Context Bar
backspace.png
Delete text: Deletes (backspace) 1 character.

Context Bar
cancel.png
Cancel: Removes all changes performed on the current item (transaction).

Context Bar
ok.png
Accept: Accepts and disengages the current information/data in the currently selected widget.

Context Bar
options.png
Open/Close Menu: Displays the current window's context menu.

Context Bar
select.png
Engage/Select: Selects the current item, widget or grouping.

Context Bar
view.png
More Information: Selects and displays information about the currently focused item.

Context Menu
beam.png
Beam: Sends the currently viewed item via IR.

Context Menu
edit.png
Edit: Edits the currently viewed item.

Context Menu
find.png
Find/Search: Locates an item.
![]()
Context Menu
help_icon.png
Help: Displays the help documentation for the current window.

Context Menu
new.png
New: Creates a new item.

Context Menu
trash.png
Delete item: Deletes the currently viewed item.
Qtopia desktop.
F.A.Q
Copyright © 2001-2004 Trolltech
Trademarks