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.
nheko/src/WelcomePage.h

22 lines
386 B

#pragma once
8 years ago
7 years ago
#include <QWidget>
8 years ago
class WelcomePage : public QWidget
{
Q_OBJECT
8 years ago
public:
explicit WelcomePage(QWidget *parent = nullptr);
8 years ago
protected:
void paintEvent(QPaintEvent *) override;
8 years ago
signals:
// Notify that the user wants to login in.
void userLogin();
8 years ago
// Notify that the user wants to register.
void userRegister();
8 years ago
};