mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
30 lines
514 B
C++
30 lines
514 B
C++
#pragma once
|
|
|
|
#include "widgets/AccountSwitchWidget.hpp"
|
|
#include "widgets/BaseWindow.hpp"
|
|
|
|
#include <QWidget>
|
|
|
|
namespace chatterino {
|
|
|
|
class AccountSwitchPopup : public BaseWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AccountSwitchPopup(QWidget *parent = nullptr);
|
|
|
|
void refresh();
|
|
|
|
protected:
|
|
void focusOutEvent(QFocusEvent *event) final;
|
|
void paintEvent(QPaintEvent *event) override;
|
|
|
|
private:
|
|
struct {
|
|
AccountSwitchWidget *accountSwitchWidget = nullptr;
|
|
} ui_;
|
|
};
|
|
|
|
} // namespace chatterino
|