-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
41 lines (33 loc) · 1.05 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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "ExecutionData.h"
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
static constexpr int LONGSAYSPLITTING_MIN_START_LENGTH = 180;
static constexpr int LONGSAYSPLITTING_TARGET_LENGTH = 60;
// 构建适用于任何流程(包括正常的编译流程和使用工具的部分)的初始命令信息
// 如果关键项有问题(比如没有指定主程序)就返回 false
bool populateInitialExecutionInfo(ExecutionInfo& info);
private slots:
void search_exe();
void settingsChanged();
void inputListChanged();
void requestLaunch();
void requestTranslationExport();
void requestTranslationExportImpl(const QString& path);
void requestImagePackTool();
void requestLaunchNewUI();
void requestOpenDocs();
private:
Ui::MainWindow *ui;
ExecutionInfo curInfo;
};
#endif // MAINWINDOW_H