| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. | 5 * Copyright (C) 2004, 2005, 2006 Apple Computer, Inc. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 using std::max; | 34 using std::max; |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 using namespace HTMLNames; | 38 using namespace HTMLNames; |
| 39 | 39 |
| 40 LayoutFieldset::LayoutFieldset(Element* element) | 40 LayoutFieldset::LayoutFieldset(Element* element) |
| 41 : LayoutBlockFlow(element) | 41 : LayoutBlockFlow(element) |
| 42 { | 42 { |
| 43 } | 43 } |
| 44 | |
| 45 void LayoutFieldset::computePreferredLogicalWidths() | 44 void LayoutFieldset::computePreferredLogicalWidths() |
| 46 { | 45 { |
| 47 LayoutBlockFlow::computePreferredLogicalWidths(); | 46 LayoutBlockFlow::computePreferredLogicalWidths(); |
| 48 if (LayoutBox* legend = findLegend()) { | 47 if (LayoutBox* legend = findLegend()) { |
| 49 int legendMinWidth = legend->minPreferredLogicalWidth(); | 48 int legendMinWidth = legend->minPreferredLogicalWidth(); |
| 50 | 49 |
| 51 Length legendMarginLeft = legend->style()->marginLeft(); | 50 Length legendMarginLeft = legend->style()->marginLeft(); |
| 52 Length legendMarginRight = legend->style()->marginLeft(); | 51 Length legendMarginRight = legend->style()->marginRight(); |
| 53 | 52 |
| 54 if (legendMarginLeft.isFixed()) | 53 if (legendMarginLeft.isFixed()) |
| 55 legendMinWidth += legendMarginLeft.value(); | 54 legendMinWidth += legendMarginLeft.value(); |
| 56 | 55 |
| 57 if (legendMarginRight.isFixed()) | 56 if (legendMarginRight.isFixed()) |
| 58 legendMinWidth += legendMarginRight.value(); | 57 legendMinWidth += legendMarginRight.value(); |
| 59 | 58 |
| 60 m_minPreferredLogicalWidth = max(m_minPreferredLogicalWidth, legendMinWi
dth + borderAndPaddingWidth()); | 59 m_minPreferredLogicalWidth = max(m_minPreferredLogicalWidth, legendMinWi
dth + borderAndPaddingWidth()); |
| 61 } | 60 } |
| 62 } | 61 } |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 { | 140 { |
| 142 FieldsetPainter(*this).paintBoxDecorationBackground(paintInfo, paintOffset); | 141 FieldsetPainter(*this).paintBoxDecorationBackground(paintInfo, paintOffset); |
| 143 } | 142 } |
| 144 | 143 |
| 145 void LayoutFieldset::paintMask(const PaintInfo& paintInfo, const LayoutPoint& pa
intOffset) | 144 void LayoutFieldset::paintMask(const PaintInfo& paintInfo, const LayoutPoint& pa
intOffset) |
| 146 { | 145 { |
| 147 FieldsetPainter(*this).paintMask(paintInfo, paintOffset); | 146 FieldsetPainter(*this).paintMask(paintInfo, paintOffset); |
| 148 } | 147 } |
| 149 | 148 |
| 150 } // namespace blink | 149 } // namespace blink |
| OLD | NEW |