mirror-chatterino2/widgets/accountpopup.h

36 lines
519 B
C
Raw Normal View History

2017-04-12 17:46:44 +02:00
#ifndef USERPOPUPWIDGET_H
#define USERPOPUPWIDGET_H
#include <QWidget>
#include <memory>
2017-04-14 17:52:22 +02:00
namespace Ui {
2017-04-19 15:24:19 +02:00
class AccountPopup;
2017-04-12 17:46:44 +02:00
}
2017-04-14 17:52:22 +02:00
namespace chatterino {
2017-04-12 17:46:44 +02:00
class Channel;
2017-04-14 17:52:22 +02:00
namespace widgets {
2017-04-12 17:46:44 +02:00
2017-04-19 15:24:19 +02:00
class AccountPopupWidget : public QWidget
2017-04-12 17:46:44 +02:00
{
Q_OBJECT
public:
2017-04-19 15:24:19 +02:00
AccountPopupWidget(std::shared_ptr<Channel> &&_channel);
2017-04-12 17:46:44 +02:00
void setName(const QString &name);
private:
2017-04-19 15:24:19 +02:00
Ui::AccountPopup *_ui;
2017-04-12 17:46:44 +02:00
std::shared_ptr<Channel> _channel;
};
2017-04-14 17:52:22 +02:00
} // namespace widgets
} // namespace chatterino
2017-04-12 17:46:44 +02:00
#endif // USERPOPUPWIDGET_H