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
committed
Nov 15, 2011
1 parent
3440c97
commit 1c52e3b
Showing
28 changed files
with
2,696 additions
and
787 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 |
---|---|---|
@@ -0,0 +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 |
Oops, something went wrong.