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 993 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1004 bool shouldDoFullPaintInvalidation() const { return m_bitfields.shouldDoFull
PaintInvalidation(); } | 1004 bool shouldDoFullPaintInvalidation() const { return m_bitfields.shouldDoFull
PaintInvalidation(); } |
1005 void setShouldDoFullPaintInvalidation(bool b) { m_bitfields.setShouldDoFullP
aintInvalidation(b); } | 1005 void setShouldDoFullPaintInvalidation(bool b) { m_bitfields.setShouldDoFullP
aintInvalidation(b); } |
1006 bool shouldInvalidateOverflowForPaint() const { return m_bitfields.shouldInv
alidateOverflowForPaint(); } | 1006 bool shouldInvalidateOverflowForPaint() const { return m_bitfields.shouldInv
alidateOverflowForPaint(); } |
1007 | 1007 |
1008 bool shouldDoFullPaintInvalidationIfSelfPaintingLayer() const { return m_bit
fields.shouldDoFullPaintInvalidationIfSelfPaintingLayer(); } | 1008 bool shouldDoFullPaintInvalidationIfSelfPaintingLayer() const { return m_bit
fields.shouldDoFullPaintInvalidationIfSelfPaintingLayer(); } |
1009 void setShouldDoFullPaintInvalidationIfSelfPaintingLayer(bool b) { m_bitfiel
ds.setShouldDoFullPaintInvalidationIfSelfPaintingLayer(b); } | 1009 void setShouldDoFullPaintInvalidationIfSelfPaintingLayer(bool b) { m_bitfiel
ds.setShouldDoFullPaintInvalidationIfSelfPaintingLayer(b); } |
1010 | 1010 |
1011 bool onlyNeededPositionedMovementLayout() const { return m_bitfields.onlyNee
dedPositionedMovementLayout(); } | 1011 bool onlyNeededPositionedMovementLayout() const { return m_bitfields.onlyNee
dedPositionedMovementLayout(); } |
1012 void setOnlyNeededPositionedMovementLayout(bool b) { m_bitfields.setOnlyNeed
edPositionedMovementLayout(b); } | 1012 void setOnlyNeededPositionedMovementLayout(bool b) { m_bitfields.setOnlyNeed
edPositionedMovementLayout(b); } |
1013 | 1013 |
1014 void clearPaintInvalidationState(); | 1014 virtual void clearPaintInvalidationState(); |
1015 | 1015 |
1016 // layoutDidGetCalled indicates whether this render object was re-laid-out | 1016 // layoutDidGetCalled indicates whether this render object was re-laid-out |
1017 // since the last call to setLayoutDidGetCalled(false) on this object. | 1017 // since the last call to setLayoutDidGetCalled(false) on this object. |
1018 bool layoutDidGetCalled() { return m_bitfields.layoutDidGetCalled(); } | 1018 bool layoutDidGetCalled() { return m_bitfields.layoutDidGetCalled(); } |
1019 void setLayoutDidGetCalled(bool b) { m_bitfields.setLayoutDidGetCalled(b); } | 1019 void setLayoutDidGetCalled(bool b) { m_bitfields.setLayoutDidGetCalled(b); } |
1020 | 1020 |
1021 bool mayNeedPaintInvalidation() { return m_bitfields.mayNeedPaintInvalidatio
n(); } | 1021 bool mayNeedPaintInvalidation() { return m_bitfields.mayNeedPaintInvalidatio
n(); } |
1022 void setMayNeedPaintInvalidation(bool b) | 1022 void setMayNeedPaintInvalidation(bool b) |
1023 { | 1023 { |
1024 m_bitfields.setMayNeedPaintInvalidation(b); | 1024 m_bitfields.setMayNeedPaintInvalidation(b); |
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1495 void showTree(const blink::RenderObject*); | 1495 void showTree(const blink::RenderObject*); |
1496 void showLineTree(const blink::RenderObject*); | 1496 void showLineTree(const blink::RenderObject*); |
1497 void showRenderTree(const blink::RenderObject* object1); | 1497 void showRenderTree(const blink::RenderObject* object1); |
1498 // We don't make object2 an optional parameter so that showRenderTree | 1498 // We don't make object2 an optional parameter so that showRenderTree |
1499 // can be called from gdb easily. | 1499 // can be called from gdb easily. |
1500 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec
t* object2); | 1500 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec
t* object2); |
1501 | 1501 |
1502 #endif | 1502 #endif |
1503 | 1503 |
1504 #endif // RenderObject_h | 1504 #endif // RenderObject_h |
OLD | NEW |