mirror-chatterino2/src/widgets/accountpopup.h

36 lines
518 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:
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-12 17:46:44 +02:00
};
2017-04-14 17:52:22 +02:00
} // namespace widgets
} // namespace chatterino
2017-04-12 17:46:44 +02:00
#endif // USERPOPUPWIDGET_H