matrixion/src/UserInfoWidget.h

69 lines
1.5 KiB
C
Raw Normal View History

2021-03-05 02:35:15 +03:00
// SPDX-FileCopyrightText: 2017 Konstantinos Sideris <siderisk@auth.gr>
// SPDX-FileCopyrightText: 2021 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
2017-04-06 02:06:42 +03:00
#pragma once
2017-04-06 02:06:42 +03:00
2020-05-25 14:03:49 +03:00
#include <QWidget>
2017-10-28 15:46:39 +03:00
class Avatar;
class FlatButton;
class OverlayModal;
2017-04-06 02:06:42 +03:00
2020-05-25 14:03:49 +03:00
class QLabel;
class QHBoxLayout;
class QVBoxLayout;
class QMenu;
2020-05-25 14:03:49 +03:00
2017-04-06 02:06:42 +03:00
class UserInfoWidget : public QWidget
{
2017-09-10 12:59:21 +03:00
Q_OBJECT
2017-04-06 02:06:42 +03:00
Q_PROPERTY(QColor borderColor READ borderColor WRITE setBorderColor)
2017-04-06 02:06:42 +03:00
public:
2020-02-04 06:58:43 +03:00
UserInfoWidget(QWidget *parent = nullptr);
2017-04-06 02:06:42 +03:00
2017-09-10 12:59:21 +03:00
void setDisplayName(const QString &name);
void setUserId(const QString &userid);
void setAvatar(const QString &url);
2017-04-06 02:06:42 +03:00
2017-09-10 12:59:21 +03:00
void reset();
QColor borderColor() const { return borderColor_; }
void setBorderColor(QColor &color) { borderColor_ = color; }
2017-05-19 19:55:38 +03:00
protected:
2017-09-10 12:59:21 +03:00
void resizeEvent(QResizeEvent *event) override;
void paintEvent(QPaintEvent *event) override;
void contextMenuEvent(QContextMenuEvent *) override;
2017-05-19 19:55:38 +03:00
signals:
void openGlobalUserProfile();
2017-04-06 02:06:42 +03:00
private:
2017-09-10 12:59:21 +03:00
Avatar *userAvatar_;
2017-04-06 02:06:42 +03:00
2017-09-10 12:59:21 +03:00
QHBoxLayout *topLayout_;
QHBoxLayout *avatarLayout_;
QVBoxLayout *textLayout_;
QHBoxLayout *buttonLayout_;
2017-04-06 02:06:42 +03:00
2017-09-10 12:59:21 +03:00
FlatButton *logoutButton_;
2017-04-06 02:06:42 +03:00
2017-09-10 12:59:21 +03:00
QLabel *displayNameLabel_;
QLabel *userIdLabel_;
2017-04-06 02:06:42 +03:00
2017-09-10 12:59:21 +03:00
QString display_name_;
QString user_id_;
2017-04-06 02:06:42 +03:00
2017-09-10 12:59:21 +03:00
QImage avatar_image_;
2017-09-10 12:59:21 +03:00
int logoutButtonSize_;
QColor borderColor_;
QMenu *menu = nullptr;
2017-04-06 02:06:42 +03:00
};