mirror of
https://github.com/QuasarApp/QtDeployer.git
synced 2025-04-29 15:04:31 +00:00
34 lines
511 B
C++
34 lines
511 B
C++
#ifndef BUILDPAGE_H
|
|
#define BUILDPAGE_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class BuildPage;
|
|
}
|
|
|
|
class BuildPage : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit BuildPage(QWidget *parent = 0);
|
|
~BuildPage();
|
|
|
|
public slots:
|
|
void log(QString);
|
|
private:
|
|
Ui::BuildPage *ui;
|
|
|
|
void checkPathes();
|
|
private slots:
|
|
void chooseQtDir();
|
|
void chooseProjectDir();
|
|
void buildClick();
|
|
void chooseChanged(QString);
|
|
signals:
|
|
void build(QString qt, QString pro);
|
|
};
|
|
|
|
#endif // BUILDPAGE_H
|