mirror-chatterino2/src/widgets/accountpopup.hpp

33 lines
449 B
C++
Raw Normal View History

#pragma once
2017-04-12 17:46:44 +02:00
#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