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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 bool isForDragAndDrop() const { return m_clipboardType == DragAndDrop; } | 64 bool isForDragAndDrop() const { return m_clipboardType == DragAndDrop; } |
65 | 65 |
66 String dropEffect() const { return dropEffectIsUninitialized() ? "none" : m_
dropEffect; } | 66 String dropEffect() const { return dropEffectIsUninitialized() ? "none" : m_
dropEffect; } |
67 void setDropEffect(const String&); | 67 void setDropEffect(const String&); |
68 bool dropEffectIsUninitialized() const { return m_dropEffect == "uninitializ
ed"; } | 68 bool dropEffectIsUninitialized() const { return m_dropEffect == "uninitializ
ed"; } |
69 String effectAllowed() const { return m_effectAllowed; } | 69 String effectAllowed() const { return m_effectAllowed; } |
70 void setEffectAllowed(const String&); | 70 void setEffectAllowed(const String&); |
71 | 71 |
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 void 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 void clearDragImage(); |
83 ImageResource* dragImageResource() const { return m_dragImage.get(); } | 83 ImageResource* dragImageResource() const { return m_dragImage.get(); } |
84 void setDragImageResource(ImageResource*, const IntPoint&); | 84 void setDragImageResource(ImageResource*, const IntPoint&); |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 ResourcePtr<ImageResource> m_dragImage; | 135 ResourcePtr<ImageResource> m_dragImage; |
136 RefPtrWillBeMember<Node> m_dragImageElement; | 136 RefPtrWillBeMember<Node> m_dragImageElement; |
137 }; | 137 }; |
138 | 138 |
139 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio
n); | 139 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio
n); |
140 String convertDragOperationToDropZoneOperation(DragOperation); | 140 String convertDragOperationToDropZoneOperation(DragOperation); |
141 | 141 |
142 } // namespace WebCore | 142 } // namespace WebCore |
143 | 143 |
144 #endif // Clipboard_h | 144 #endif // Clipboard_h |
OLD | NEW |