/* * Squawk messenger. * Copyright (C) 2019 Yury Gubich * * 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 . */ #ifndef MESSAGE_H #define MESSAGE_H #include #include #include #include #include #include #include #include #include #include #include "global.h" #include "resizer.h" #include "image.h" /** * @todo write docs */ class Message : public QHBoxLayout { Q_OBJECT public: Message(const Shared::Message& source, bool outgoing, const QString& sender, QWidget* parent = nullptr); ~Message(); void setSender(const QString& sender); QString getId() const; QString getFileUrl() const; const Shared::Message& getMessage() const; void addButton(const QIcon& icon, const QString& buttonText); void showComment(const QString& comment, bool wordWrap = false); void hideComment(); void showFile(const QString& path); void setProgress(qreal value); signals: void buttonClicked(); private: Shared::Message msg; QWidget* body; QVBoxLayout* bodyLayout; QLabel* date; QLabel* sender; QLabel* text; QGraphicsDropShadowEffect* shadow; QPushButton* button; QLabel* file; QProgressBar* progress; QLabel* fileComment; bool hasButton; bool hasProgress; bool hasFile; bool commentAdded; private: void hideButton(); void hideProgress(); void hideFile(); }; #endif // MESSAGE_H