This repository has been archived by the owner on Oct 8, 2019. It is now read-only.
forked from zhipeng-jia/project-lemon
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Crash
authored and
crash
committed
Nov 16, 2011
1 parent
1c52e3b
commit ed5de06
Showing
98 changed files
with
16,206 additions
and
16,117 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
#ifndef ADDCOMPILERWIZARD_H | ||
#define ADDCOMPILERWIZARD_H | ||
|
||
#include <QtCore> | ||
#include <QtGui> | ||
#include <QWizard> | ||
|
||
namespace Ui { | ||
class AddCompilerWizard; | ||
} | ||
|
||
class Compiler; | ||
|
||
class AddCompilerWizard : public QWizard | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit AddCompilerWizard(QWidget *parent = 0); | ||
~AddCompilerWizard(); | ||
void accept(); | ||
const QList<Compiler*>& getCompilerList() const; | ||
|
||
private: | ||
Ui::AddCompilerWizard *ui; | ||
QList<Compiler*> compilerList; | ||
int nextId() const; | ||
bool validateCurrentPage(); | ||
|
||
private slots: | ||
void compilerTypeChanged(); | ||
void selectCompilerLocation(); | ||
void selectInterpreterLocation(); | ||
void selectGccPath(); | ||
void selectGppPath(); | ||
void selectFpcPath(); | ||
void selectFbcPath(); | ||
void selectJavacPath(); | ||
void selectJavaPath(); | ||
void selectPythonPath(); | ||
}; | ||
|
||
#endif // ADDCOMPILERWIZARD_H | ||
#ifndef ADDCOMPILERWIZARD_H | ||
#define ADDCOMPILERWIZARD_H | ||
|
||
#include <QtCore> | ||
#include <QtGui> | ||
#include <QWizard> | ||
|
||
namespace Ui { | ||
class AddCompilerWizard; | ||
} | ||
|
||
class Compiler; | ||
|
||
class AddCompilerWizard : public QWizard | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit AddCompilerWizard(QWidget *parent = 0); | ||
~AddCompilerWizard(); | ||
void accept(); | ||
const QList<Compiler*>& getCompilerList() const; | ||
|
||
private: | ||
Ui::AddCompilerWizard *ui; | ||
QList<Compiler*> compilerList; | ||
int nextId() const; | ||
bool validateCurrentPage(); | ||
|
||
private slots: | ||
void compilerTypeChanged(); | ||
void selectCompilerLocation(); | ||
void selectInterpreterLocation(); | ||
void selectGccPath(); | ||
void selectGppPath(); | ||
void selectFpcPath(); | ||
void selectFbcPath(); | ||
void selectJavacPath(); | ||
void selectJavaPath(); | ||
void selectPythonPath(); | ||
}; | ||
|
||
#endif // ADDCOMPILERWIZARD_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.