| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) | 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) |
| 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2009 Google Inc. All rights reserved. | 7 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 // IntRect can be larger than the integral size. | 967 // IntRect can be larger than the integral size. |
| 968 IntRect absoluteBoundingBoxRect() const; | 968 IntRect absoluteBoundingBoxRect() const; |
| 969 // FIXME: This function should go away eventually | 969 // FIXME: This function should go away eventually |
| 970 IntRect absoluteBoundingBoxRectIgnoringTransforms() const; | 970 IntRect absoluteBoundingBoxRectIgnoringTransforms() const; |
| 971 | 971 |
| 972 // Build an array of quads in absolute coords for line boxes | 972 // Build an array of quads in absolute coords for line boxes |
| 973 virtual void absoluteQuads(Vector<FloatQuad>&, bool* /* wasFixed */ = nullpt
r) const { } | 973 virtual void absoluteQuads(Vector<FloatQuad>&, bool* /* wasFixed */ = nullpt
r) const { } |
| 974 | 974 |
| 975 static FloatRect absoluteBoundingBoxRectForRange(const Range*); | 975 static FloatRect absoluteBoundingBoxRectForRange(const Range*); |
| 976 | 976 |
| 977 // The bounding box (see: absoluteBoundingBoxRect) including all descendant | 977 // the rect that will be painted if this object is passed as the paintingRoo
t |
| 978 // bounding boxes. | 978 IntRect paintingRootRect(IntRect& topLevelRect); |
| 979 IntRect absoluteBoundingBoxRectIncludingDescendants() const; | |
| 980 | 979 |
| 981 // This function returns the minimal logical width this object can have | 980 // This function returns the minimal logical width this object can have |
| 982 // without overflowing. This means that all the opportunities for wrapping | 981 // without overflowing. This means that all the opportunities for wrapping |
| 983 // have been taken. | 982 // have been taken. |
| 984 // | 983 // |
| 985 // See INTRINSIC SIZES / PREFERRED LOGICAL WIDTHS above. | 984 // See INTRINSIC SIZES / PREFERRED LOGICAL WIDTHS above. |
| 986 // | 985 // |
| 987 // CSS 2.1 calls this width the "preferred minimum width" (thus this name) | 986 // CSS 2.1 calls this width the "preferred minimum width" (thus this name) |
| 988 // and "minimum content width" (for table). | 987 // and "minimum content width" (for table). |
| 989 // However CSS 3 calls it the "min-content inline size". | 988 // However CSS 3 calls it the "min-content inline size". |
| (...skipping 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2096 void showTree(const blink::LayoutObject*); | 2095 void showTree(const blink::LayoutObject*); |
| 2097 void showLineTree(const blink::LayoutObject*); | 2096 void showLineTree(const blink::LayoutObject*); |
| 2098 void showLayoutTree(const blink::LayoutObject* object1); | 2097 void showLayoutTree(const blink::LayoutObject* object1); |
| 2099 // We don't make object2 an optional parameter so that showLayoutTree | 2098 // We don't make object2 an optional parameter so that showLayoutTree |
| 2100 // can be called from gdb easily. | 2099 // can be called from gdb easily. |
| 2101 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec
t* object2); | 2100 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec
t* object2); |
| 2102 | 2101 |
| 2103 #endif | 2102 #endif |
| 2104 | 2103 |
| 2105 #endif // LayoutObject_h | 2104 #endif // LayoutObject_h |
| OLD | NEW |