OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> | 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> |
3 * 1999-2001 Lars Knoll <knoll@kde.org> | 3 * 1999-2001 Lars Knoll <knoll@kde.org> |
4 * 1999-2001 Antti Koivisto <koivisto@kde.org> | 4 * 1999-2001 Antti Koivisto <koivisto@kde.org> |
5 * 2000-2001 Simon Hausmann <hausmann@kde.org> | 5 * 2000-2001 Simon Hausmann <hausmann@kde.org> |
6 * 2000-2001 Dirk Mueller <mueller@kde.org> | 6 * 2000-2001 Dirk Mueller <mueller@kde.org> |
7 * 2000 Stefan Schimanski <1Stein@gmx.de> | 7 * 2000 Stefan Schimanski <1Stein@gmx.de> |
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 10 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 String displayStringModifiedByEncoding(const String& str) const | 177 String displayStringModifiedByEncoding(const String& str) const |
178 { | 178 { |
179 return document() ? document()->displayStringModifiedByEncoding(str)
: str; | 179 return document() ? document()->displayStringModifiedByEncoding(str)
: str; |
180 } | 180 } |
181 | 181 |
182 DragImageRef nodeImage(Node*); | 182 DragImageRef nodeImage(Node*); |
183 DragImageRef dragImageForSelection(); | 183 DragImageRef dragImageForSelection(); |
184 | 184 |
185 VisiblePosition visiblePositionForPoint(const IntPoint& framePoint); | 185 VisiblePosition visiblePositionForPoint(const IntPoint& framePoint); |
186 Document* documentAtPoint(const IntPoint& windowPoint); | 186 Document* documentAtPoint(const IntPoint& windowPoint); |
| 187 PassRefPtr<Range> rangeForPoint(const IntPoint& framePoint); |
187 | 188 |
188 String searchForLabelsAboveCell(RegularExpression*, HTMLTableCellElement
*, size_t* resultDistanceFromStartOfCell); | 189 String searchForLabelsAboveCell(RegularExpression*, HTMLTableCellElement
*, size_t* resultDistanceFromStartOfCell); |
189 String searchForLabelsBeforeElement(const Vector<String>& labels, Elemen
t*, size_t* resultDistance, bool* resultIsInCellAbove); | 190 String searchForLabelsBeforeElement(const Vector<String>& labels, Elemen
t*, size_t* resultDistance, bool* resultIsInCellAbove); |
190 String matchLabelsAgainstElement(const Vector<String>& labels, Element*)
; | 191 String matchLabelsAgainstElement(const Vector<String>& labels, Element*)
; |
191 | 192 |
192 #if PLATFORM(MAC) | 193 #if PLATFORM(MAC) |
193 NSString* searchForLabelsBeforeElement(NSArray* labels, Element*, size_t
* resultDistance, bool* resultIsInCellAbove); | 194 NSString* searchForLabelsBeforeElement(NSArray* labels, Element*, size_t
* resultDistance, bool* resultIsInCellAbove); |
194 NSString* matchLabelsAgainstElement(NSArray* labels, Element*); | 195 NSString* matchLabelsAgainstElement(NSArray* labels, Element*); |
195 | 196 |
196 NSImage* selectionImage(bool forceBlackText = false) const; | 197 NSImage* selectionImage(bool forceBlackText = false) const; |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 } | 363 } |
363 | 364 |
364 inline EventHandler* Frame::eventHandler() const | 365 inline EventHandler* Frame::eventHandler() const |
365 { | 366 { |
366 return &m_eventHandler; | 367 return &m_eventHandler; |
367 } | 368 } |
368 | 369 |
369 } // namespace WebCore | 370 } // namespace WebCore |
370 | 371 |
371 #endif // Frame_h | 372 #endif // Frame_h |
OLD | NEW |