tizen beta release
[profile/ivi/webkit-efl.git] / Source / WebCore / platform / qt / DragDataQt.cpp
1 /*
2  * Copyright (C) 2007, 2008, 2009 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include "config.h"
27 #include "DragData.h"
28
29 #include "Document.h"
30 #include "DocumentFragment.h"
31 #include "Frame.h"
32 #include "markup.h"
33
34 #include <QColor>
35 #include <QList>
36 #include <QMimeData>
37 #include <QUrl>
38
39 namespace WebCore {
40
41 bool DragData::canSmartReplace() const
42 {
43     return false;
44 }
45
46 bool DragData::containsColor() const
47 {
48     if (!m_platformDragData)
49         return false;
50     return m_platformDragData->hasColor();
51 }
52
53 bool DragData::containsFiles() const
54 {
55     if (!m_platformDragData)
56         return false;
57     QList<QUrl> urls = m_platformDragData->urls();
58     foreach (const QUrl &url, urls) {
59         if (!url.toLocalFile().isEmpty())
60             return true;
61     }
62     return false;
63 }
64
65 unsigned DragData::numberOfFiles() const
66 {
67     return 0;
68 }
69
70 void DragData::asFilenames(Vector<String>& result) const
71 {
72     if (!m_platformDragData)
73         return;
74     QList<QUrl> urls = m_platformDragData->urls();
75     foreach (const QUrl &url, urls) {
76         QString file = url.toLocalFile();
77         if (!file.isEmpty())
78             result.append(file);
79     }
80 }
81
82 bool DragData::containsPlainText() const
83 {
84     if (!m_platformDragData)
85         return false;
86     return m_platformDragData->hasText() || m_platformDragData->hasUrls();
87 }
88
89 String DragData::asPlainText(Frame* frame) const
90 {
91     if (!m_platformDragData)
92         return String();
93     String text = m_platformDragData->text();
94     if (!text.isEmpty())
95         return text;
96
97     // FIXME: Should handle rich text here
98     return asURL(frame, DoNotConvertFilenames, 0);
99 }
100
101 Color DragData::asColor() const
102 {
103     if (!m_platformDragData)
104         return Color();
105     return qvariant_cast<QColor>(m_platformDragData->colorData());
106 }
107
108 bool DragData::containsCompatibleContent() const
109 {
110     if (!m_platformDragData)
111         return false;
112     return containsColor() || containsURL(0) || m_platformDragData->hasHtml() || m_platformDragData->hasText();
113 }
114
115 bool DragData::containsURL(Frame*, FilenameConversionPolicy filenamePolicy) const
116 {
117     // FIXME: Use filenamePolicy.
118     if (!m_platformDragData)
119         return false;
120     return m_platformDragData->hasUrls();
121 }
122
123 String DragData::asURL(Frame*, FilenameConversionPolicy filenamePolicy, String*) const
124 {
125     // FIXME: Use filenamePolicy.
126     if (!m_platformDragData)
127         return String();
128     QList<QUrl> urls = m_platformDragData->urls();
129
130     if (urls.isEmpty())
131         return String();
132
133     QByteArray encodedUrl = urls.first().toEncoded();
134     return String(encodedUrl.constData(), encodedUrl.length());
135 }
136
137 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const
138 {
139     if (m_platformDragData && m_platformDragData->hasHtml())
140         return createFragmentFromMarkup(frame->document(), m_platformDragData->html(), "", FragmentScriptingNotAllowed);
141
142     return 0;
143 }
144
145 }
146