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 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1065 private: | 1065 private: |
1066 RenderBlock* containerForFixedPosition(const RenderLayerModelObject* repaint
Container = 0, bool* repaintContainerSkipped = 0) const; | 1066 RenderBlock* containerForFixedPosition(const RenderLayerModelObject* repaint
Container = 0, bool* repaintContainerSkipped = 0) const; |
1067 | 1067 |
1068 RenderFlowThread* locateFlowThreadContainingBlock() const; | 1068 RenderFlowThread* locateFlowThreadContainingBlock() const; |
1069 void removeFromRenderFlowThread(); | 1069 void removeFromRenderFlowThread(); |
1070 void removeFromRenderFlowThreadRecursive(RenderFlowThread*); | 1070 void removeFromRenderFlowThreadRecursive(RenderFlowThread*); |
1071 | 1071 |
1072 bool hasImmediateNonWhitespaceTextChildOrPropertiesDependentOnColor() const; | 1072 bool hasImmediateNonWhitespaceTextChildOrPropertiesDependentOnColor() const; |
1073 | 1073 |
1074 RenderStyle* cachedFirstLineStyle() const; | 1074 RenderStyle* cachedFirstLineStyle() const; |
1075 StyleDifference adjustStyleDifference(StyleDifference, unsigned contextSensi
tiveProperties) const; | 1075 StyleDifference adjustStyleDifference(StyleDifference) const; |
1076 | 1076 |
1077 Color selectionColor(int colorProperty) const; | 1077 Color selectionColor(int colorProperty) const; |
1078 | 1078 |
1079 #ifndef NDEBUG | 1079 #ifndef NDEBUG |
1080 void checkBlockPositionedObjectsNeedLayout(); | 1080 void checkBlockPositionedObjectsNeedLayout(); |
1081 #endif | 1081 #endif |
1082 const char* invalidationReasonToString(InvalidationReason) const; | 1082 const char* invalidationReasonToString(InvalidationReason) const; |
1083 | 1083 |
1084 RefPtr<RenderStyle> m_style; | 1084 RefPtr<RenderStyle> m_style; |
1085 | 1085 |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1440 void showTree(const WebCore::RenderObject*); | 1440 void showTree(const WebCore::RenderObject*); |
1441 void showLineTree(const WebCore::RenderObject*); | 1441 void showLineTree(const WebCore::RenderObject*); |
1442 void showRenderTree(const WebCore::RenderObject* object1); | 1442 void showRenderTree(const WebCore::RenderObject* object1); |
1443 // We don't make object2 an optional parameter so that showRenderTree | 1443 // We don't make object2 an optional parameter so that showRenderTree |
1444 // can be called from gdb easily. | 1444 // can be called from gdb easily. |
1445 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); | 1445 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); |
1446 | 1446 |
1447 #endif | 1447 #endif |
1448 | 1448 |
1449 #endif // RenderObject_h | 1449 #endif // RenderObject_h |
OLD | NEW |