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 "15 Layout"

m (Which Layout Should I Use?)
(Replaced content with "This page was obsolete and has been deleted. Please see the history if you need to access the content.")
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
[[Comparison SWT / RWT|back to table of content]]
+
This page was obsolete and has been deleted. Please see the history if you need to access the content.
 
+
==Layout==
+
 
+
We use the exact same layout code (there are some minimal differences) as SWT does. Layout behavior is identical. Please create a bug report if you experience differences in layouting between RWT and SWT.
+
 
+
There is an implementation gap around the calculation of the preferred size right now, see [[4._Control_Fundamentals.#Preferred_Size.]]
+
 
+
===When Are Layouts Invoked?===
+
The implementation of when layouts are invoked is preliminary in RWT. It does the job right now but expect some changes.
+
 
+
===Class Layout===
+
identical
+
 
+
===Layout Data===
+
identical
+
 
+
===Class FillLayout===
+
identical
+
 
+
===Classes RowLayout and RowData===
+
identical
+
 
+
===Class GridLayout===
+
identical
+
 
+
===Defining the Grid===
+
identical
+
 
+
===Class FormLayout===
+
identical
+
 
+
===Assigning Width and Height Hints===
+
identical
+
 
+
===Which Layout Should I Use?===
+
see the SWT book ;-)
+
 
+
===Forcing a Layout===
+
identical
+
 
+
===Forcing Controls to Wrap===
+
identical
+

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