Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "8 Tool Bars and Menus"

(Classes ToolBar and ToolItem)
(Classes Menu and MenuItem)
Line 7: Line 7:
  
 
===Classes Menu and MenuItem===
 
===Classes Menu and MenuItem===
For all the various kinds of menus and items the basic behavior is implemented.
+
The implementation of Menu and MenuItem is almost feature-complete.
 +
The class Menu yet lacks the <code>defaultItem</code> attribute.
 +
More listeners are to come. As of now there is only the <code>SelectionListener</code> on <code>MenuItem</code> available.

Revision as of 12:49, 25 March 2007

Back to RWTOverview

Classes ToolBar and ToolItem

Almost feature-complete.

Except for setHotImage and setDisabledImage all attributes work as in SWT. Even though you cannot set a distinct disabled image yet, a ToolItem displays its image dimmed when it is in disabled state.

Classes Menu and MenuItem

The implementation of Menu and MenuItem is almost feature-complete. The class Menu yet lacks the defaultItem attribute. More listeners are to come. As of now there is only the SelectionListener on MenuItem available.

Back to the top