mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
33 lines
449 B
C++
33 lines
449 B
C++
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
#include <memory>
|
|
|
|
namespace Ui {
|
|
class AccountPopup;
|
|
}
|
|
|
|
namespace chatterino {
|
|
|
|
class Channel;
|
|
|
|
namespace widgets {
|
|
|
|
class AccountPopupWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
AccountPopupWidget(std::shared_ptr<Channel> &channel);
|
|
|
|
void setName(const QString &name);
|
|
|
|
private:
|
|
Ui::AccountPopup *_ui;
|
|
|
|
std::shared_ptr<Channel> &_channel;
|
|
};
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|