mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
38 lines
782 B
C++
38 lines
782 B
C++
|
#pragma once
|
||
|
|
||
|
#include "widgets/basewidget.hpp"
|
||
|
|
||
|
#include <QtCore/QVariant>
|
||
|
#include <QtWidgets/QAction>
|
||
|
#include <QtWidgets/QApplication>
|
||
|
#include <QtWidgets/QButtonGroup>
|
||
|
#include <QtWidgets/QDialog>
|
||
|
#include <QtWidgets/QDialogButtonBox>
|
||
|
#include <QtWidgets/QHBoxLayout>
|
||
|
#include <QtWidgets/QHeaderView>
|
||
|
#include <QtWidgets/QPushButton>
|
||
|
#include <QtWidgets/QVBoxLayout>
|
||
|
|
||
|
namespace chatterino {
|
||
|
namespace widgets {
|
||
|
|
||
|
class LoginWidget : public QDialog
|
||
|
{
|
||
|
public:
|
||
|
LoginWidget();
|
||
|
|
||
|
private:
|
||
|
struct {
|
||
|
QVBoxLayout mainLayout;
|
||
|
|
||
|
QVBoxLayout verticalLayout;
|
||
|
QHBoxLayout horizontalLayout;
|
||
|
QPushButton loginButton;
|
||
|
QPushButton pasteCodeButton;
|
||
|
QDialogButtonBox buttonBox;
|
||
|
} ui;
|
||
|
};
|
||
|
|
||
|
} // namespace widgets
|
||
|
} // namespace chatterino
|