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 "Scout/Concepts/Layout"

(Layout properties)
(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
(25 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:Scout]]
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
{{ScoutPage|cat=Concepts}}
+
 
+
The Concepts pages define concepts and elements used in the Eclipse Scout Framework.
+
 
+
== Abstract ==
+
Scout provides a generic layout on any composite fields as:  
+
* {{ScoutLink|Concepts|GroupBox|GroupBox}}
+
* {{ScoutLink|Concepts|TabBox|TabBox}}
+
* {{ScoutLink|Concepts|SequenceBox|SequenceBox}}
+
* {{ScoutLink|Concepts|SplitBox|SplitBox}}
+
* {{ScoutLink|Concepts|RadioButtonGroup|RadioButtonGroup}}
+
 
+
The layout is mainly related to a grid layout with some additional features as <b>weight related resize behavior</b> and <b>some optimizations reducing the used space</b>. There are currently a horizontal and a vertical implementation of the grid layout.
+
 
+
== Layout properties ==
+
 
+
=== Groupbox Properties ===
+
The following group box properties affect the layout of the container. So the fields in the container getting layouted respecting the properties.
+
 
+
{|{{BMTableStyle}}
+
|-{{BMTHStyle}}
+
! Config method
+
! Meaning
+
! Default value
+
|-
+
| getConfiguredBodyGrid || meaning || VerticalSmartGroupBoxBodyGrid.class
+
|-
+
| getConfiguredColumnCount|| desc || a
+
|-
+
 
+
 
+
=== Form Field Properties ===
+
The form field properties define how a certain form field has to be layout in its container.
+
 
+
{|{{BMTableStyle}}
+
|-{{BMTHStyle}}
+
! Config method
+
! Meaning
+
|-
+
| getConfiguredGridX || desc
+
|-
+
| getConfiguredGridY || desc
+
|-
+
| getConfiguredGridW || desc
+
|-
+
| getConfiguredGridH || desc
+
|-
+
| getConfiguredGridWeightX || desc
+
|-
+
| getConfiguredGridWeightY || desc
+
|-
+
| getConfiguredGridUseUiWidth || desc
+
|-
+
| getConfiguredGridUseUiHeight || desc
+
|-
+
 
+
== Layout Inspector==
+

Latest revision as of 04:17, 14 March 2024

The Scout documentation has been moved to https://eclipsescout.github.io/.

Back to the top