mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
4bd43780d9
- Join rules - Guest access
77 lines
1.5 KiB
C++
77 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include <QFrame>
|
|
#include <QImage>
|
|
|
|
#include "Cache.h"
|
|
|
|
class FlatButton;
|
|
class TextField;
|
|
class Avatar;
|
|
class QPixmap;
|
|
class QLayout;
|
|
class QLabel;
|
|
class QComboBox;
|
|
|
|
template<class T>
|
|
class QSharedPointer;
|
|
|
|
class TopSection : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QColor textColor WRITE setTextColor READ textColor)
|
|
|
|
public:
|
|
TopSection(const RoomInfo &info, const QImage &img, QWidget *parent = nullptr);
|
|
QSize sizeHint() const override;
|
|
|
|
QColor textColor() const { return textColor_; }
|
|
void setTextColor(QColor &color) { textColor_ = color; }
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event) override;
|
|
|
|
private:
|
|
static constexpr int AvatarSize = 72;
|
|
static constexpr int Padding = 5;
|
|
|
|
RoomInfo info_;
|
|
QPixmap avatar_;
|
|
QColor textColor_;
|
|
};
|
|
|
|
namespace dialogs {
|
|
|
|
class RoomSettings : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
RoomSettings(const QString &room_id, QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
void closing();
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *event) override;
|
|
|
|
private slots:
|
|
void save_and_close();
|
|
|
|
private:
|
|
static constexpr int AvatarSize = 64;
|
|
|
|
void setAvatar(const QImage &img) { avatarImg_ = img; }
|
|
|
|
// Button section
|
|
FlatButton *saveBtn_;
|
|
FlatButton *cancelBtn_;
|
|
|
|
RoomInfo info_;
|
|
QString room_id_;
|
|
QImage avatarImg_;
|
|
|
|
QComboBox *accessCombo;
|
|
};
|
|
|
|
} // dialogs
|