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 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 }; | 64 }; |
65 | 65 |
66 // When some style properties change, different amounts of work have to be done
depending on | 66 // When some style properties change, different amounts of work have to be done
depending on |
67 // context (e.g. whether the property is changing on an element which has a comp
ositing layer). | 67 // context (e.g. whether the property is changing on an element which has a comp
ositing layer). |
68 // A simple StyleDifference does not provide enough information so we return a b
it mask of | 68 // A simple StyleDifference does not provide enough information so we return a b
it mask of |
69 // StyleDifferenceContextSensitiveProperties from RenderStyle::visualInvalidatio
nDiff() too. | 69 // StyleDifferenceContextSensitiveProperties from RenderStyle::visualInvalidatio
nDiff() too. |
70 enum StyleDifferenceContextSensitiveProperty { | 70 enum StyleDifferenceContextSensitiveProperty { |
71 ContextSensitivePropertyNone = 0, | 71 ContextSensitivePropertyNone = 0, |
72 ContextSensitivePropertyTransform = (1 << 0), | 72 ContextSensitivePropertyTransform = (1 << 0), |
73 ContextSensitivePropertyOpacity = (1 << 1), | 73 ContextSensitivePropertyOpacity = (1 << 1), |
74 ContextSensitivePropertyZIndex = (1 << 2), | 74 ContextSensitivePropertyFilter = (1 << 2), |
75 ContextSensitivePropertyFilter = (1 << 3), | |
76 // The object needs to be repainted if it contains text or properties depend
ent on color (e.g., border or outline). | 75 // The object needs to be repainted if it contains text or properties depend
ent on color (e.g., border or outline). |
77 ContextSensitivePropertyTextOrColor = (1 << 4) | 76 ContextSensitivePropertyTextOrColor = (1 << 3) |
78 }; | 77 }; |
79 | 78 |
80 // Static pseudo styles. Dynamic ones are produced on the fly. | 79 // Static pseudo styles. Dynamic ones are produced on the fly. |
81 enum PseudoId { | 80 enum PseudoId { |
82 // The order must be NOP ID, public IDs, and then internal IDs. | 81 // The order must be NOP ID, public IDs, and then internal IDs. |
83 // If you add or remove a public ID, you must update _pseudoBits in RenderSt
yle. | 82 // If you add or remove a public ID, you must update _pseudoBits in RenderSt
yle. |
84 NOPSEUDO, FIRST_LINE, FIRST_LETTER, BEFORE, AFTER, BACKDROP, SELECTION, FIRS
T_LINE_INHERITED, SCROLLBAR, | 83 NOPSEUDO, FIRST_LINE, FIRST_LETTER, BEFORE, AFTER, BACKDROP, SELECTION, FIRS
T_LINE_INHERITED, SCROLLBAR, |
85 // Internal IDs follow: | 84 // Internal IDs follow: |
86 SCROLLBAR_THUMB, SCROLLBAR_BUTTON, SCROLLBAR_TRACK, SCROLLBAR_TRACK_PIECE, S
CROLLBAR_CORNER, RESIZER, INPUT_LIST_BUTTON, | 85 SCROLLBAR_THUMB, SCROLLBAR_BUTTON, SCROLLBAR_TRACK, SCROLLBAR_TRACK_PIECE, S
CROLLBAR_CORNER, RESIZER, INPUT_LIST_BUTTON, |
87 // Special values follow: | 86 // Special values follow: |
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
550 static const float maximumAllowedFontSize = 1000000.0f; | 549 static const float maximumAllowedFontSize = 1000000.0f; |
551 | 550 |
552 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; | 551 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; |
553 enum TextIndentType { TextIndentNormal, TextIndentHanging }; | 552 enum TextIndentType { TextIndentNormal, TextIndentHanging }; |
554 | 553 |
555 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; | 554 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; |
556 | 555 |
557 } // namespace WebCore | 556 } // namespace WebCore |
558 | 557 |
559 #endif // RenderStyleConstants_h | 558 #endif // RenderStyleConstants_h |
OLD | NEW |