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

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