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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 #if ENABLE(ORIENTATION_EVENTS) | 141 #if ENABLE(ORIENTATION_EVENTS) |
142 // Orientation is the interface orientation in degrees. Some examples ar
e: | 142 // Orientation is the interface orientation in degrees. Some examples ar
e: |
143 // 0 is straight up; -90 is when the device is rotated 90 clockwise; | 143 // 0 is straight up; -90 is when the device is rotated 90 clockwise; |
144 // 90 is when rotated counter clockwise. | 144 // 90 is when rotated counter clockwise. |
145 void sendOrientationChangeEvent(int orientation); | 145 void sendOrientationChangeEvent(int orientation); |
146 int orientation() const { return m_orientation; } | 146 int orientation() const { return m_orientation; } |
147 #endif | 147 #endif |
148 | 148 |
149 String documentTypeString() const; | 149 String documentTypeString() const; |
150 | 150 |
151 String displayStringModifiedByEncoding(const String&) const; | |
152 | |
153 PassOwnPtr<DragImage> nodeImage(Node*); | 151 PassOwnPtr<DragImage> nodeImage(Node*); |
154 PassOwnPtr<DragImage> dragImageForSelection(); | 152 PassOwnPtr<DragImage> dragImageForSelection(); |
155 | 153 |
156 String selectedText() const; | 154 String selectedText() const; |
157 String selectedTextForClipboard() const; | 155 String selectedTextForClipboard() const; |
158 | 156 |
159 VisiblePosition visiblePositionForPoint(const IntPoint& framePoint); | 157 VisiblePosition visiblePositionForPoint(const IntPoint& framePoint); |
160 Document* documentAtPoint(const IntPoint& windowPoint); | 158 Document* documentAtPoint(const IntPoint& windowPoint); |
161 PassRefPtr<Range> rangeForPoint(const IntPoint& framePoint); | 159 PassRefPtr<Range> rangeForPoint(const IntPoint& framePoint); |
162 | 160 |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 } | 278 } |
281 | 279 |
282 inline EventHandler* Frame::eventHandler() const | 280 inline EventHandler* Frame::eventHandler() const |
283 { | 281 { |
284 return m_eventHandler.get(); | 282 return m_eventHandler.get(); |
285 } | 283 } |
286 | 284 |
287 } // namespace WebCore | 285 } // namespace WebCore |
288 | 286 |
289 #endif // Frame_h | 287 #endif // Frame_h |
OLD | NEW |