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

(Classes Table, TableItem, and TableColumn)
(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.
 
+
===Classes Tree and TreeItem===
+
Currently implemented:
+
* Management of items
+
* Selection handling and SelectionListener (<code>widgetSelected</code> and <code>widgetDefaultSelected</code>)
+
* The <code>CHECK</code> style is evaluated and the corresponding SelectionEvent (detail == <code>CHECK</code>) 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 <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===
+
Currently implemented:
+
* The tab items can be positioned at <code>TOP</code> or <code>BOTTOM</code>
+
* Adding, removing and querying items
+
* Selection handling and SelectionListener
+

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