-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.cpp
327 lines (258 loc) · 10.9 KB
/
MainWindow.cpp
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
//**********************************************************************
//* Формирование интерфейса главного окна
//*********************************************************************
#include "MainWindow.h"
// ссылка на селектор портов
extern QComboBox* pselector;
//************************************************
//* Конструктор класса главного окна
//************************************************
MainWindow::MainWindow(QString startfile): QMainWindow() {
int i;
this->resize(1000, 737);
// Класс для загрузки конфигов
config=new QSettings("forth32","qhuaweiflash",this);
// Шрифт для надписей на основной панели
QFont font;
font.setPointSize(14);
font.setBold(true);
font.setWeight(75);
// Формируем иконку главного окна
icon.addFile(QStringLiteral(":/icon.ico"), QSize(), QIcon::Normal, QIcon::Off);
setWindowIcon(icon);
// заголовок окна
settitle();
// Достаем из конфига размеры главного окна
QRect mainrect=config->value("/config/MainWindowRect").toRect();
if (mainrect != QRect(0,0,0,0)) setGeometry(mainrect);
// Достаем из конфига ширину строки hex-редактора
// Сплиттер - корневой виджет окна
centralwidget=new QSplitter(Qt::Horizontal, this);
setCentralWidget(centralwidget);
// Левое окно - редактор заголовков
hdrpanel=new QWidget(centralwidget);
centralwidget->addWidget(hdrpanel);
centralwidget->setStretchFactor(0,1);
vlhdr=new QVBoxLayout(hdrpanel);
// параметры прошивки
hdlbl3=new QLabel("File options");
hdlbl3->setFont(font);
vlhdr->addWidget(hdlbl3);
QFormLayout* lfparm=new QFormLayout(0);
vlhdr->addLayout(lfparm);
// тип файла прошивки
dload_id_selector=new QComboBox(centralwidget);
lfparm->addRow("File type",dload_id_selector);
// флаг сжатия
zflag_selector=new QCheckBox("zlib compression sections",centralwidget);
vlhdr->addWidget(zflag_selector);
// наполняем список кодов прошивки
for(i=0;i<8;i++) {
dload_id_selector->insertItem(i,fw_description(i));
}
dload_id_selector->setCurrentIndex(0);
// Liste des sections
hdlbl1=new QLabel("List of sections",hdrpanel);
hdlbl1->setFont(font);
vlhdr->addWidget(hdlbl1);
partlist = new QListWidget(hdrpanel);
vlhdr->addWidget(partlist);
hdlbl2=new QLabel("Title of the section",hdrpanel);
hdlbl2->setFont(font);
vlhdr->addWidget(hdlbl2);
// Компоновщик для параметров редактирования
lphdr=new QFormLayout(0);
vlhdr->addLayout(lphdr);
// элементы редактора заголовка
pcode = new QLineEdit(hdrpanel);
pcode->setMaxLength(4);
pcode->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
pcode->setReadOnly(true);
lphdr->addRow("Section Code",pcode);
Platform_input = new QLineEdit(hdrpanel);
Platform_input->setMaxLength(8);
Platform_input->setReadOnly(true);
Platform_input->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
lphdr->addRow("Platform",Platform_input);
Date_input = new QLineEdit(hdrpanel);
Date_input->setMaxLength(16);
Date_input->setReadOnly(true);
Date_input->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
lphdr->addRow("Date",Date_input);
Time_input = new QLineEdit(hdrpanel);
Time_input->setMaxLength(16);
Time_input->setReadOnly(true);
Time_input->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
lphdr->addRow("Time",Time_input);
setdate = new QToolButton(hdrpanel);
setdate->setText("Set the current date ");
vlhdr->addWidget(setdate);
vlhdr->addWidget(new QLabel("Firmware Version",hdrpanel));
QSize qs=Time_input->sizeHint();
qs.rwidth() *=2;
Version_input = new QLineEdit(hdrpanel);
Version_input->setMaxLength(32);
Version_input->setReadOnly(true);
Version_input->resize(qs);
Version_input->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Fixed);
vlhdr->addWidget(Version_input);
// Правое окно - редактор разделов
edpanel=new QWidget(centralwidget);
centralwidget->addWidget(edpanel);
centralwidget->setStretchFactor(1,5);
EditorLayout=new QVBoxLayout(edpanel);
// Кнопки сырой-форматный
laymode=new QHBoxLayout(0);
modebuttons = new QGroupBox("Display mode");
// modebuttons->setFrameStyle(QFrame::Panel | QFrame::Sunken);
modebuttons->setFlat(false);
dump_mode = new QRadioButton("HEX-Dump");
laymode->addWidget(dump_mode);
structure_mode = new QRadioButton("Formatted");
structure_mode->setChecked(true);
laymode->addWidget(structure_mode);
modebuttons->setLayout(laymode);
modebuttons->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
EditorLayout->addWidget(modebuttons,0);
// горизонтальный разделитель
hframe=new QFrame(edpanel);
hframe->setFrameStyle(QFrame::HLine);
hframe->setLineWidth(2);
EditorLayout->addWidget(hframe,0);
// Статусбар
statusbar = new QStatusBar(this);
setStatusBar(statusbar);
// Выбор порта
plbl=new QLabel("Port modem:");
statusbar->addPermanentWidget(plbl);
PortSelector = new QComboBox(centralwidget);
statusbar->addPermanentWidget(PortSelector);
RefreshPorts = new QToolButton(centralwidget);
RefreshPorts->setIcon(style()->standardIcon(QStyle::SP_BrowserReload));
statusbar->addPermanentWidget(RefreshPorts);
// Восстанавливаем состояние сплиттера
centralwidget->restoreState(config->value("/config/splitter").toByteArray());
// Главное меню
menubar = new QMenuBar(this);
menu_file = new QMenu("File",menubar);
menubar->addAction(menu_file->menuAction());
menu_part = new QMenu("Section",menubar);
menu_part->setEnabled(true);
menubar->addAction(menu_part->menuAction());
menu_oper = new QMenu("Operations",menubar);
menu_oper->setEnabled(true);
menubar->addAction(menu_oper->menuAction());
setMenuBar(menubar);
// Обработчики главного меню
fileopen = new QAction("Open",this);
fileopen->setShortcut(QKeySequence::Open);
menu_file->addAction(fileopen);
fileappend = new QAction("Add",this);
fileappend->setEnabled(false);
menu_file->addAction(fileappend);
menu_file->addSeparator();
filesave = new QAction("Save",this);
filesave->setEnabled(false);
filesave->setShortcut(QKeySequence::Save);
menu_file->addAction(filesave);
menu_file->addAction("Save as...",this,SLOT(save_as()));
menu_file->addSeparator();
// Последние открытые файлы
QStringList recent=config->value("/recent/rfiles").toStringList();
for(int i=0;i<recent.count();i++) {
menu_file->addAction(recent.at(i),this,SLOT(open_recent_file()));
}
menu_file->addSeparator();
file_exit = new QAction("Exit",this);
file_exit->setShortcut(QKeySequence::Quit);
menu_file->addAction(file_exit);
//----------------
part_store = new QAction("Extract with header",this);
menu_part->addAction(part_store);
part_extract = new QAction("Extract without header",this);
part_extract->setShortcut(QKeySequence("Ctrl+T"));
menu_part->addAction(part_extract);
part_replace = new QAction("Replace image section",this);
menu_part->addAction(part_replace);
MoveUp = new QAction("ascend",this);
MoveUp->setShortcut(QKeySequence("Ctrl+Up"));
menu_part->addAction(MoveUp);
MoveDown = new QAction("Descend",this);
MoveDown->setShortcut(QKeySequence("Ctrl+Down"));
menu_part->addAction(MoveDown);
Delete = new QAction("Remove",this);
Delete->setShortcut(QKeySequence("Ctrl+Del"));
menu_part->addAction(Delete);
part_copy_header = new QAction("Copy header",this);
menu_part->addAction(part_copy_header);
//----------------
Menu_Oper_flash = new QAction("Flash modem",this);
Menu_Oper_flash->setEnabled(false);
Menu_Oper_flash->setShortcut(QKeySequence("Alt+B"));
menu_oper->addAction(Menu_Oper_flash);
Menu_Oper_USBDload = new QAction("Loading usbdloader",this);
Menu_Oper_USBDload->setShortcut(QKeySequence("Alt+U"));
menu_oper->addAction(Menu_Oper_USBDload);
menu_oper->addSeparator();
Menu_Oper_Reboot = new QAction("Restart the modem",this);
menu_oper->addAction(Menu_Oper_Reboot);
menu_oper->addSeparator();
Menu_Oper_signinfo = new QAction("Digital signature info",this);
Menu_Oper_signinfo->setShortcut(QKeySequence("Alt+D"));
Menu_Oper_signinfo->setEnabled(false);
menu_oper->addAction(Menu_Oper_signinfo);
// Установка обработчиков сигналов
connect(fileopen, SIGNAL(triggered()), this, SLOT(SelectFwFile()));
connect(partlist, SIGNAL(itemActivated(QListWidgetItem*)), this, SLOT(SelectPart()));
connect(fileappend, SIGNAL(triggered()), this, SLOT(AppendFwFile()));
connect(part_extract, SIGNAL(triggered()), this, SLOT(Menu_Part_Extract()));
connect(part_store, SIGNAL(triggered()), this, SLOT(Menu_Part_Store()));
connect(partlist, SIGNAL(itemClicked(QListWidgetItem*)), this, SLOT(SelectPart()));
connect(part_replace, SIGNAL(triggered()), this, SLOT(Menu_Part_Replace()));
connect(file_exit, SIGNAL(triggered()), this, SLOT(close()));
connect(filesave, SIGNAL(triggered()), this, SLOT(SaveFwFile()));
connect(Delete, SIGNAL(triggered()), this, SLOT(Menu_Part_Delete()));
connect(MoveUp, SIGNAL(triggered()), this, SLOT(Menu_Part_MoveUp()));
connect(MoveDown, SIGNAL(triggered()), this, SLOT(Menu_Part_MoveDown()));
connect(partlist, SIGNAL(currentRowChanged(int)), this, SLOT(Disable_EditHeader()));
connect(Menu_Oper_flash, SIGNAL(triggered()), this, SLOT(Start_Flasher()));
connect(Menu_Oper_Reboot, SIGNAL(triggered()), this, SLOT(Reboot_modem()));
connect(Menu_Oper_USBDload, SIGNAL(triggered()), this, SLOT(usbdload()));
connect(setdate, SIGNAL(clicked()), this, SLOT(set_date()));
connect(Menu_Oper_signinfo, SIGNAL(triggered()), this, SLOT(ShowSignInfo()));
connect(dump_mode, SIGNAL(toggled(bool)), this, SLOT(SelectPart()));
connect(partlist, SIGNAL(currentRowChanged(int)), this, SLOT(SelectPart()));
connect(part_copy_header, SIGNAL(triggered()), this, SLOT(HeadCopy()));
connect(RefreshPorts, SIGNAL(clicked()), this, SLOT(find_ports()));
// внешняя ссылка на выбиралку порта
pselector=PortSelector;
// создание класса таблицы разделов
ptable=new ptable_list;
// заполнение списка портов
find_ports();
// обнуление указателей на редакторы разделов
hexedit=0;
ptedit=0;
cpio=0;
// открываем файл из командной строки
if (!startfile.isEmpty()) {
OpenFwFile(startfile);
}
partlist->setFocus();
}
//*****************************************
//* Деструктор класса
//*****************************************
MainWindow::~MainWindow() {
QRect mainrect;
ask_save();
if (hexedit != 0) delete hexedit;
if (kedit != 0) delete kedit;
if (nvedit != 0) delete nvedit;
delete ptable;
// геометрия главного окна
mainrect=geometry();
config->setValue("/config/MainWindowRect",mainrect);
// геометрия сплиттера
config->setValue("/config/splitter",centralwidget->saveState());
}