1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2017 The Qt Company Ltd. |
4 | ** Contact: http://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the Qt Labs Platform module of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:LGPL3$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see http://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at http://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU Lesser General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
19 | ** General Public License version 3 as published by the Free Software |
20 | ** Foundation and appearing in the file LICENSE.LGPLv3 included in the |
21 | ** packaging of this file. Please review the following information to |
22 | ** ensure the GNU Lesser General Public License version 3 requirements |
23 | ** will be met: https://www.gnu.org/licenses/lgpl.html. |
24 | ** |
25 | ** GNU General Public License Usage |
26 | ** Alternatively, this file may be used under the terms of the GNU |
27 | ** General Public License version 2.0 or later as published by the Free |
28 | ** Software Foundation and appearing in the file LICENSE.GPL included in |
29 | ** the packaging of this file. Please review the following information to |
30 | ** ensure the GNU General Public License version 2.0 requirements will be |
31 | ** met: http://www.gnu.org/licenses/gpl-2.0.html. |
32 | ** |
33 | ** $QT_END_LICENSE$ |
34 | ** |
35 | ****************************************************************************/ |
36 | |
37 | #ifndef QQUICKPLATFORMFOLDERDIALOG_P_H |
38 | #define QQUICKPLATFORMFOLDERDIALOG_P_H |
39 | |
40 | // |
41 | // W A R N I N G |
42 | // ------------- |
43 | // |
44 | // This folder is not part of the Qt API. It exists purely as an |
45 | // implementation detail. This header folder may change from version to |
46 | // version without notice, or even be removed. |
47 | // |
48 | // We mean it. |
49 | // |
50 | |
51 | #include "qquickplatformdialog_p.h" |
52 | #include <QtCore/qurl.h> |
53 | #include <QtQml/qqml.h> |
54 | |
55 | QT_BEGIN_NAMESPACE |
56 | |
57 | class QQuickPlatformFolderDialog : public QQuickPlatformDialog |
58 | { |
59 | Q_OBJECT |
60 | Q_PROPERTY(QUrl folder READ folder WRITE setFolder NOTIFY folderChanged FINAL) |
61 | Q_PROPERTY(QUrl currentFolder READ currentFolder WRITE setCurrentFolder NOTIFY currentFolderChanged FINAL) |
62 | Q_PROPERTY(QFileDialogOptions::FileDialogOptions options READ options WRITE setOptions RESET resetOptions NOTIFY optionsChanged FINAL) |
63 | Q_PROPERTY(QString acceptLabel READ acceptLabel WRITE setAcceptLabel RESET resetAcceptLabel NOTIFY acceptLabelChanged FINAL) |
64 | Q_PROPERTY(QString rejectLabel READ rejectLabel WRITE setRejectLabel RESET resetRejectLabel NOTIFY rejectLabelChanged FINAL) |
65 | Q_FLAGS(QFileDialogOptions::FileDialogOptions) |
66 | |
67 | public: |
68 | explicit QQuickPlatformFolderDialog(QObject *parent = nullptr); |
69 | |
70 | QUrl folder() const; |
71 | void setFolder(const QUrl &folder); |
72 | |
73 | QUrl currentFolder() const; |
74 | void setCurrentFolder(const QUrl &folder); |
75 | |
76 | QFileDialogOptions::FileDialogOptions options() const; |
77 | void setOptions(QFileDialogOptions::FileDialogOptions options); |
78 | void resetOptions(); |
79 | |
80 | QString acceptLabel() const; |
81 | void setAcceptLabel(const QString &label); |
82 | void resetAcceptLabel(); |
83 | |
84 | QString rejectLabel() const; |
85 | void setRejectLabel(const QString &label); |
86 | void resetRejectLabel(); |
87 | |
88 | Q_SIGNALS: |
89 | void folderChanged(); |
90 | void currentFolderChanged(); |
91 | void optionsChanged(); |
92 | void acceptLabelChanged(); |
93 | void rejectLabelChanged(); |
94 | |
95 | protected: |
96 | bool useNativeDialog() const override; |
97 | void onCreate(QPlatformDialogHelper *dialog) override; |
98 | void onShow(QPlatformDialogHelper *dialog) override; |
99 | void accept() override; |
100 | |
101 | private: |
102 | QUrl m_folder; |
103 | QSharedPointer<QFileDialogOptions> m_options; |
104 | }; |
105 | |
106 | QT_END_NAMESPACE |
107 | |
108 | QML_DECLARE_TYPE(QQuickPlatformFolderDialog) |
109 | |
110 | #endif // QQUICKPLATFORMFOLDERDIALOG_P_H |
111 | |