OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 private: | 259 private: |
260 enum EPositionType { START, END, BASE, EXTENT }; | 260 enum EPositionType { START, END, BASE, EXTENT }; |
261 | 261 |
262 void respondToNodeModification(Node*, bool baseRemoved, bool extentRemoved,
bool startRemoved, bool endRemoved); | 262 void respondToNodeModification(Node*, bool baseRemoved, bool extentRemoved,
bool startRemoved, bool endRemoved); |
263 TextDirection directionOfEnclosingBlock(); | 263 TextDirection directionOfEnclosingBlock(); |
264 TextDirection directionOfSelection(); | 264 TextDirection directionOfSelection(); |
265 | 265 |
266 VisiblePosition positionForPlatform(bool isGetStart) const; | 266 VisiblePosition positionForPlatform(bool isGetStart) const; |
267 VisiblePosition startForPlatform() const; | 267 VisiblePosition startForPlatform() const; |
268 VisiblePosition endForPlatform() const; | 268 VisiblePosition endForPlatform() const; |
| 269 VisiblePosition nextWordPositionForPlatform(const VisiblePosition&); |
269 | 270 |
270 VisiblePosition modifyExtendingRight(TextGranularity); | 271 VisiblePosition modifyExtendingRight(TextGranularity); |
271 VisiblePosition modifyExtendingForward(TextGranularity); | 272 VisiblePosition modifyExtendingForward(TextGranularity); |
272 VisiblePosition modifyMovingRight(TextGranularity); | 273 VisiblePosition modifyMovingRight(TextGranularity); |
273 VisiblePosition modifyMovingForward(TextGranularity); | 274 VisiblePosition modifyMovingForward(TextGranularity); |
274 VisiblePosition modifyExtendingLeft(TextGranularity); | 275 VisiblePosition modifyExtendingLeft(TextGranularity); |
275 VisiblePosition modifyExtendingBackward(TextGranularity); | 276 VisiblePosition modifyExtendingBackward(TextGranularity); |
276 VisiblePosition modifyMovingLeft(TextGranularity); | 277 VisiblePosition modifyMovingLeft(TextGranularity); |
277 VisiblePosition modifyMovingBackward(TextGranularity); | 278 VisiblePosition modifyMovingBackward(TextGranularity); |
278 | 279 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 } | 330 } |
330 } // namespace WebCore | 331 } // namespace WebCore |
331 | 332 |
332 #ifndef NDEBUG | 333 #ifndef NDEBUG |
333 // Outside the WebCore namespace for ease of invocation from gdb. | 334 // Outside the WebCore namespace for ease of invocation from gdb. |
334 void showTree(const WebCore::FrameSelection&); | 335 void showTree(const WebCore::FrameSelection&); |
335 void showTree(const WebCore::FrameSelection*); | 336 void showTree(const WebCore::FrameSelection*); |
336 #endif | 337 #endif |
337 | 338 |
338 #endif // FrameSelection_h | 339 #endif // FrameSelection_h |
OLD | NEW |