mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
020a842aef
Convert list of receipts to map<userId, timestamp>
50 lines
928 B
C++
50 lines
928 B
C++
#pragma once
|
|
|
|
#include <QDateTime>
|
|
#include <QFrame>
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
#include <QListWidget>
|
|
#include <QVBoxLayout>
|
|
|
|
class Avatar;
|
|
|
|
namespace dialogs {
|
|
|
|
class ReceiptItem : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ReceiptItem(QWidget *parent, const QString &user_id, uint64_t timestamp);
|
|
|
|
private:
|
|
QString dateFormat(const QDateTime &then) const;
|
|
|
|
QHBoxLayout *topLayout_;
|
|
QVBoxLayout *textLayout_;
|
|
|
|
Avatar *avatar_;
|
|
|
|
QLabel *userName_;
|
|
QLabel *timestamp_;
|
|
};
|
|
|
|
class ReadReceipts : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ReadReceipts(QWidget *parent = nullptr);
|
|
|
|
public slots:
|
|
void addUsers(const std::multimap<uint64_t, std::string, std::greater<uint64_t>> &users);
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event) override;
|
|
|
|
private:
|
|
QLabel *topLabel_;
|
|
|
|
QListWidget *userList_;
|
|
};
|
|
} // dialogs
|