aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/setupwizard/PasteWizardPage.h
blob: dece81c42aaeb7f393def14237c12183b2eded60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef PASTEDEFAULTSCONFIRMATIONWIZARD_H
#define PASTEDEFAULTSCONFIRMATIONWIZARD_H

#include <QWidget>
#include "BaseWizardPage.h"

namespace Ui {
class PasteWizardPage;
}

class PasteWizardPage : public BaseWizardPage {
    Q_OBJECT

   public:
    explicit PasteWizardPage(QWidget* parent = nullptr);
    ~PasteWizardPage();

    void initializePage() override;
    bool validatePage() override;
    void retranslate() override;

   private:
    Ui::PasteWizardPage* ui;
};

#endif  // PASTEDEFAULTSCONFIRMATIONWIZARD_H