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 "11 Controls, Composites, Groups, and Shells"

m (Class Shell)
(Replaced content with "This page was obsolete and has been deleted. Please see the history if you need to access the content.")
 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Comparison SWT / RWT|Back to RWTOverview]]
+
This page was obsolete and has been deleted. Please see the history if you need to access the content.
 
+
===Class Control===
+
Currently implemented:
+
* visibility
+
* enablement
+
* tooltip text
+
* colors
+
* fonts
+
* context menu
+
* size, location and layout data
+
* borders (style flags BORDER and FLAT)
+
 
+
===Class Composite===
+
 
+
===Class Group===
+
A basic implementation exists. The various <code>SHADOW</code> styles are not yet supported. Though API for changing the font exists as it is inherited from <code>Control</code> using those methods has not effect client-side.
+
 
+
===Class Shell===
+
 
+
In contrary to SWT, Shells in RWT do <em>not </em> represent browser windows, but reside in a browser window (which in turn is represented by class [[5_Display#Display|Display]]).
+
 
+
The current implementation of Shell comprises the following features:
+
* get/set text (title bar caption)
+
* style flags MIN, MAX, RESIZE, APPLICATION_MODAL
+
* ShellListener
+

Latest revision as of 06:32, 7 January 2014

This page was obsolete and has been deleted. Please see the history if you need to access the content.

Back to the top