This repository was archived by the owner on Mar 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfilechooser.cpp
147 lines (126 loc) · 3.33 KB
/
filechooser.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#include "filechooser.h"
#include <systemdispatcher.h>
const QString FileChooser::ContentChoosenMessage = QStringLiteral("AndroidUtils.FileChooser.contentChoosen");
FileChooser::FileChooser(QObject *parent) :
QObject(parent),
_title(),
_contentUrl(),
_type(OpenDocument),
_mimeType(QStringLiteral("*/*")),
_flags(OpenableFlag)
{
auto dispatcher = AndroidNative::SystemDispatcher::instance();
dispatcher->loadClass(QStringLiteral("de.skycoder42.androidutils.FileChooser"));
connect(dispatcher, &AndroidNative::SystemDispatcher::dispatched,
this, &FileChooser::onDispatched,
Qt::QueuedConnection);
}
QString FileChooser::title() const
{
return _title;
}
QUrl FileChooser::contentUrl() const
{
return _contentUrl;
}
FileChooser::ChooserType FileChooser::type() const
{
return _type;
}
QString FileChooser::mimeType() const
{
return _mimeType;
}
FileChooser::ChooserFlags FileChooser::chooserFlags() const
{
return _flags;
}
void FileChooser::setContentUrl(QUrl contentUrl)
{
if (_contentUrl == contentUrl)
return;
_contentUrl = contentUrl;
emit contentUrlChanged(contentUrl);
}
void FileChooser::setType(FileChooser::ChooserType type)
{
if (_type == type)
return;
_type = type;
emit typeChanged(type);
}
void FileChooser::setMimeType(QString mimeType)
{
if (_mimeType == mimeType)
return;
_mimeType = mimeType;
emit mimeTypeChanged(mimeType);
}
void FileChooser::setChooserFlags(ChooserFlags chooserFlags)
{
if (_flags == chooserFlags)
return;
_flags = chooserFlags;
emit chooserFlagsChanged(chooserFlags);
}
void FileChooser::onDispatched(const QString &message, const QVariantMap &data)
{
if(message == ContentChoosenMessage) {
if(data.value(QStringLiteral("success"), false).toBool()) {
_contentUrl = data.value(QStringLiteral("uri")).toString();
emit contentUrlChanged(_contentUrl);
emit accepted();
} else
emit rejected();
}
}
void FileChooser::open()
{
QString message;
QVariantMap data;
switch (_type) {
case FileChooser::GetContent:
message = QStringLiteral("AndroidUtils.FileChooser.getContent");
data = {
{"title", _title.isEmpty() ? tr("Open File") : _title},
{"mime", _mimeType},
{"openable", _flags.testFlag(OpenableFlag)},
{"localOnly", _flags.testFlag(LocalOnlyFlag)},
{"grantWrite", _flags.testFlag(AlwaysGrantWriteFlag)}
};
break;
case FileChooser::OpenDocument:
message = QStringLiteral("AndroidUtils.FileChooser.openDocument");
data = {
{"title", _title.isEmpty() ? tr("Open File") : _title},
{"mime", _mimeType},
{"url", _contentUrl.toString()},
{"openable", _flags.testFlag(OpenableFlag)},
{"grantWrite", _flags.testFlag(AlwaysGrantWriteFlag)},
{"persistPermissions", _flags.testFlag(PersistPermissionsFlag)}
};
break;
case FileChooser::CreateDocument:
message = QStringLiteral("AndroidUtils.FileChooser.createDocument");
data = {
{"title", _title.isEmpty() ? tr("Save File") : _title},
{"mime", _mimeType},
{"url", _contentUrl.toString()},
{"name", _contentUrl.fileName()},
{"openable", _flags.testFlag(OpenableFlag)},
{"persistPermissions", _flags.testFlag(PersistPermissionsFlag)}
};
break;
default:
Q_UNREACHABLE();
break;
}
AndroidNative::SystemDispatcher::instance()->dispatch(message, data);
}
void FileChooser::setTitle(QString title)
{
if (_title == title)
return;
_title = title;
emit titleChanged(title);
}