blob: 5c50d6d3fa96b757518153b82865dcc5a5f05215 (
plain) (
tree)
|
|
#ifndef WELCOMEPAGE_HH
#define WELCOMEPAGE_HH
#ifdef HAS_INSTALL_ENV
#include <QPushButton>
#endif
#include "horizonwizardpage.hh"
class IntroPage : public HorizonWizardPage {
public:
IntroPage(QWidget *parent = nullptr);
int nextId() const;
#ifdef HAS_INSTALL_ENV
private:
QPushButton *toolButton;
#endif
};
#endif // WELCOMEPAGE_HH
|