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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 BSRight, | 97 BSRight, |
98 BSBottom, | 98 BSBottom, |
99 BSLeft | 99 BSLeft |
100 }; | 100 }; |
101 | 101 |
102 enum MarkingBehavior { | 102 enum MarkingBehavior { |
103 MarkOnlyThis, | 103 MarkOnlyThis, |
104 MarkContainingBlockChain, | 104 MarkContainingBlockChain, |
105 }; | 105 }; |
106 | 106 |
| 107 enum PlaceGeneratedRunInFlag { |
| 108 PlaceGeneratedRunIn, |
| 109 DoNotPlaceGeneratedRunIn |
| 110 }; |
| 111 |
107 const int caretWidth = 1; | 112 const int caretWidth = 1; |
108 | 113 |
109 #if ENABLE(DASHBOARD_SUPPORT) | 114 #if ENABLE(DASHBOARD_SUPPORT) |
110 struct DashboardRegionValue { | 115 struct DashboardRegionValue { |
111 bool operator==(const DashboardRegionValue& o) const | 116 bool operator==(const DashboardRegionValue& o) const |
112 { | 117 { |
113 return type == o.type && bounds == o.bounds && clip == o.clip && label =
= o.label; | 118 return type == o.type && bounds == o.bounds && clip == o.clip && label =
= o.label; |
114 } | 119 } |
115 bool operator!=(const DashboardRegionValue& o) const | 120 bool operator!=(const DashboardRegionValue& o) const |
116 { | 121 { |
(...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1211 // Outside the WebCore namespace for ease of invocation from gdb. | 1216 // Outside the WebCore namespace for ease of invocation from gdb. |
1212 void showTree(const WebCore::RenderObject*); | 1217 void showTree(const WebCore::RenderObject*); |
1213 void showLineTree(const WebCore::RenderObject*); | 1218 void showLineTree(const WebCore::RenderObject*); |
1214 void showRenderTree(const WebCore::RenderObject* object1); | 1219 void showRenderTree(const WebCore::RenderObject* object1); |
1215 // We don't make object2 an optional parameter so that showRenderTree | 1220 // We don't make object2 an optional parameter so that showRenderTree |
1216 // can be called from gdb easily. | 1221 // can be called from gdb easily. |
1217 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); | 1222 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); |
1218 #endif | 1223 #endif |
1219 | 1224 |
1220 #endif // RenderObject_h | 1225 #endif // RenderObject_h |
OLD | NEW |