Add java checker to the instance settings

This commit is contained in:
Petr Mrázek
2013-11-25 01:14:30 +01:00
parent 088b039cf7
commit d6b09f7c13
6 changed files with 115 additions and 33 deletions

View File

@ -17,6 +17,7 @@
#include <QDialog>
#include "settingsobject.h"
#include "logic/JavaChecker.h"
namespace Ui
{
@ -44,7 +45,15 @@ slots:
void on_buttonBox_accepted();
void on_buttonBox_rejected();
void on_javaDetectBtn_clicked();
void on_javaTestBtn_clicked();
void on_javaBrowseBtn_clicked();
void checkFinished(JavaCheckResult result);
private:
Ui::InstanceSettings *ui;
SettingsObject *m_obj;
std::shared_ptr<JavaChecker> checker;
};