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 (BusyIndicator)
Line 1: Line 1:
 
[[Comparison SWT / RWT|Back to RWTOverview]]
 
[[Comparison SWT / RWT|Back to RWTOverview]]
 +
 +
===Browser===
 +
YES, there is a (very basic) browser in a browser in a browser in a ...
 +
 +
The <code>setUrl</code> and <code>setText</code> method 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.
  
 
===BusyIndicator===
 
===BusyIndicator===

Revision as of 12:34, 21 January 2007

Back to RWTOverview

Browser

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

The setUrl and setText method 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.

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