2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2018-01-10 10:52:59 +03:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-07-22 03:38:44 +03:00
|
|
|
#include <QImage>
|
2018-01-10 10:52:59 +03:00
|
|
|
#include <QLabel>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QPixmap>
|
2018-09-25 14:41:47 +03:00
|
|
|
#include <QPushButton>
|
2018-01-10 10:52:59 +03:00
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class QMimeData;
|
|
|
|
|
|
|
|
namespace dialogs {
|
|
|
|
|
2018-02-18 23:52:31 +03:00
|
|
|
class PreviewUploadOverlay : public QWidget
|
2018-01-10 10:52:59 +03:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2018-02-18 23:52:31 +03:00
|
|
|
PreviewUploadOverlay(QWidget *parent = nullptr);
|
2018-01-10 10:52:59 +03:00
|
|
|
|
2019-07-22 03:38:44 +03:00
|
|
|
void setPreview(const QImage &src, const QString &mime);
|
2018-02-18 23:52:31 +03:00
|
|
|
void setPreview(const QByteArray data, const QString &mime);
|
|
|
|
void setPreview(const QString &path);
|
2021-03-20 13:18:16 +03:00
|
|
|
void keyPressEvent(QKeyEvent *event);
|
2018-01-10 10:52:59 +03:00
|
|
|
|
|
|
|
signals:
|
2018-02-18 23:52:31 +03:00
|
|
|
void confirmUpload(const QByteArray data, const QString &media, const QString &filename);
|
2020-11-15 06:52:49 +03:00
|
|
|
void aborted();
|
2018-01-10 10:52:59 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
void init();
|
2018-02-19 23:09:21 +03:00
|
|
|
void setLabels(const QString &type, const QString &mime, uint64_t upload_size);
|
2018-01-10 10:52:59 +03:00
|
|
|
|
2018-02-18 23:52:31 +03:00
|
|
|
bool isImage_;
|
2018-01-10 10:52:59 +03:00
|
|
|
QPixmap image_;
|
2018-02-18 23:52:31 +03:00
|
|
|
|
|
|
|
QByteArray data_;
|
|
|
|
QString filePath_;
|
|
|
|
QString mediaType_;
|
2018-01-10 10:52:59 +03:00
|
|
|
|
|
|
|
QLabel titleLabel_;
|
2018-02-18 23:52:31 +03:00
|
|
|
QLabel infoLabel_;
|
|
|
|
QLineEdit fileName_;
|
2018-01-10 10:52:59 +03:00
|
|
|
|
2018-09-25 14:41:47 +03:00
|
|
|
QPushButton upload_;
|
|
|
|
QPushButton cancel_;
|
2018-01-10 10:52:59 +03:00
|
|
|
};
|
|
|
|
} // dialogs
|