OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2001 Antti Koivisto (koivisto@kde.org) | 2 * Copyright (C) 2001 Antti Koivisto (koivisto@kde.org) |
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. | 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 56 |
57 RenderObject* beforeAfterContainer(RenderStyle::PseudoId); | 57 RenderObject* beforeAfterContainer(RenderStyle::PseudoId); |
58 virtual void updateBeforeAfterContent(RenderStyle::PseudoId); | 58 virtual void updateBeforeAfterContent(RenderStyle::PseudoId); |
59 void updateBeforeAfterContentForContainer(RenderStyle::PseudoId, RenderConta
iner*); | 59 void updateBeforeAfterContentForContainer(RenderStyle::PseudoId, RenderConta
iner*); |
60 bool isAfterContent(RenderObject* child) const; | 60 bool isAfterContent(RenderObject* child) const; |
61 virtual void invalidateCounters(); | 61 virtual void invalidateCounters(); |
62 | 62 |
63 virtual VisiblePosition positionForCoordinates(int x, int y); | 63 virtual VisiblePosition positionForCoordinates(int x, int y); |
64 | 64 |
65 virtual void addLineBoxRects(Vector<IntRect>&, unsigned startOffset = 0, uns
igned endOffset = UINT_MAX, bool useSelectionHeight = false); | 65 virtual void addLineBoxRects(Vector<IntRect>&, unsigned startOffset = 0, uns
igned endOffset = UINT_MAX, bool useSelectionHeight = false); |
| 66 virtual void collectAbsoluteLineBoxQuads(Vector<FloatQuad>&, unsigned startO
ffset = 0, unsigned endOffset = UINT_MAX, bool useSelectionHeight = false); |
66 | 67 |
67 private: | 68 private: |
68 RenderObject* m_firstChild; | 69 RenderObject* m_firstChild; |
69 RenderObject* m_lastChild; | 70 RenderObject* m_lastChild; |
70 }; | 71 }; |
71 | 72 |
72 } // namespace WebCore | 73 } // namespace WebCore |
73 | 74 |
74 #endif // RenderContainer_h | 75 #endif // RenderContainer_h |
OLD | NEW |