Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "22 Miscellaneous"

(Spinner)
(Replaced content with "This page was obsolete and has been deleted. Please see the history if you need to access the content.")
 
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.
 
+
===Browser===
+
YES, there is a (very basic) browser in a browser in a browser in a ...
+
 
+
The <code>setUrl</code> and <code>setText</code> methods can be used to control what is displayed in the browser and the <code>LocationListener</code>s are notified (and can veto) about such changes.
+
 
+
The current implementation realizes the browser client-side via an <code>IFRAME</code> tag. Great care should be taken when using this widget, as web sites could break the client-side application when executing JavaScript.
+
 
+
===Spinner===
+
A basic Spinner widget is available that works much the same as in SWT. The <code>WRAP</code> style  flag is not yet implemented.
+
An initial implementation of the ModifyEvent exists that has the same characteristics as the one for [[7_Basic_Controls#Class_Text|Text]].
+
 
+
===BusyIndicator===
+
A basic implementation exists that executes the passed runnable.
+
 
+
Since during a request is processed the client waits for the response and shows a busy cursor anyway, we don't intend to enhance the implementation for now.
+
 
+
===PopupList===
+
- planned (low priority)
+
 
+
===ControlEditor===
+
- planned
+
 
+
===StyledText===
+
TBD
+

Latest revision as of 06:46, 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