2017-11-28 03:01:37 +03:00
|
|
|
/*
|
|
|
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QEvent>
|
|
|
|
#include <QIcon>
|
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <QWidget>
|
|
|
|
|
2017-12-04 19:41:19 +03:00
|
|
|
#include <mtx.hpp>
|
2017-11-28 03:01:37 +03:00
|
|
|
|
|
|
|
class FileItem : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
Q_PROPERTY(QColor textColor WRITE setTextColor READ textColor)
|
|
|
|
Q_PROPERTY(QColor iconColor WRITE setIconColor READ iconColor)
|
|
|
|
Q_PROPERTY(QColor backgroundColor WRITE setBackgroundColor READ backgroundColor)
|
|
|
|
|
|
|
|
public:
|
2018-05-08 18:43:56 +03:00
|
|
|
FileItem(const mtx::events::RoomEvent<mtx::events::msg::File> &event,
|
2017-11-28 03:01:37 +03:00
|
|
|
QWidget *parent = nullptr);
|
|
|
|
|
2018-05-08 18:43:56 +03:00
|
|
|
FileItem(const QString &url,
|
2017-11-28 03:01:37 +03:00
|
|
|
const QString &filename,
|
2018-02-19 23:09:21 +03:00
|
|
|
uint64_t size,
|
2017-11-28 03:01:37 +03:00
|
|
|
QWidget *parent = nullptr);
|
|
|
|
|
|
|
|
QSize sizeHint() const override;
|
|
|
|
|
|
|
|
void setTextColor(const QColor &color) { textColor_ = color; }
|
|
|
|
void setIconColor(const QColor &color) { iconColor_ = color; }
|
|
|
|
void setBackgroundColor(const QColor &color) { backgroundColor_ = color; }
|
|
|
|
|
|
|
|
QColor textColor() const { return textColor_; }
|
|
|
|
QColor iconColor() const { return iconColor_; }
|
|
|
|
QColor backgroundColor() const { return backgroundColor_; }
|
|
|
|
|
2018-06-09 16:03:14 +03:00
|
|
|
signals:
|
|
|
|
void fileDownloadedCb(const QByteArray &data);
|
|
|
|
|
2017-11-28 03:01:37 +03:00
|
|
|
protected:
|
|
|
|
void paintEvent(QPaintEvent *event) override;
|
|
|
|
void mousePressEvent(QMouseEvent *event) override;
|
2018-05-26 17:05:57 +03:00
|
|
|
void resizeEvent(QResizeEvent *event) override;
|
2017-11-28 03:01:37 +03:00
|
|
|
|
2018-06-09 16:03:14 +03:00
|
|
|
private slots:
|
|
|
|
void fileDownloaded(const QByteArray &data);
|
|
|
|
|
2017-11-28 03:01:37 +03:00
|
|
|
private:
|
|
|
|
void openUrl();
|
2017-11-30 00:39:35 +03:00
|
|
|
void init();
|
2017-11-28 03:01:37 +03:00
|
|
|
|
|
|
|
QUrl url_;
|
|
|
|
QString text_;
|
|
|
|
QString readableFileSize_;
|
|
|
|
QString filenameToSave_;
|
|
|
|
|
2017-12-04 19:41:19 +03:00
|
|
|
mtx::events::RoomEvent<mtx::events::msg::File> event_;
|
2017-11-28 03:01:37 +03:00
|
|
|
|
|
|
|
QIcon icon_;
|
|
|
|
|
|
|
|
QColor textColor_ = QColor("white");
|
|
|
|
QColor iconColor_ = QColor("#38A3D8");
|
|
|
|
QColor backgroundColor_ = QColor("#333");
|
|
|
|
};
|