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 "9 Advanced Controls"

(Classes Tree and TreeItem)
(Classes Table, TableItem, and TableColumn)
Line 10: Line 10:
 
Currently implemented:
 
Currently implemented:
 
* Management of items and columns
 
* Management of items and columns
* Selection handling and SelectionListener
+
* Selection-handling and -events (multi-selection is yet to come)
 +
* The column header and grid lines can be shown and hidden
 +
* Columns can be resized and the according <code>ControlEvent</code> is fired
 +
* Columns fire a <code>SelectionEvent</code> when clicked
 +
* <code>showItem</code>, <code>showSelection</code> and <code>setTopIndex</code>
  
 
===Classes TabFolder and TabItem===
 
===Classes TabFolder and TabItem===

Revision as of 17:14, 26 April 2007

Back to RWTOverview

Classes Tree and TreeItem

Currently implemented:

  • Management of items
  • Selection handling and SelectionListener (widgetSelected and widgetDefaultSelected)
  • The CHECK style is evaluated and the corresponding SelectionEvent (detail == CHECK) is fired.

Classes Table, TableItem, and TableColumn

Currently implemented:

  • Management of items and columns
  • Selection-handling and -events (multi-selection is yet to come)
  • The column header and grid lines can be shown and hidden
  • Columns can be resized and the according ControlEvent is fired
  • Columns fire a SelectionEvent when clicked
  • showItem, showSelection and setTopIndex

Classes TabFolder and TabItem

Currently implemented:

  • The tab items can be positioned at TOP or BOTTOM
  • Adding, removing and querying items
  • Selection handling and SelectionListener

Back to the top