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

7 Basic Controls

Revision as of 08:45, 17 February 2007 by Rherrmann.innoopract.com (Talk | contribs) (Class Button)

Back to RWTOverview

RWT will have the same behavior for all basic controls as SWT does. Currently there exists an incomplete implementation that provides basic functionality.

Class Label

Currently implemented:

  • get/set text
  • get/set image
Note: Just like in SWT, the label can only display a string or an image but not both at the same time. When both is set, the label displays the object that was set last. However, the behavior of the RWT label differs slightly from SWT in that that setting an image clears the text and vice versa. As a result, calling getImage() after setting a text using setText() returns null even though an image has been set previously.
  • alignment (LEFT, CENTER, RIGHT)
  • SEPARATOR style, both horizontal and vertical with the same styles as supported by SWT: SHADOW_NONE, SHADOW_IN, SHADOW_OUT

Class Button

Currently implemented:

  • the types CHECK, PUSH, RADIO
  • get/set text and image
  • selection
  • alignment (LEFT, CENTER, RIGHT)
  • SelectionListener
  • Default button behavior (see Shell)

Class Text

Currently implemented:

  • get/set text
  • SINGLE, MULTI and PASSWORD styles
  • READ_ONLY

Class List

Currently implemented:

  • all selection-related methods
  • handling of focused item
  • all item operations
  • control scroll behaviour similar to SWT via H_SCROLL and V_SCROLL style flags: scroll never, scroll horizontal only, scroll vertical only, automatically scroll when necessary
  • SelectionListener

Class Combo

Currently Implemented:

  • all selection-related methods
  • all item operations
  • SelectionListener

Back to the top