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 "1 Widget Fundamentals"

 
Line 1: Line 1:
 
'''What Is a Widget?'''
 
'''What Is a Widget?'''
  
 +
TBD
 
'''Widget Hierarchy.'''
 
'''Widget Hierarchy.'''
 +
 +
RWT uses the same widget hierarchy as SWT. In addition the class
 +
<code>Widget</code> implements Adaptable.
  
 
'''Events and Listeners.'''
 
'''Events and Listeners.'''
 +
 +
Currently RWT does not implement ''untyped Listeners'' as SWT does.
 +
Therefore all related methods (like Widget.notifyListeners(int,Event))
 +
are missing.
  
 
'''Application Data.'''
 
'''Application Data.'''
  
 
'''Querying the Display.'''
 
'''Querying the Display.'''

Revision as of 10:37, 8 January 2007

What Is a Widget?

TBD Widget Hierarchy.

RWT uses the same widget hierarchy as SWT. In addition the class Widget implements Adaptable.

Events and Listeners.

Currently RWT does not implement untyped Listeners as SWT does. Therefore all related methods (like Widget.notifyListeners(int,Event)) are missing.

Application Data.

Querying the Display.

Back to the top