2017-12-01 19:28:26 +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 <QLabel>
|
|
|
|
#include <QSharedPointer>
|
2018-05-08 18:43:56 +03:00
|
|
|
#include <QUrl>
|
2017-12-01 19:28:26 +03:00
|
|
|
#include <QWidget>
|
|
|
|
|
2017-12-04 19:41:19 +03:00
|
|
|
#include <mtx.hpp>
|
2017-12-01 19:28:26 +03:00
|
|
|
|
|
|
|
class VideoItem : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-05-08 18:43:56 +03:00
|
|
|
VideoItem(const mtx::events::RoomEvent<mtx::events::msg::Video> &event,
|
2017-12-01 19:28:26 +03:00
|
|
|
QWidget *parent = nullptr);
|
|
|
|
|
2018-05-08 18:43:56 +03:00
|
|
|
VideoItem(const QString &url,
|
2017-12-01 19:28:26 +03:00
|
|
|
const QString &filename,
|
2018-02-19 23:09:21 +03:00
|
|
|
uint64_t size,
|
2017-12-01 19:28:26 +03:00
|
|
|
QWidget *parent = nullptr);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void init();
|
|
|
|
|
|
|
|
QUrl url_;
|
|
|
|
QString text_;
|
|
|
|
QString readableFileSize_;
|
|
|
|
|
|
|
|
QLabel *label_;
|
|
|
|
|
2017-12-04 19:41:19 +03:00
|
|
|
mtx::events::RoomEvent<mtx::events::msg::Video> event_;
|
2017-12-01 19:28:26 +03:00
|
|
|
};
|