-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.hpp
81 lines (50 loc) · 1.41 KB
/
mainwindow.hpp
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
#ifndef MAINWINDOW_HPP
#define MAINWINDOW_HPP
#include <QMainWindow>
#include <QFile>
#include <QTextStream>
#include <QFileDialog>
#include <QDir>
#include <QTranslator>
//#ifndef PRECONFQT_HPP
//#include <PreconfQT.hpp>
//#endif
typedef unsigned short int MinInt;
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 Iniz(const MinInt& Mode);
void Iniz2(const bool FileNameBool,const MinInt& Mode,QString FileName="");
void IStart (void);
bool GetIdiom();
void on_Mode1_clicked();
void on_URL_textChanged(const QString &arg1);
void on_Config_clicked();
void on_Bsave_clicked();
void on_Brest_clicked();
void on_Done_clicked();
void on_Babut_clicked();
void on_LKgit_clicked();
void on_LKweb_clicked();
void on_LKdoc_clicked();
void on_LKmal_clicked();
void on_Mode2_clicked();
void on_Mode3_clicked();
void on_Bwebc_clicked();
void on_Oanam_stateChanged(int arg1);
void on_Oalbm_stateChanged(int arg1);
void on_Bout_clicked();
void on_pushButton_clicked();
void on_Rbrec_clicked();
void on_Rbper_clicked();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_HPP