Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Top Ten Lists Working Page"

(Starter Set)
(Starter Set)
Line 19: Line 19:
 
#Useless dialogs
 
#Useless dialogs
 
#Cryptic error messages
 
#Cryptic error messages
 +
#Messages with concatenated strings
 
#Property pages that don't adhere to platform uses (normal and tabbed)
 
#Property pages that don't adhere to platform uses (normal and tabbed)
  
Line 48: Line 49:
  
 
Kim Peter
 
Kim Peter
 +
 +
 +
Another one for Violations regarding messages:
 +
 +
Creating messages with concatenated strings. They have the potential for losing their meaning when they get translated.
 +
 +
Raji Akella

Revision as of 07:05, 23 March 2007

Starter Set

Top Ten Eclipse UI Guidelines

  1. Use the Eclipse look and feel if extending or plugging into Eclipse
  2. Use common SWT controls to get what SWT offers for cross-platform adaptability and accessibility
  3. Be familiar with APIs for the UIs you are building
  4. Use icons and graphics consistent with the Eclipse style, decorations, states, and quality
  5. Understand the conventions of the OSs you are developing for
  6. Use understandable messages to help people recover from error conditions
  7. Don't initiate dialogs or wizards in an error state
  8. Use quick fix and quick assist mechanisms
  9. Reserve time for "polish"


Top Ten Eclipse UI Violations

  1. Low quality graphics or not consistent with the Eclipse style
  2. Poorly organized dialogs
  3. Oddly sized dialogs and wizards
  4. Useless dialogs
  5. Cryptic error messages
  6. Messages with concatenated strings
  7. Property pages that don't adhere to platform uses (normal and tabbed)


Additions / Ideas

Top Ten Eclipse UI Guidelines

Should we mention something about Accessibility in the Good Practices list ?

Raji Akella

Ref: http://wiki.eclipse.org/index.php/Platform_UI/Accessibility_Features


Top Ten Eclipse UI Violations

5. Bastardized property pages

You may choose to use friendlier language, but it pains me every time I come across a property pages that don't adhere to what the platform uses (normal or tabbed).

Just a pet-peeve ;)

Chris Aniszczyk


Useless dialogs

(Found on Steve Northover's blog: http://inside-swt.blogspot.com/2007/03/useless-dialog-of-day.html)

Kim Peter


Another one for Violations regarding messages:

Creating messages with concatenated strings. They have the potential for losing their meaning when they get translated.

Raji Akella

Back to the top