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.
calculate-utils-2.2-install.../src/pagefinish.h

32 lines
345 B

#pragma once
#include "installerpage.h"
class QLabel;
class PageFinish : public InstallerPage
{
Q_OBJECT
public:
explicit PageFinish();
void retranslateUi();
protected:
void setupUi();
public slots:
void show();
signals:
void toggleButtons(bool);
private:
static const QString m_messageComplete;
QLabel* m_labelComplete;
};