Skip to content
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.

Commit

Permalink
Lemon v1.1 Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Crash committed Nov 15, 2011
1 parent 3440c97 commit 1c52e3b
Show file tree
Hide file tree
Showing 28 changed files with 2,696 additions and 787 deletions.
503 changes: 503 additions & 0 deletions addcompilerwizard.cpp

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions addcompilerwizard.h
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
Loading

0 comments on commit 1c52e3b

Please sign in to comment.