| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 enum EPointerEvents { | 197 enum EPointerEvents { |
| 198 PE_NONE, PE_AUTO, PE_STROKE, PE_FILL, PE_PAINTED, PE_VISIBLE, | 198 PE_NONE, PE_AUTO, PE_STROKE, PE_FILL, PE_PAINTED, PE_VISIBLE, |
| 199 PE_VISIBLE_STROKE, PE_VISIBLE_FILL, PE_VISIBLE_PAINTED, PE_BOUNDINGBOX, | 199 PE_VISIBLE_STROKE, PE_VISIBLE_FILL, PE_VISIBLE_PAINTED, PE_BOUNDINGBOX, |
| 200 PE_ALL | 200 PE_ALL |
| 201 }; | 201 }; |
| 202 | 202 |
| 203 enum ETransformStyle3D { | 203 enum ETransformStyle3D { |
| 204 TransformStyle3DFlat, TransformStyle3DPreserve3D | 204 TransformStyle3DFlat, TransformStyle3DPreserve3D |
| 205 }; | 205 }; |
| 206 | 206 |
| 207 enum EBackfaceVisibility { | |
| 208 BackfaceVisibilityVisible, BackfaceVisibilityHidden | |
| 209 }; | |
| 210 | |
| 211 enum Hyphens { HyphensNone, HyphensManual, HyphensAuto }; | 207 enum Hyphens { HyphensNone, HyphensManual, HyphensAuto }; |
| 212 | 208 |
| 213 enum TextEmphasisFill { TextEmphasisFillFilled, TextEmphasisFillOpen }; | 209 enum TextEmphasisFill { TextEmphasisFillFilled, TextEmphasisFillOpen }; |
| 214 | 210 |
| 215 enum TextEmphasisMark { TextEmphasisMarkNone, TextEmphasisMarkAuto, TextEmphasis
MarkDot, TextEmphasisMarkCircle, TextEmphasisMarkDoubleCircle, TextEmphasisMarkT
riangle, TextEmphasisMarkSesame, TextEmphasisMarkCustom }; | 211 enum TextEmphasisMark { TextEmphasisMarkNone, TextEmphasisMarkAuto, TextEmphasis
MarkDot, TextEmphasisMarkCircle, TextEmphasisMarkDoubleCircle, TextEmphasisMarkT
riangle, TextEmphasisMarkSesame, TextEmphasisMarkCustom }; |
| 216 | 212 |
| 217 enum TextEmphasisPosition { TextEmphasisPositionOver, TextEmphasisPositionUnder
}; | 213 enum TextEmphasisPosition { TextEmphasisPositionOver, TextEmphasisPositionUnder
}; |
| 218 | 214 |
| 219 enum TextOrientation { TextOrientationVerticalRight, TextOrientationUpright, Tex
tOrientationSideways, TextOrientationSidewaysRight }; | 215 enum TextOrientation { TextOrientationVerticalRight, TextOrientationUpright, Tex
tOrientationSideways, TextOrientationSidewaysRight }; |
| 220 | 216 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 static const float maximumAllowedFontSize = 1000000.0f; | 274 static const float maximumAllowedFontSize = 1000000.0f; |
| 279 | 275 |
| 280 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; | 276 enum TextIndentLine { TextIndentFirstLine, TextIndentEachLine }; |
| 281 enum TextIndentType { TextIndentNormal, TextIndentHanging }; | 277 enum TextIndentType { TextIndentNormal, TextIndentHanging }; |
| 282 | 278 |
| 283 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; | 279 enum CSSBoxType { BoxMissing = 0, MarginBox, BorderBox, PaddingBox, ContentBox }
; |
| 284 | 280 |
| 285 } // namespace blink | 281 } // namespace blink |
| 286 | 282 |
| 287 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_RENDERSTYLECONSTANTS_H_ | 283 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_RENDERSTYLECONSTANTS_H_ |
| OLD | NEW |