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 1051 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1062 StyleDifference adjustStyleDifference(StyleDifference, unsigned contextSensi
tiveProperties) const; | 1062 StyleDifference adjustStyleDifference(StyleDifference, unsigned contextSensi
tiveProperties) const; |
1063 | 1063 |
1064 Color selectionColor(int colorProperty) const; | 1064 Color selectionColor(int colorProperty) const; |
1065 | 1065 |
1066 void removeShapeImageClient(ShapeValue*); | 1066 void removeShapeImageClient(ShapeValue*); |
1067 | 1067 |
1068 #ifndef NDEBUG | 1068 #ifndef NDEBUG |
1069 void checkBlockPositionedObjectsNeedLayout(); | 1069 void checkBlockPositionedObjectsNeedLayout(); |
1070 #endif | 1070 #endif |
1071 | 1071 |
| 1072 enum InvalidationReason { |
| 1073 InvalidationIncremental, |
| 1074 InvalidationSelfLayout, |
| 1075 InvalidationBorderFitLines, |
| 1076 InvalidationBorderRadius, |
| 1077 InvalidationBoundsChangeWithBackground, |
| 1078 InvalidationBoundsChange |
| 1079 }; |
| 1080 const char* invalidationReasonToString(const InvalidationReason) const; |
| 1081 |
1072 RefPtr<RenderStyle> m_style; | 1082 RefPtr<RenderStyle> m_style; |
1073 | 1083 |
1074 Node* m_node; | 1084 Node* m_node; |
1075 | 1085 |
1076 RenderObject* m_parent; | 1086 RenderObject* m_parent; |
1077 RenderObject* m_previous; | 1087 RenderObject* m_previous; |
1078 RenderObject* m_next; | 1088 RenderObject* m_next; |
1079 | 1089 |
1080 #ifndef NDEBUG | 1090 #ifndef NDEBUG |
1081 unsigned m_hasAXObject : 1; | 1091 unsigned m_hasAXObject : 1; |
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1426 void showTree(const WebCore::RenderObject*); | 1436 void showTree(const WebCore::RenderObject*); |
1427 void showLineTree(const WebCore::RenderObject*); | 1437 void showLineTree(const WebCore::RenderObject*); |
1428 void showRenderTree(const WebCore::RenderObject* object1); | 1438 void showRenderTree(const WebCore::RenderObject* object1); |
1429 // We don't make object2 an optional parameter so that showRenderTree | 1439 // We don't make object2 an optional parameter so that showRenderTree |
1430 // can be called from gdb easily. | 1440 // can be called from gdb easily. |
1431 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); | 1441 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); |
1432 | 1442 |
1433 #endif | 1443 #endif |
1434 | 1444 |
1435 #endif // RenderObject_h | 1445 #endif // RenderObject_h |
OLD | NEW |