You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

layout-orderedlayout.asciidoc 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. ---
  2. title: VerticalLayout and HorizontalLayout
  3. order: 3
  4. layout: page
  5. ---
  6. [[layout.orderedlayout]]
  7. = VerticalLayout and HorizontalLayout
  8. [classname]#VerticalLayout# and [classname]#HorizontalLayout# are ordered
  9. layouts for laying components out either vertically or horizontally,
  10. respectively. They both extend from [classname]#AbstractOrderedLayout#, together
  11. with the [classname]#FormLayout#. These are the two most important layout
  12. components in Vaadin, and typically you have a [classname]#VerticalLayout# as
  13. the root content of a UI.
  14. [classname]#VerticalLayout# has 100% default width and undefined height, so it
  15. fills the containing layout (or UI) horizontally, and fits its content
  16. vertically. [classname]#HorizontalLayout# has undefined size in both dimensions.
  17. Typical use of the layouts goes as follows:
  18. [source, java]
  19. ----
  20. VerticalLayout vertical = new VerticalLayout ();
  21. vertical.addComponent(new TextField("Name"));
  22. vertical.addComponent(new TextField("Street address"));
  23. vertical.addComponent(new TextField("Postal code"));
  24. layout.addComponent(vertical);
  25. ----
  26. In [classname]#VerticalLayout#, the captions of child components are placed above each component, so the layout would look as follows:
  27. image::img/orderedlayout_vertical.png[width=30%, scaledwidth=65%]
  28. [classname]#HorizontalLayout# gives the following layout:
  29. image::img/orderedlayout_horizontal.png[width=80%, scaledwidth=100%]
  30. [[layout.orderedlayout.declarative]]
  31. == Declarative Format
  32. Ordered layouts have the following declarative elements:
  33. |===============
  34. |Component|Element Name
  35. |[classname]#VerticalLayout#|[elementname]#v-vertical-layout#
  36. |[classname]#HorizontalLayout#|[elementname]#v-horizontal-layout#
  37. |[classname]#FormLayout#|[elementname]#v-form-layout#
  38. |===============
  39. The have the following declarative attributes:
  40. [[layout.orderedlayout.properties.table]]
  41. .Properties and Declarative Attributes
  42. [cols="1,2"]
  43. |===============
  44. |Property|Declarative Attribute
  45. |[parameter]#componentAlignment#|Alignment of a child component is specified in the child with: [literal]#++:left++# (default), [literal]#++:center++#, [literal]#++:right++#, [literal]#++:top++# (default), [literal]##++:middle++##, [literal]##++:bottom++##
  46. |[parameter]#spacing#|[parameter]##spacing##++[=++[replaceable]##<boolean>##++]++
  47. |[parameter]#margin#|[parameter]##margin##++[=++[replaceable]##<boolean>##++]++
  48. |[parameter]#expandRatio#|Expand ratio of a child component is specified in the child with: [parameter]#:expand#++[=++[replaceable]##<integer>##++]++ or [parameter]#:expand# (implies ratio 1)
  49. |===============
  50. They can also have any attributes applicable to super classes.
  51. For example:
  52. [source, html]
  53. ----
  54. <!-- Use margin and spacing -->
  55. <vaadin-vertical-layout size-full margin spacing>
  56. <vaadin-label><b>Hello!</b> - How are you?</vaadin-label>
  57. <!-- Use expand ratio -->
  58. <vaadin-horizontal-layout size-full :expand>
  59. ...
  60. <!-- Use expand ratio -->
  61. <vaadin-grid _id="mygrid" caption="My Grid"
  62. size-full :expand/>
  63. </vaadin-horizontal-layout>
  64. <vaadin-horizontal-layout width-full>
  65. ...
  66. <!-- Use alignment -->
  67. <vaadin-button :right><b>OK</b></vaadin-button>
  68. </vaadin-horizontal-layout>
  69. </vaadin-vertical-layout>
  70. ----
  71. [[layout.orderedlayout.spacing]]
  72. == Spacing in Ordered Layouts
  73. The ordered layouts can have spacing between the horizontal or vertical cells.
  74. Spacing is enabled by default, and can be disabled with [methodname]#setSpacing(false)# or declaratively
  75. with the [literal]#++spacing="false"++# attribute.
  76. The spacing has a default height or width, which can be customized in CSS. You
  77. need to set the height or width for spacing elements with
  78. [literal]#++v-spacing++# style. You also need to specify an enclosing rule
  79. element in a CSS selector, such as [literal]#++v-verticallayout++# for a
  80. [classname]#VerticalLayout# or [literal]#++v-horizontallayout++# for a
  81. [classname]#HorizontalLayout#. You can also use [literal]#++v-vertical++# and
  82. [literal]#++v-horizontal++# for all vertically or horizontally ordered layouts,
  83. such as [classname]#FormLayout#.
  84. For example, the following sets the amount of spacing for all [classname]##VerticalLayout##s (as well as [classname]##FormLayout##s) in the UI:
  85. [source, css]
  86. ----
  87. .v-vertical > .v-spacing {
  88. height: 30px;
  89. }
  90. ----
  91. Or for [classname]#HorizontalLayout#:
  92. [source, css]
  93. ----
  94. .v-horizontal > .v-spacing {
  95. width: 50px;
  96. }
  97. ----
  98. [[layout.orderedlayout.sizing]]
  99. == Sizing Contained Components
  100. The components contained within an ordered layout can be laid out in a number of
  101. different ways depending on how you specify their height or width in the primary
  102. direction of the layout component.
  103. [[figure.layout.orderedlayout.size.summary]]
  104. .Component widths in [classname]#HorizontalLayout#
  105. image::img/horizontallayout_sizing.png[width=75%, scaledwidth=100%]
  106. <<figure.layout.orderedlayout.size.summary>> gives a summary of the sizing
  107. options for a [classname]#HorizontalLayout# with spacing disabled.
  108. The figure is broken down in the following subsections.
  109. [[layout.orderedlayout.sizing.undefined]]
  110. === Layout with Undefined Size
  111. If a [classname]#VerticalLayout# has undefined height or
  112. [classname]#HorizontalLayout# undefined width, the layout will shrink to fit the
  113. contained components so that there is no extra space between them (apart from
  114. optional spacing).
  115. [source, java]
  116. ----
  117. HorizontalLayout fittingLayout = new HorizontalLayout();
  118. fittingLayout.setWidthUndefined(); // Default, can be omitted
  119. fittingLayout.setSpacing(false); // Compact layout
  120. fittingLayout.addComponent(new Button("Small"));
  121. fittingLayout.addComponent(new Button("Medium-sized"));
  122. fittingLayout.addComponent(new Button("Quite a big component"));
  123. parentLayout.addComponent(fittingLayout);
  124. ----
  125. The both layouts actually have undefined height by default and
  126. [classname]#HorizontalLayout# has also undefined width, while
  127. [classname]#VerticalLayout# has 100% relative width.
  128. If such a vertical layout with undefined height continues below the bottom of a
  129. window (a [classname]#Window# object), the window will pop up a vertical scroll
  130. bar on the right side of the window area. This way, you get a "web page". The
  131. same applies to [classname]#Panel#.
  132. [WARNING]
  133. .A layout that contains components with percentual size must have a defined size!
  134. ====
  135. If a layout has undefined size and a contained component has, say, 100% size,
  136. the component would fill the space given by the layout, while the layout would
  137. shrink to fit the space taken by the component, which would be a paradox. This
  138. requirement holds for height and width separately. The debug window allows
  139. detecting such invalid cases; see
  140. <<../advanced/advanced-debug#advanced.debug.hierarchy,"Inspecting
  141. Component Hierarchy">>.
  142. ====
  143. An exception to the above rule is a case where you have a layout with undefined
  144. size that contains a component with a fixed or undefined size together with one
  145. or more components with relative size. In this case, the contained component
  146. with fixed (or undefined) size in a sense defines the size of the containing
  147. layout, removing the paradox. That size is then used for the relatively sized
  148. components.
  149. The technique can be used to define the width of a [classname]#VerticalLayout#
  150. or the height of a [classname]#HorizontalLayout#.
  151. [source, java]
  152. ----
  153. // Vertical layout would normally have 100% width
  154. VerticalLayout vertical = new VerticalLayout();
  155. // Shrink to fit the width of contained components
  156. vertical.setWidth(Sizeable.SIZE_UNDEFINED, 0);
  157. // Label has normally 100% width, but we set it as
  158. // undefined so that it will take only the needed space
  159. Label label =
  160. new Label("\u2190 The VerticalLayout shrinks to fit "+
  161. "the width of this Label \u2192");
  162. label.setWidth(Sizeable.SIZE_UNDEFINED, 0);
  163. vertical.addComponent(label);
  164. // Button has undefined width by default
  165. Button butt = new Button("\u2190 This Button takes 100% "+
  166. "of the width \u2192");
  167. butt.setWidth("100%");
  168. vertical.addComponent(butt);
  169. ----
  170. [[figure.layout.orderedlayout.sizing.undefined.defining]]
  171. .Defining the Size with a Component
  172. image::img/orderedlayout-sizing-undefined.png[width=50%, scaledwidth=75%]
  173. [[layout.orderedlayout.defined-size]]
  174. === Layout with Defined Size
  175. If you set a [classname]#HorizontalLayout# to a defined size horizontally or a
  176. [classname]#VerticalLayout# vertically, and there is space left over from the
  177. contained components, the extra space is distributed equally between the
  178. component cells. The components are aligned within these cells according to
  179. their alignment setting, top left by default, as in the example below.
  180. [source, java]
  181. ----
  182. fixedLayout.setWidth("400px");
  183. ----
  184. [[layout.orderedlayout.expanding]]
  185. === Expanding Components
  186. Often, you want to have one component that takes all the available space left
  187. over from other components. You need to set its size as 100% and set it as
  188. __expanding__ with [methodname]#setExpandRatio()#. The second parameter for the
  189. method is an expansion ratio, which is relevant if there are more than one
  190. expanding component, but its value is irrelevant for a single expanding
  191. component.
  192. [source, java]
  193. ----
  194. HorizontalLayout layout = new HorizontalLayout();
  195. layout.setWidth("400px");
  196. // These buttons take the minimum size.
  197. layout.addComponent(new Button("Small"));
  198. layout.addComponent(new Button("Medium-sized"));
  199. // This button will expand.
  200. Button expandButton = new Button("Expanding component");
  201. // Use 100% of the expansion cell's width.
  202. expandButton.setWidth("100%");
  203. // The component must be added to layout
  204. // before setting the ratio
  205. layout.addComponent(expandButton);
  206. // Set the component's cell to expand.
  207. layout.setExpandRatio(expandButton, 1.0f);
  208. parentLayout.addComponent(layout);
  209. ----
  210. In the declarative format, you need to specify the [literal]#++:expand++#
  211. attribute in the child components. The attribute defaults to expand ratio 1.
  212. Notice that you can not call [methodname]#setExpandRatio()# before you have
  213. added the component to the layout, because it can not operate on an component
  214. that it doesn't yet have.
  215. [[layout.orderedlayout.expandratio]]
  216. === Expand Ratios
  217. If you specify an expand ratio for multiple components, they will all try to use
  218. the available space according to the ratio.
  219. [source, java]
  220. ----
  221. HorizontalLayout layout = new HorizontalLayout();
  222. layout.setWidth("400px");
  223. // Create three equally expanding components.
  224. String[] captions = { "Small", "Medium-sized",
  225. "Quite a big component" };
  226. for (int i = 1; i <= 3; i++) {
  227. Button button = new Button(captions[i-1]);
  228. button.setWidth("100%");
  229. layout.addComponent(button);
  230. // Have uniform 1:1:1 expand ratio.
  231. layout.setExpandRatio(button, 1.0f);
  232. }
  233. ----
  234. As the example used the same ratio for all components, the ones with more
  235. content may have the content cut. Below, we use differing ratios:
  236. [source, java]
  237. ----
  238. // Expand ratios for the components are 1:2:3.
  239. layout.setExpandRatio(button, i * 1.0f);
  240. ----
  241. If the size of the expanding components is defined as a percentage (typically
  242. "100%"), the ratio is calculated from the __overall__ space available for the
  243. relatively sized components. For example, if you have a 100 pixels wide layout
  244. with two cells with 1.0 and 4.0 respective expansion ratios, and both the
  245. components in the layout are set as [methodname]#setWidth("100%")#, the cells
  246. will have respective widths of 20 and 80 pixels, regardless of the minimum size
  247. of the components.
  248. However, if the size of the contained components is undefined or fixed, the
  249. expansion ratio is of the __excess__ available space. In this case, it is the
  250. excess space that expands, not the components.
  251. [source, java]
  252. ----
  253. for (int i = 1; i <= 3; i++) {
  254. // Button with undefined size.
  255. Button button = new Button(captions[i - 1]);
  256. layout4.addComponent(button);
  257. // Expand ratios are 1:2:3.
  258. layout4.setExpandRatio(button, i * 1.0f);
  259. }
  260. ----
  261. It is not meaningful to combine expanding components with percentually defined
  262. size and components with fixed or undefined size. Such combination can lead to a
  263. very unexpected size for the percentually sized components.
  264. [[layout.orderedlayout.percentual]]
  265. === Percentual Sizing
  266. A percentual size of a component defines the size of the component _within its cell_.
  267. Usually, you use "100%", but a smaller percentage or a fixed size
  268. (smaller than the cell size) will leave an empty space in the cell and align the
  269. component within the cell according to its alignment setting, top left by
  270. default.
  271. [source, java]
  272. ----
  273. HorizontalLayout layout50 = new HorizontalLayout();
  274. layout50.setWidth("400px");
  275. String[] captions1 = { "Small 50%", "Medium 50%",
  276. "Quite a big 50%" };
  277. for (int i = 1; i <= 3; i++) {
  278. Button button = new Button(captions1[i-1]);
  279. button.setWidth("50%");
  280. layout50.addComponent(button);
  281. // Expand ratios for the components are 1:2:3.
  282. layout50.setExpandRatio(button, i * 1.0f);
  283. }
  284. parentLayout.addComponent(layout50);
  285. ----