2018-01-12 23:09:05 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "widgets/accountswitchwidget.hpp"
|
|
|
|
#include "widgets/settingspages/settingspage.hpp"
|
|
|
|
|
2018-04-03 02:55:32 +02:00
|
|
|
#include <QPushButton>
|
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
|
|
|
namespace settingspages {
|
|
|
|
|
|
|
|
class AccountsPage : public SettingsPage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AccountsPage();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QPushButton *addButton;
|
|
|
|
QPushButton *removeButton;
|
|
|
|
AccountSwitchWidget *accSwitchWidget;
|
|
|
|
};
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
} // namespace settingspages
|
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|