-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmainwindow.h
88 lines (61 loc) · 1.75 KB
/
mainwindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QProcess>
#include <QLineEdit>
#include <QCheckBox>
#include <QFile>
#include <QFileDialog>
#include <QMessageBox>
#include <QInputDialog>
#include <QDialog>
#include <string>
#include <QVector>
using namespace std;
#include "minecraftloader.h"
#include "FileUtilities.h"
#include "settingsmanager.h"
#include "minecraftoldversionincluder.h"
#include "launcherprofileloader.h"
#include "versionmanagerdialog.h"
namespace Ui {
class MainWindow;
}
void refreshMinecraftVersion(QString mp, QComboBox *cb, QString last);
extern QString playerName, minecraftPath, launchMode, javaPath, last;
extern int maxMemory;
extern bool loaded, debug;
extern bool lpLoaded;
extern LauncherProfileLoader *loader;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
QString generateLaunchString();
private slots:
void on_btnRun_clicked();
void on_btnSelHome_clicked();
void on_btnSelGoodMem_clicked();
void on_btnSelMCPath_clicked();
void on_txtMinecraftPath_editingFinished();
void on_rdo64Bit_clicked();
void on_rdo32Bit_clicked();
void on_rdoNormal_clicked();
void on_btnSelJavaPath_clicked();
void on_txtJavaPath_editingFinished();
void on_txtMaxMemory_editingFinished();
void on_txtPlayerName_editingFinished();
void on_cboVersion_currentIndexChanged(const QString &arg1);
void on_btnMakeSh_clicked();
void on_btnInclude_clicked();
void on_btnManageVersion_clicked();
private:
Ui::MainWindow *ui;
private:
QProcess *pro;
QLineEdit *txtMinecraftPath, *txtJavaPath, *txtPlayerName;
QCheckBox *chkUseJava, *chk64Bit;
};
#endif // MAINWINDOW_H