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 Apple Inc. All rights
reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 PaintPhaseFloat = 3, | 44 PaintPhaseFloat = 3, |
45 PaintPhaseForeground = 4, | 45 PaintPhaseForeground = 4, |
46 PaintPhaseOutline = 5, | 46 PaintPhaseOutline = 5, |
47 PaintPhaseChildOutlines = 6, | 47 PaintPhaseChildOutlines = 6, |
48 PaintPhaseSelfOutline = 7, | 48 PaintPhaseSelfOutline = 7, |
49 PaintPhaseSelection = 8, | 49 PaintPhaseSelection = 8, |
50 PaintPhaseCollapsedTableBorders = 9, | 50 PaintPhaseCollapsedTableBorders = 9, |
51 PaintPhaseTextClip = 10, | 51 PaintPhaseTextClip = 10, |
52 PaintPhaseMask = 11, | 52 PaintPhaseMask = 11, |
53 PaintPhaseClippingMask = 12, | 53 PaintPhaseClippingMask = 12, |
| 54 PaintPhaseCaret = 13, |
54 // These values must be kept in sync with DisplayItem::Type. | 55 // These values must be kept in sync with DisplayItem::Type. |
55 }; | 56 }; |
56 | 57 |
57 enum PaintBehaviorFlags { | 58 enum PaintBehaviorFlags { |
58 PaintBehaviorNormal = 0, | 59 PaintBehaviorNormal = 0, |
59 PaintBehaviorSelectionOnly = 1 << 0, | 60 PaintBehaviorSelectionOnly = 1 << 0, |
60 PaintBehaviorForceBlackText = 1 << 1, | 61 PaintBehaviorForceBlackText = 1 << 1, |
61 PaintBehaviorFlattenCompositingLayers = 1 << 2, | 62 PaintBehaviorFlattenCompositingLayers = 1 << 2, |
62 PaintBehaviorRenderingClipPathAsMask = 1 << 3, | 63 PaintBehaviorRenderingClipPathAsMask = 1 << 3, |
63 PaintBehaviorSkipRootBackground = 1 << 4, | 64 PaintBehaviorSkipRootBackground = 1 << 4, |
64 PaintBehaviorRootBackgroundOnly = 1 << 5 | 65 PaintBehaviorRootBackgroundOnly = 1 << 5 |
65 }; | 66 }; |
66 | 67 |
67 typedef unsigned PaintBehavior; | 68 typedef unsigned PaintBehavior; |
68 | 69 |
69 } // namespace blink | 70 } // namespace blink |
70 | 71 |
71 #endif // PaintPhase_h | 72 #endif // PaintPhase_h |
OLD | NEW |