forked from mirror/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
386 B
21 lines
386 B
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
class WelcomePage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit WelcomePage(QWidget *parent = nullptr);
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *) override;
|
|
|
|
signals:
|
|
// Notify that the user wants to login in.
|
|
void userLogin();
|
|
|
|
// Notify that the user wants to register.
|
|
void userRegister();
|
|
};
|
|
|