summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/framework/source/class/qx/ui/layout/BoxLayout.js
blob: c31e9c796c69f473208aa31a78717d7334aa901a (plain)
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
/* ************************************************************************

   qooxdoo - the new era of web development

   http://qooxdoo.org

   Copyright:
     2004-2006 by 1&1 Internet AG, Germany, http://www.1and1.org

   License:
     LGPL 2.1: http://www.gnu.org/licenses/lgpl.html

   Authors:
     * Sebastian Werner (wpbasti)
     * Andreas Ecker (ecker)

************************************************************************ */

/* ************************************************************************

#module(ui_basic)
#module(ui_layout)

************************************************************************ */

qx.OO.defineClass("qx.ui.layout.BoxLayout", qx.ui.core.Parent,
function(vOrientation)
{
  qx.ui.core.Parent.call(this);

  // apply orientation
  if (qx.util.Validation.isValidString(vOrientation)) {
    this.setOrientation(vOrientation);
  }
});

qx.ui.layout.BoxLayout.STR_REVERSED = "-reversed";



/*
---------------------------------------------------------------------------
  PROPERTIES
---------------------------------------------------------------------------
*/

/*!
  The orientation of the layout control. Allowed values are "horizontal" (default) and "vertical".
*/
qx.OO.addProperty({ name : "orientation", type : "string", possibleValues : [ "horizontal", "vertical" ], addToQueueRuntime : true });

/*!
  The spacing between childrens. Could be any positive integer value.
*/
qx.OO.addProperty({ name : "spacing", type : "number", defaultValue : 0, addToQueueRuntime : true, impl : "layout" });

/*!
  The horizontal align of the children. Allowed values are: "left", "center" and "right"
*/
qx.OO.addProperty({ name : "horizontalChildrenAlign", type : "string", defaultValue : "left", possibleValues : [ "left", "center", "right" ], impl : "layoutOrder", addToQueueRuntime : true });

/*!
  The vertical align of the children. Allowed values are: "top", "middle" and "bottom"
*/
qx.OO.addProperty({ name : "verticalChildrenAlign", type : "string", defaultValue : "top", possibleValues : [ "top", "middle", "bottom" ], impl : "layoutOrder", addToQueueRuntime : true });

/*!
  Should the children be layouted in reverse order?
*/
qx.OO.addProperty({ name : "reverseChildrenOrder", type : "boolean", defaultValue : false, impl : "layoutOrder", addToQueueRuntime : true });

/*!
  Should the widgets be stretched to the available width (orientation==vertical) or height (orientation==horizontal)?
  This only applies if the child has not configured a own value for this axis.
*/
qx.OO.addProperty({ name : "stretchChildrenOrthogonalAxis", type : "boolean", defaultValue : true, addToQueueRuntime : true });

/*!
  If there are min/max values in combination with flex try to optimize placement.
  This is more complex and produces more time for the layouter but sometimes this feature is needed.
*/
qx.OO.addProperty({ name : "useAdvancedFlexAllocation", type : "boolean", defaultValue : false, addToQueueRuntime : true });





/*
---------------------------------------------------------------------------
  INIT LAYOUT IMPL
---------------------------------------------------------------------------
*/

/*!
  This creates an new instance of the layout impl this widget uses
*/
qx.Proto._createLayoutImpl = function() {
  return this.getOrientation() == "vertical" ? new qx.renderer.layout.VerticalBoxLayoutImpl(this) : new qx.renderer.layout.HorizontalBoxLayoutImpl(this);
}






/*
---------------------------------------------------------------------------
  HELPERS
---------------------------------------------------------------------------
*/

qx.Proto._layoutHorizontal = false;
qx.Proto._layoutVertical = false;
qx.Proto._layoutMode = "left";

qx.Proto.isHorizontal = function() {
  return this._layoutHorizontal;
}

qx.Proto.isVertical = function() {
  return this._layoutVertical;
}

qx.Proto.getLayoutMode = function()
{
  if (this._layoutMode == null) {
    this._updateLayoutMode();
  }

  return this._layoutMode;
}

qx.Proto._updateLayoutMode = function()
{
  this._layoutMode = this._layoutVertical ? this.getVerticalChildrenAlign() : this.getHorizontalChildrenAlign();

  if (this.getReverseChildrenOrder()) {
    this._layoutMode += qx.ui.layout.BoxLayout.STR_REVERSED;
  }
}

qx.Proto._invalidateLayoutMode = function() {
  this._layoutMode = null;
}






/*
---------------------------------------------------------------------------
  MODIFIERS
---------------------------------------------------------------------------
*/

qx.Proto._modifyOrientation = function(propValue, propOldValue, propData)
{
  // update fast access variables
  this._layoutHorizontal = propValue == "horizontal";
  this._layoutVertical = propValue == "vertical";

  // Layout Implementation
  if (this._layoutImpl)
  {
    this._layoutImpl.dispose();
    this._layoutImpl = null;
  }

  if (qx.util.Validation.isValidString(propValue)) {
    this._layoutImpl = this._createLayoutImpl();
  }

  // call other core modifier
  return this._modifyLayoutOrder(propValue, propOldValue, propData);
}

qx.Proto._modifyLayoutOrder = function(propValue, propOldValue, propData)
{
  // update layout mode
  this._invalidateLayoutMode();

  // call other core modifier
  return this._modifyLayout(propValue, propOldValue, propData);
}

qx.Proto._modifyLayout = function(propValue, propOldValue, propData)
{
  // invalidate inner preferred dimensions
  this._invalidatePreferredInnerDimensions();

  // accumulated width needs to be invalidated
  this._invalidateAccumulatedChildrenOuterWidth();
  this._invalidateAccumulatedChildrenOuterHeight();

  // make property handling happy :)
  return true;
}





/*
---------------------------------------------------------------------------
  ACCUMULATED CHILDREN WIDTH/HEIGHT
--------------------------------------------------------------------------------

  Needed for center/middle and right/bottom alignment

---------------------------------------------------------------------------
*/

qx.OO.addCachedProperty({ name : "accumulatedChildrenOuterWidth", defaultValue : null });
qx.OO.addCachedProperty({ name : "accumulatedChildrenOuterHeight", defaultValue : null });

qx.Proto._computeAccumulatedChildrenOuterWidth = function()
{
  var ch=this.getVisibleChildren(), chc, i=-1, sp=this.getSpacing(), s=-sp;

  while(chc=ch[++i]) {
    s += chc.getOuterWidth() + sp;
  }

  return s;
}

qx.Proto._computeAccumulatedChildrenOuterHeight = function()
{
  var ch=this.getVisibleChildren(), chc, i=-1, sp=this.getSpacing(), s=-sp;

  while(chc=ch[++i]) {
    s += chc.getOuterHeight() + sp;
  }

  return s;
}







/*
---------------------------------------------------------------------------
  STRETCHING SUPPORT
---------------------------------------------------------------------------
*/

qx.Proto._recomputeChildrenStretchingX = function()
{
  var ch=this.getVisibleChildren(), chc, i=-1;

  while(chc=ch[++i])
  {
    if (chc._recomputeStretchingX() && chc._recomputeBoxWidth()) {
      chc._recomputeOuterWidth();
    }
  }
}

qx.Proto._recomputeChildrenStretchingY = function()
{
  var ch=this.getVisibleChildren(), chc, i=-1;

  while(chc=ch[++i])
  {
    if (chc._recomputeStretchingY() && chc._recomputeBoxHeight()) {
      chc._recomputeOuterHeight();
    }
  }
}