OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) | 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) |
3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) | 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) |
4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
5 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 void clearData(const String& type = String()); | 72 void clearData(const String& type = String()); |
73 String getData(const String& type) const; | 73 String getData(const String& type) const; |
74 bool setData(const String& type, const String& data); | 74 bool setData(const String& type, const String& data); |
75 | 75 |
76 // extensions beyond IE's API | 76 // extensions beyond IE's API |
77 Vector<String> types() const; | 77 Vector<String> types() const; |
78 PassRefPtrWillBeRawPtr<FileList> files() const; | 78 PassRefPtrWillBeRawPtr<FileList> files() const; |
79 | 79 |
80 IntPoint dragLocation() const { return m_dragLoc; } | 80 IntPoint dragLocation() const { return m_dragLoc; } |
81 void setDragImage(Element*, int x, int y, ExceptionState&); | 81 void setDragImage(Element*, int x, int y, ExceptionState&); |
| 82 void clearDragImage(); |
82 ImageResource* dragImageResource() const { return m_dragImage.get(); } | 83 ImageResource* dragImageResource() const { return m_dragImage.get(); } |
83 void setDragImageResource(ImageResource*, const IntPoint&); | 84 void setDragImageResource(ImageResource*, const IntPoint&); |
84 Node* dragImageElement() const { return m_dragImageElement.get(); } | 85 Node* dragImageElement() const { return m_dragImageElement.get(); } |
85 void setDragImageElement(Node*, const IntPoint&); | 86 void setDragImageElement(Node*, const IntPoint&); |
86 | 87 |
87 PassOwnPtr<DragImage> createDragImage(IntPoint& dragLocation, LocalFrame*) c
onst; | 88 PassOwnPtr<DragImage> createDragImage(IntPoint& dragLocation, LocalFrame*) c
onst; |
88 void declareAndWriteDragImage(Element*, const KURL&, const String& title); | 89 void declareAndWriteDragImage(Element*, const KURL&, const String& title); |
89 void writeURL(const KURL&, const String&); | 90 void writeURL(const KURL&, const String&); |
90 void writeRange(Range*, LocalFrame*); | 91 void writeRange(Range*, LocalFrame*); |
91 void writePlainText(const String&); | 92 void writePlainText(const String&); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 ResourcePtr<ImageResource> m_dragImage; | 135 ResourcePtr<ImageResource> m_dragImage; |
135 RefPtr<Node> m_dragImageElement; | 136 RefPtr<Node> m_dragImageElement; |
136 }; | 137 }; |
137 | 138 |
138 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio
n); | 139 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio
n); |
139 String convertDragOperationToDropZoneOperation(DragOperation); | 140 String convertDragOperationToDropZoneOperation(DragOperation); |
140 | 141 |
141 } // namespace WebCore | 142 } // namespace WebCore |
142 | 143 |
143 #endif // Clipboard_h | 144 #endif // Clipboard_h |
OLD | NEW |