1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
| <!DOCTYPE html>
| <html>
| <head>
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
| <title>The source code</title>
| <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
| <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
| <style type="text/css">
| .highlight { display: block; background-color: #ddd; }
| </style>
| <script type="text/javascript">
| function highlight() {
| document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
| }
| </script>
| </head>
| <body onload="prettyPrint(); highlight();">
| <pre class="prettyprint lang-js"><span id='Ext-layout-container-HBox'>/**
| </span> * A layout that arranges items horizontally across a Container. This layout optionally divides available horizontal
| * space between child items containing a numeric `flex` configuration.
| *
| * This layout may also be used to set the heights of child items by configuring it with the {@link #align} option.
| *
| * @example
| * Ext.create('Ext.Panel', {
| * width: 500,
| * height: 300,
| * title: "HBoxLayout Panel",
| * layout: {
| * type: 'hbox',
| * align: 'stretch'
| * },
| * renderTo: document.body,
| * items: [{
| * xtype: 'panel',
| * title: 'Inner Panel One',
| * flex: 2
| * },{
| * xtype: 'panel',
| * title: 'Inner Panel Two',
| * flex: 1
| * },{
| * xtype: 'panel',
| * title: 'Inner Panel Three',
| * flex: 1
| * }]
| * });
| */
| Ext.define('Ext.layout.container.HBox', {
|
| /* Begin Definitions */
|
| alias: ['layout.hbox'],
| extend: 'Ext.layout.container.Box',
| alternateClassName: 'Ext.layout.HBoxLayout',
|
| /* End Definitions */
|
| <span id='Ext-layout-container-HBox-cfg-align'> /**
| </span> * @cfg {String} align
| * Controls how the child items of the container are aligned. Acceptable configuration values for this property are:
| *
| * - **top** : **Default** child items are aligned vertically at the **top** of the container.
| * - **middle** : child items are aligned vertically in the **middle** of the container.
| * - **bottom** : child items are aligned vertically at the **bottom** of the container.
| * - **stretch** : child items are stretched vertically to fill the height of the container.
| * - **stretchmax** : child items are stretched vertically to the height of the largest item.
| */
| align: 'top', // top, middle, stretch, strechmax
|
| <span id='Ext-layout-container-HBox-cfg-alignRoundingMethod'> /**
| </span> * @cfg {"round"/"floor"/"ceil"} [alignRoundingMethod='round'] The Math method to use
| * for rounding fractional pixels when `{@link #align}:middle` is used.
| */
|
| <span id='Ext-layout-container-HBox-cfg-constrainAlign'> /**
| </span> * @cfg {Boolean} constrainAlign
| * Limits the size of {@link #align aligned} components to the size of the container under certain circumstances.
| * Firstly, the container height must not be determined by the height of the child components. Secondly, the child
| * components must have their height {@link Ext.AbstractComponent#shrinkWrap shrinkwrapped}.
| */
| constrainAlign: false,
|
| <span id='Ext-layout-container-HBox-property-type'> type : 'hbox',
| </span>
| <span id='Ext-layout-container-HBox-property-direction'> direction: 'horizontal',
| </span>
| <span id='Ext-layout-container-HBox-property-horizontal'> horizontal: true,
| </span>
| <span id='Ext-layout-container-HBox-property-names'> names: {
| </span> // parallel
| beforeX: 'left',
| beforeScrollX: 'left',
| beforeScrollerSuffix: '-before-scroller',
| afterScrollerSuffix: '-after-scroller',
| leftCap: 'Left',
| afterX: 'right',
| width: 'width',
| contentWidth: 'contentWidth',
| minWidth: 'minWidth',
| maxWidth: 'maxWidth',
| widthCap: 'Width',
| widthModel: 'widthModel',
| widthIndex: 0,
| x: 'x',
| scrollLeft: 'scrollLeft',
| overflowX: 'overflowX',
| hasOverflowX: 'hasOverflowX',
| invalidateScrollX: 'invalidateScrollX',
| parallelMargins: 'lr',
|
| // perpendicular
| center: 'middle',
| beforeY: 'top',
| afterY: 'bottom',
| height: 'height',
| contentHeight: 'contentHeight',
| minHeight: 'minHeight',
| maxHeight: 'maxHeight',
| heightCap: 'Height',
| heightModel: 'heightModel',
| heightIndex: 1,
| y: 'y',
| overflowY: 'overflowY',
| hasOverflowY: 'hasOverflowY',
| invalidateScrollY: 'invalidateScrollY',
| perpendicularMargins: 'tb',
|
| // Methods
| getWidth: 'getWidth',
| getHeight: 'getHeight',
| setWidth: 'setWidth',
| setHeight: 'setHeight',
| gotWidth: 'gotWidth',
| gotHeight: 'gotHeight',
| setContentWidth: 'setContentWidth',
| setContentHeight: 'setContentHeight',
| setWidthInDom: 'setWidthInDom',
| setHeightInDom: 'setHeightInDom',
| getScrollLeft: 'getScrollLeft',
| setScrollLeft: 'setScrollLeft',
| scrollTo: 'scrollTo'
| },
|
| <span id='Ext-layout-container-HBox-property-sizePolicy'> sizePolicy: {
| </span> flex: {
| '': {
| readsWidth : 0,
| readsHeight: 1,
| setsWidth : 1,
| setsHeight : 0
| },
| stretch: {
| readsWidth : 0,
| readsHeight: 0,
| setsWidth : 1,
| setsHeight : 1
| },
| stretchmax: {
| readsWidth : 0,
| readsHeight: 1,
| setsWidth : 1,
| setsHeight : 1
| }
| },
| '': {
| readsWidth : 1,
| readsHeight: 1,
| setsWidth : 0,
| setsHeight : 0
| },
| stretch: {
| readsWidth : 1,
| readsHeight: 0,
| setsWidth : 0,
| setsHeight : 1
| },
| stretchmax: {
| readsWidth : 1,
| readsHeight: 1,
| setsWidth : 0,
| setsHeight : 1
| }
| }
| });
| </pre>
| </body>
| </html>
|
|