thedesk/desktop-portal/dialogs/filedialog.h
2021-08-13 02:13:22 +10:00

54 lines
1.5 KiB
C++

/****************************************
*
* INSERT-PROJECT-NAME-HERE - INSERT-GENERIC-NAME-HERE
* Copyright (C) 2021 Victor Tran
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* *************************************/
#ifndef FILEDIALOG_H
#define FILEDIALOG_H
#include <QDialog>
#include <QDBusMessage>
namespace Ui {
class FileDialog;
}
struct FileDialogPrivate;
class FileDialog : public QDialog {
Q_OBJECT
public:
explicit FileDialog(bool isSave, QVariantMap options, QWidget* parent = nullptr);
~FileDialog();
QStringList uris();
QVariant choices();
bool isWritable();
void setWindowTitle(QString windowTitle);
private slots:
void on_titleLabel_backButtonClicked();
private:
Ui::FileDialog* ui;
FileDialogPrivate* d;
bool acceptSave(QUrl url);
};
#endif // FILEDIALOG_H