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 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
806 Color color; | 806 Color color; |
807 TextDecorationStyle style; | 807 TextDecorationStyle style; |
808 AppliedTextDecoration() : color(Color::transparent), style(TextDecoratio
nStyleSolid) { } | 808 AppliedTextDecoration() : color(Color::transparent), style(TextDecoratio
nStyleSolid) { } |
809 }; | 809 }; |
810 | 810 |
811 void getTextDecorations(unsigned decorations, AppliedTextDecoration& underli
ne, AppliedTextDecoration& overline, AppliedTextDecoration& linethrough, bool qu
irksMode = false, bool firstlineStyle = false); | 811 void getTextDecorations(unsigned decorations, AppliedTextDecoration& underli
ne, AppliedTextDecoration& overline, AppliedTextDecoration& linethrough, bool qu
irksMode = false, bool firstlineStyle = false); |
812 | 812 |
813 // Return the RenderLayerModelObject in the container chain which is respons
ible for painting this object, or 0 | 813 // Return the RenderLayerModelObject in the container chain which is respons
ible for painting this object, or 0 |
814 // if painting is root-relative. This is the container that should be passed
to the 'forRepaint' | 814 // if painting is root-relative. This is the container that should be passed
to the 'forRepaint' |
815 // methods. | 815 // methods. |
816 RenderLayerModelObject* containerForRepaint() const; | 816 const RenderLayerModelObject* containerForRepaint() const; |
817 | 817 |
818 // Actually do the repaint of rect r for this object which has been computed
in the coordinate space | 818 // Actually do the repaint of rect r for this object which has been computed
in the coordinate space |
819 // of repaintContainer. If repaintContainer is 0, repaint via the view. | 819 // of repaintContainer. If repaintContainer is 0, repaint via the view. |
820 void repaintUsingContainer(const RenderLayerModelObject* repaintContainer, c
onst IntRect&, InvalidationReason) const; | 820 void repaintUsingContainer(const RenderLayerModelObject* repaintContainer, c
onst IntRect&, InvalidationReason) const; |
821 | 821 |
822 // Repaint the entire object. Called when, e.g., the color of a border chan
ges, or when a border | 822 // Repaint the entire object. Called when, e.g., the color of a border chan
ges, or when a border |
823 // style changes. | 823 // style changes. |
824 void repaint() const; | 824 void repaint() const; |
825 | 825 |
826 // Repaint a specific subrectangle within a given object. The rect |r| is i
n the object's coordinate space. | 826 // Repaint a specific subrectangle within a given object. The rect |r| is i
n the object's coordinate space. |
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1461 void showTree(const WebCore::RenderObject*); | 1461 void showTree(const WebCore::RenderObject*); |
1462 void showLineTree(const WebCore::RenderObject*); | 1462 void showLineTree(const WebCore::RenderObject*); |
1463 void showRenderTree(const WebCore::RenderObject* object1); | 1463 void showRenderTree(const WebCore::RenderObject* object1); |
1464 // We don't make object2 an optional parameter so that showRenderTree | 1464 // We don't make object2 an optional parameter so that showRenderTree |
1465 // can be called from gdb easily. | 1465 // can be called from gdb easily. |
1466 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); | 1466 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); |
1467 | 1467 |
1468 #endif | 1468 #endif |
1469 | 1469 |
1470 #endif // RenderObject_h | 1470 #endif // RenderObject_h |
OLD | NEW |