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"

m (Browser)
Line 7: Line 7:
  
 
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.
 
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 as well as all event listeners (Modify, Selection and Verify) are not yet implemented.
  
 
===BusyIndicator===
 
===BusyIndicator===

Revision as of 15:09, 17 February 2007

Back to RWTOverview

Browser

YES, there is a (very basic) browser in a browser in a browser in a ...

The setUrl and setText methods can be used to control what is displayed in the browser and the LocationListeners are notified (and can veto) about such changes.

The current implementation realizes the browser client-side via an IFRAME 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 WRAP style flag as well as all event listeners (Modify, Selection and Verify) are not yet implemented.

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

Back to the top