summary refs log tree commit diff
path: root/src/WelcomePage.h
blob: 480dc702fe254473e6d0cf4fd479eb9449f334ac (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 = 0);

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();
};