Update of /cvsroot/qooxdoo/qooxdoo/source/script/layouts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26687/source/script/layouts
Modified Files:
Tag: renderer
QxHorizontalBoxLayoutImpl.js
Log Message:
Moved many styling stuff to the widgets, dramatically reduced size of qooxdoo.css, direct font handling in appearance of QxLabel and QxTextField, default font-size for all qooxdoo widgets is from now on zero.
Index: QxHorizontalBoxLayoutImpl.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/layouts/Attic/QxHorizontalBoxLayoutImpl.js,v
retrieving revision 1.1.2.80
retrieving revision 1.1.2.81
diff -u -d -r1.1.2.80 -r1.1.2.81
--- QxHorizontalBoxLayoutImpl.js 18 Jan 2006 09:43:44 -0000 1.1.2.80
+++ QxHorizontalBoxLayoutImpl.js 24 Jan 2006 16:48:54 -0000 1.1.2.81
@@ -690,28 +690,28 @@
if (vChild._isWidthEssential() && (!vChild._computedWidthTypeNull || !vChild._computedMinWidthTypeNull || !vChild._computedMaxWidthTypeNull))
{
vChild._applyRuntimeWidth(vChild.getBoxWidth());
- }
- else
- {
- vChild._resetRuntimeWidth();
- };
+ }
+ else
+ {
+ vChild._resetRuntimeWidth();
+ };
};
};
proto.layoutChild_sizeY = function(vChild, vJobs)
- {
+ {
if (vJobs.initial || vJobs.height || vJobs.minHeight || vJobs.maxHeight)
{
if ((vChild._isHeightEssential() && (!vChild._computedHeightTypeNull || !vChild._computedMinHeightTypeNull || !vChild._computedMaxHeightTypeNull)) || (vChild.getAllowStretchY() && this.getWidget().getStretchChildrenOrthogonalAxis()))
{
vChild._applyRuntimeHeight(vChild.getBoxHeight());
- }
- else
- {
- vChild._resetRuntimeHeight();
+ }
+ else
+ {
+ vChild._resetRuntimeHeight();
+ };
};
};
- };
}
else
{
@@ -722,29 +722,29 @@
if (vChild._isWidthEssential() && !vChild._computedWidthTypeNull)
{
vChild._applyRuntimeWidth(vChild.getWidthValue());
- }
- else
- {
- vChild._resetRuntimeWidth();
- };
+ }
+ else
+ {
+ vChild._resetRuntimeWidth();
+ };
};
};
proto.layoutChild_sizeY = function(vChild, vJobs)
- {
+ {
if (vJobs.initial || vJobs.height)
{
if (vChild._isHeightEssential() && !vChild._computedHeightTypeNull)
{
vChild._applyRuntimeHeight(vChild.getHeightValue())
- }
- else
- {
- vChild._resetRuntimeHeight();
+ }
+ else
+ {
+ vChild._resetRuntimeHeight();
+ };
};
};
};
-};
proto.layoutChild_locationX = function(vChild, vJobs)
{
|