This repository has been archived by the owner on Apr 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.h
77 lines (64 loc) · 1.8 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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "about.h"
#include <QMainWindow>
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
void on_actionAbout_Qt_triggered();
void on_actionAbout_triggered();
void on_frameStart_valueChanged(const QString &arg1);
void on_frameEnd_valueChanged(const QString &arg1);
void on_FormatSelect_activated(int index);
void on_checkBox_toggled(bool checked);
void on_BlendSelect_clicked();
void on_BlendFile_textChanged(const QString &arg1);
void on_RenderEngine_currentIndexChanged(int index);
void on_btn_Render_clicked();
void on_SaveRenderSelect_clicked();
void on_SaveRender_textChanged(const QString &arg1);
void on_checkBox_2_toggled(bool checked);
void on_NumberThread_valueChanged(const QString &arg1);
void on_btn_GitHub_clicked();
void on_btn_Twitter_clicked();
void on_btn_Diaspora_clicked();
void on_btn_Misskey_clicked();
void on_btnSide_Render_clicked();
void on_btnSide_Queue_clicked();
void on_btnSide_Param_clicked();
void on_btnSide_Option4_clicked();
void on_btn_AddQueue_clicked();
/*
void on_btn_ListUp_clicked();
void on_btn_ListDown_clicked();
*/
void on_btn_ListRemove_clicked();
private:
Ui::MainWindow *ui;
About about;
QString cmd;
QString st;
QString stdef;
QString end;
QString enddef;
QString setFrame;
QString anim;
QString format;
QString blend;
QString Engine;
QString SaveAs;
QString tnum;
QString currentBlend;
QString engineIndex;
QString formatIndex;
bool toveride;
bool animCheck;
};
#endif // MAINWINDOW_H