forked from forth32/qhuaweiflash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.h
38 lines (33 loc) · 1.03 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
#include <ui_main.h>
#include <QtWidgets>
#include "hexeditor/qhexedit.h"
class MainWindow: public QMainWindow, public Ui_MainWindow {
Q_OBJECT
QByteArray hexcup;
QHexEdit* hexedit;
public:
MainWindow(QMainWindow *parent = 0, QString* fwfilename=0);
~MainWindow();
public slots:
void SelectFwFile(); // выбор файла
void AppendFwFile(); // добавление файла
void SaveFwFile(); // запись полного образа на диск
void OpenFwFile(QString filename); // открытие файла прошивки
void SelectPart(); // выбор раздела прошивки
void Menu_Part_Store();
void Menu_Part_Extract();
void Menu_Part_Replace();
void Menu_Part_Delete();
void Menu_Part_MoveUp();
void Menu_Part_MoveDown();
void Terminate() { QCoreApplication::quit(); }
void regenerate_partlist();
void Menu_Part_EditHeader();
void Disable_EditHeader();
void HeaderChanged();
void Start_Flasher();
void Reboot_modem();
void usbdload();
void find_ports();
void EnableMenu();
};