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"

Line 1: Line 1:
 +
[[Comparison SWT / RWT|back to table of content]]
 +
 
RWT will have the same behavior for all basic controls as SWT does.  
 
RWT will have the same behavior for all basic controls as SWT does.  
 
Currently there exists an incomplete implementation that provides basic functionality.
 
Currently there exists an incomplete implementation that provides basic functionality.
  
'''Class Label.'''
+
===Class Label.===
  
 
Currently implemented:
 
Currently implemented:
 
* get/set text
 
* get/set text
  
'''Class Button.'''
+
===Class Button.===
  
 
Currently implemented:
 
Currently implemented:
Line 16: Line 18:
 
* SelectionListener
 
* SelectionListener
  
'''Class Text.'''
+
===Class Text.===
  
 
Currently implemented:
 
Currently implemented:
 
* get/set text
 
* get/set text
  
'''Class List.'''
+
===Class List.===
  
 
Currently implemented:
 
Currently implemented:
Line 29: Line 31:
 
* SelectionListener
 
* SelectionListener
  
'''Class Combo.'''
+
===Class Combo.===
  
 
Currently Implemented:
 
Currently Implemented:

Revision as of 12:43, 8 January 2007

back to table of content

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

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