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 "7 Basic Controls"

m
(Class Label)
Line 8: Line 8:
 
Currently implemented:
 
Currently implemented:
 
* get/set text
 
* get/set text
 +
* alignment (<code>LEFT</code>, <code>CENTER</code>, <code>RIGHT</code>)
 +
* SEPARATOR style, both horizontal and vertical with the same styles as supported by SWT: <code>SHADOW_NONE</code>, <code>SHADOW_IN</code>, <code>SHADOW_OUT</code>
 +
The API for setting images already exists but is not yet realized client-side.
  
 
===Class Button===
 
===Class Button===

Revision as of 15:33, 21 January 2007

Back to RWTOverview

RWT will have the same behavior for all basic controls as SWT does. Currently there exists an incomplete implementation that provides basic functionality.

Class Label

Currently implemented:

  • get/set text
  • alignment (LEFT, CENTER, RIGHT)
  • SEPARATOR style, both horizontal and vertical with the same styles as supported by SWT: SHADOW_NONE, SHADOW_IN, SHADOW_OUT

The API for setting images already exists but is not yet realized client-side.

Class Button

Currently implemented:

  • the types CHECK, PUSH, RADIO
  • get/set text and image
  • selection
  • alignment
  • SelectionListener

Class Text

Currently implemented:

  • get/set text

Class List

Currently implemented:

  • all selection-related methods
  • handling of focused item
  • all item operations
  • SelectionListener

Class Combo

Currently Implemented:

  • all selection-related methods
  • all item operations
  • SelectionListener

Back to the top