summary refs log tree commit diff
path: root/src/WelcomePage.h
blob: ae6602154584ba18bdd7b7c74ae88100a471177d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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();
};