-
Notifications
You must be signed in to change notification settings - Fork 44
/
main.cpp
806 lines (644 loc) · 23 KB
/
main.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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
#include <QtWidgets>
#include <MainWindow.h>
#include <stdio.h>
#include <stdint.h>
#include <time.h>
#include "sio.h"
#include "usbloader.h"
#include "fwsave.h"
#include "signver.h"
#include "parts.h"
#include "cpio.h"
#include "kerneledit.h"
#include "nvdedit.h"
void flasher();
// ссылка на селектор портов
QComboBox* pselector;
// Таблица разделов
ptable_list* ptable;
int npart=0;
QString fwfilename;
MainWindow* mw;
//*************************************************
// Поиск ttyUSB портов и сбор их имен в таблицу
//*************************************************
void MainWindow::find_ports() {
QDir fdir("/dev");
PortSelector->clear();
PortSelector->addItems(fdir.entryList((QStringList)"ttyUSB*",QDir::System,QDir::Name));
PortSelector->setCurrentIndex(0);
}
//*****************************************
//* Открытие файла прошивки
//*****************************************
void MainWindow::OpenFwFile(QString filename) {
FILE* in;
int idx;
QSettings rc("forth32","qhuaweiflash",this);
QStringList recent=rc.value("/recent/rfiles").toStringList();
in=fopen(filename.toLocal8Bit(),"r");
if (in == 0) {
QMessageBox::critical(0,"Ошибка","Ошибка открытия файла");
return;
}
// добавляем файл в recent-список
idx=recent.indexOf(filename); // поиск дубликатов
if (idx == -1) {
// дубликаты не найдены
recent.prepend(filename);
if (recent.count()>6) recent.removeLast();
}
else {
// такой файл уже есть - выводим его в начало списка
recent.move(idx,0);
}
rc.setValue("/recent/rfiles",recent);
// Поиск разделов и формирование таблицы разделов
ptable->findparts(in);
regenerate_partlist();
partlist->setCurrentRow(0);
SelectPart();
// поиск цифровой подписи
if (signlen == -1) {
// ищем цифровую подпись
search_sign();
printf("\n signlen = %i",signlen);
if (signlen != -1) dload_id|=8; // вставляем флаг наличия подписи
}
EnableMenu();
if (fwfilename.isEmpty()) {
// имя файла по умолчанию
fwfilename=filename;
// имя файла в заголовке окна
settitle();
QString title=windowTitle();
title.append(" - ");
title.append(filename);
setWindowTitle(title);
}
// устанавливаем правильный тип прошивки в селекторе типов
dload_id_selector->setCurrentIndex(dload_id&7);
// флаг сжатия
if(ptable->zsize(0)) zflag_selector->setChecked(true);
}
//*****************************************
//* Добавление разделов из файла прошивки
//*****************************************
void MainWindow::AppendFwFile() {
QString fwname;
QFileDialog* qf=new QFileDialog(this);
fwname=qf->getOpenFileName(0,"Выбор файла прошивки",".","firmware (*.fw *.exe *.bin *.BIN);;All files (*.*)");
delete qf;
if (fwname.isEmpty()) return;
OpenFwFile(fwname);
}
//********************************************
//* Формирование экранного списка разделов
//********************************************
void MainWindow::regenerate_partlist() {
int i;
QString str;
partlist->blockSignals(true);
partlist->clear();
for (i=0;i<ptable->index();i++) {
str.sprintf("%06x - %s",ptable->code(i),ptable->name(i));
partlist->addItem(str);
}
hrow=-1;
partlist->blockSignals(false);
}
//*****************************************
//* Выбор нового файла прошивки
//*****************************************
void MainWindow::SelectFwFile() {
ask_save();
menu_part->setEnabled(0);
Menu_Oper_flash->setEnabled(0);
fileappend->setEnabled(0);
filesave->setEnabled(0);
ptable->clear();
fwfilename.clear();
AppendFwFile();
EnableMenu();
}
//*****************************************
//* Выбор последнего открытого файла
//*****************************************
void MainWindow::open_recent_file() {
QString fname;
QAction *action = qobject_cast<QAction *>(sender());
if (action == 0) return;
ask_save();
menu_part->setEnabled(0);
Menu_Oper_flash->setEnabled(0);
fileappend->setEnabled(0);
filesave->setEnabled(0);
ptable->clear();
fwfilename.clear();
fname=action->text();
if (fname.isEmpty()) return;
OpenFwFile(fname);
EnableMenu();
}
//*****************************************
//* Разрешение пунктов меню
//*****************************************
void MainWindow::EnableMenu(){
if (ptable->index() != 0) {
menu_part->setEnabled(1);
Menu_Oper_flash->setEnabled(1);
fileappend->setEnabled(1);
filesave->setEnabled(1);
}
if ((dload_id&8) != 0) Menu_Oper_signinfo->setEnabled(1);
}
//******************************************************************
//* Запись на диск полного файла прошивки с указанием имени файла
//******************************************************************
void MainWindow::save_as() {
fw_saver(true,zflag_selector->isChecked());
// новое имя файла в заголовке
settitle();
QString title=windowTitle();
title.append(" - ");
title.append(fwfilename);
setWindowTitle(title);
modified=false;
}
//*****************************************
//* Перезапись файла прошивки
//*****************************************
void MainWindow::SaveFwFile() {
fw_saver(false,zflag_selector->isChecked());
// удаляем звездочку из заголовка
QString str=windowTitle();
int pos=str.indexOf('*');
if (pos != -1) {
str.truncate(pos-1);
setWindowTitle(str);
}
modified=false;
}
//*****************************************
//* Запрос на запись измененного файла
//*****************************************
void MainWindow::ask_save() {
if (modified) {
// создаем панель запроса на сохранение
QMessageBox msgBox;
msgBox.setText("Образ прошивки изменен");
msgBox.setInformativeText("Сохранить изменения?");
msgBox.setStandardButtons(QMessageBox::Save | QMessageBox::Discard);
msgBox.setDefaultButton(QMessageBox::Save);
int reply = msgBox.exec();
if (reply == QMessageBox::Save) fw_saver(false,zflag_selector->isChecked());
}
modified=false;
}
//*****************************************
//* Копирование заголовков
//*****************************************
void MainWindow::HeadCopy() {
head_copy();
SelectPart();
}
//*********************************************
//* Удаляем все элементы просмотра разделов
//*********************************************
void MainWindow::removeEditor() {
if (hexedit != 0) {
EditorLayout->removeWidget(hexedit);
delete hexedit;
hexedit=0;
}
if (kedit != 0) {
EditorLayout->removeWidget(kedit);
delete kedit;
kedit=0;
}
if (nvedit != 0) {
EditorLayout->removeWidget(nvedit);
delete nvedit;
nvedit=0;
}
if (cpio != 0) {
EditorLayout->removeWidget(cpio);
delete cpio;
cpio=0;
}
if (ptedit != 0) {
EditorLayout->removeWidget(ptedit);
delete ptedit;
ptedit=0;
}
if (oemedit != 0) {
EditorLayout->removeWidget(oemedit);
delete oemedit;
oemedit=0;
}
if (label != 0) {
EditorLayout->removeWidget(label);
delete label;
label=0;
}
if (spacer != 0) {
EditorLayout->removeItem(spacer);
delete spacer;
spacer=0;
}
}
//*****************************************
//* Выбор раздела из списка
//*****************************************
void MainWindow::SelectPart() {
QString txt;
QStringList(plst);
int idx=partlist->currentRow();
if (idx == -1) return; // пустой список
// Проверяем и, если надо, сохраняем измененные данные
if ((hrow != -1)&&(hrow != idx)) {
HeaderChanged(); // сохраняем заголовок
DataChanged(); // сохранияем блок данных
}
if ((hrow == idx) && (structure_mode_save == structure_mode->isChecked())) return; // ложный сигнал, выбран все тот же элемент списка
modebuttons->hide();
structure_mode_save=structure_mode->isChecked();
hrow=idx; // сохранияем для будущей записи заголовка
// Вывод значений заголовка
txt.sprintf("%-8.8s",ptable->platform(idx));
Platform_input->setText(txt);
txt.sprintf("%-16.16s",ptable->date(idx));
Date_input->setText(txt);
txt.sprintf("%-16.16s",ptable->time(idx));
Time_input->setText(txt);
txt.sprintf("%-32.32s",ptable->version(idx));
Version_input->setText(txt);
txt.sprintf("%04x",ptable->code(idx)>>16);
pcode->setText(txt);
// удаляем преддущий редактор
removeEditor();
modebuttons->show();
// Режимы структурного просмотра
if (structure_mode->isChecked()) {
// Разделы ptable (таблица разделов флешки)
//###########################################
if ((ptable->ptype(idx) == part_ptable) && (is_ptable(ptable->iptr(idx)))) {
partmode=part_ptable;
// формирование редактора таблицы разделов
ptedit=new QTableWidget(0,9 ,centralwidget);
// ptedit->setGeometry(QRect(230, 100, 600, 470));
plst << "Name" << "start" <<"len" <<"loadsize" <<"loadaddr" << "entry" << "flags" << "type" << "count";
ptedit->setHorizontalHeaderLabels(plst);
parts_fill(ptedit,ptable->iptr(idx));
EditorLayout->addWidget(ptedit);
ptedit->show();
return;
}
// Разделы oeminfo
//###########################################
if (ptable->ptype(idx) == part_oem) {
label=new QLabel("Версия WEBUI или DASHBOARD");
label->setAlignment(Qt::AlignHCenter|Qt::AlignTop);
EditorLayout->addWidget(label);
label->setTextFormat(Qt::RichText);
QFont font;
font.setPointSize(14);
font.setBold(true);
font.setWeight(75);
label->setFont(font);
label->show();
oemedit=new QLineEdit;
oemedit->setAlignment(Qt::AlignLeft|Qt::AlignTop);
EditorLayout->addWidget(oemedit);
oemedit->setText((char*)ptable->iptr(idx));
oemedit->show();
spacer=new QSpacerItem(10,500,QSizePolicy::Minimum,QSizePolicy::Maximum);
EditorLayout->addSpacerItem(spacer);
return;
}
// файловые разделы
//###########################################
if (is_cpio(ptable->iptr(idx))) {
cpio=new cpioedit(idx,menubar,centralwidget);
EditorLayout->addWidget(cpio);
return;
}
// редактор ядра
//###########################################
if (memcmp(ptable->iptr(idx)+128,"ANDROID!",8) == 0) {
kedit=new kerneledit(idx,centralwidget);
EditorLayout->addWidget(kedit);
return;
}
// редактор раздела nvdload
//###########################################
if ((ptable->ptype(idx) == part_nvram) && (*((uint32_t*)(ptable->iptr(idx))) == NV_FILE_MAGIC)) {
nvedit=new nvdedit(idx,centralwidget);
EditorLayout->addWidget(nvedit);
return;
}
}
// неформатный тип
// создание окна hex-редактора
partmode=part_bin;
hexedit=new hexeditor((char*)ptable->iptr(idx),ptable->psize(idx),menubar,statusbar,centralwidget);
hexedit->setObjectName(QStringLiteral("HexEditor"));
// формирование данных окна hex-редактора
EditorLayout->addWidget(hexedit);
// EditorLayout->show();
hexedit->show();
}
//*****************************************
//* Сохранение раздела на диск
//*****************************************
void MainWindow::Menu_Part_Store() {
int np=partlist->currentRow();
QString filename;
QString str;
FILE* out;
uint8_t hdr[92];
// записываем образ раздела
filename.sprintf("%02i-%08x-%s.fw",np,ptable->code(np),ptable->name(np));
filename=QFileDialog::getSaveFileName(this,"Имя файла",filename,"firmware (*.fw);;All files (*.*)");
if (filename.isEmpty()) return;
out=fopen(filename.toLocal8Bit(),"w");
if (out == 0) {
QMessageBox::critical(0,"Ошибка","Ошибка создания файла");
return;
}
// записываем заголовок - upgrade state
bzero(hdr,sizeof(hdr));
hdr[0]=0x0d;
fwrite(hdr,1,sizeof(hdr),out);
ptable->save_part(np,out,0);
fclose(out);
}
//*****************************************
//* Извлечение образа раздела на диск
//*****************************************
void MainWindow::Menu_Part_Extract() {
int np=partlist->currentRow();
QString filename;
QString str;
FILE* out;
filename.sprintf("%02i-%08x-%s.bin",np,ptable->code(np),ptable->name(np));
filename=QFileDialog::getSaveFileName(this,"Имя извлекаемого файла",filename,"image (*.bin);;All files (*.*)");
if (filename.isEmpty()) return;
out=fopen(filename.toLocal8Bit().data(),"w");
if (out == 0) {
QMessageBox::critical(0,"Ошибка","Ошибка открытия файла");
return;
}
fwrite(ptable->iptr(np),1,ptable->psize(np),out);
fclose(out);
}
//*****************************************
//* Замена образа раздела
//*****************************************
void MainWindow::Menu_Part_Replace() {
int np=partlist->currentRow();
QString filename;
QString str;
char fileselector[100];
FILE* in;
// Выбираем подходящие расширения файлов
enum parttypes ptype=ptable->ptype(np);
printf("\n ptype = %i",ptype);
switch (ptype) {
case part_cpio:
strcpy(fileselector,"CPIO archive (*.cpio)");
break;
case part_nvram:
strcpy(fileselector,"NVDLOAD image (*.nvd)");
break;
case part_iso:
strcpy(fileselector,"ISO image (*.iso)");
break;
case part_ptable:
strcpy(fileselector,"Partition table (*.ptable)");
break;
case part_bin:
default:
strcpy(fileselector,"image (*.bin)");
break;
}
strcat(fileselector,";;All files (*.*)");
filename.sprintf("%02i-%08x-%s.bin",np,ptable->code(np),ptable->name(np));
filename=QFileDialog::getOpenFileName(this,"Имя файла с образом раздела",filename,fileselector);
if (filename.isEmpty()) return;
in=fopen(filename.toLocal8Bit(),"r");
if (in == 0) {
QMessageBox::critical(0,"Ошибка","Ошибка открытия файла");
printf("\n file %s",filename.toLocal8Bit().data());
return;
}
ptable->loadimage(np,in);
hrow=-1; // предыдущие данные НЕ СОХРАНЯТЬ !!!!
SelectPart();
}
//*****************************************
//* Удаление раздела
//*****************************************
void MainWindow::Menu_Part_Delete() {
int32_t ci=partlist->currentRow();
if (ptable->index() == 1) return; // последний раздел удалять нельзя
removeEditor(); // удаляем текущий редактор
ptable->delpart(ci);
regenerate_partlist();
if (ci< (ptable->index()-1)) partlist->setCurrentRow(ci);
else partlist->setCurrentRow(ptable->index()-1);
SelectPart();
}
//*****************************************
//* Перемещение раздела вверх
//*****************************************
void MainWindow::Menu_Part_MoveUp() {
int32_t ci=partlist->currentRow();
ptable->moveup(ci);
regenerate_partlist();
if (ci>0) partlist->setCurrentRow(ci-1);
else partlist->setCurrentRow(0);
}
//*****************************************
//* Перемещение раздела вниз
//*****************************************
void MainWindow::Menu_Part_MoveDown() {
int32_t ci=partlist->currentRow();
ptable->movedown(ci);
regenerate_partlist();
if (ci<(ptable->index()-1)) partlist->setCurrentRow(ci+1);
else partlist->setCurrentRow(ptable->index()-1);
}
//********************************************
// Разрешение редактирования полей заголовка
//********************************************
void MainWindow::Menu_Part_EditHeader() {
Platform_input->setReadOnly(0);
Date_input->setReadOnly(0);
Time_input->setReadOnly(0);
Version_input->setReadOnly(0);
}
//********************************************
//* Установка текущей даты изменения раздела
//********************************************
void MainWindow::set_date() {
QString str;
time_t actime=time(0);
struct tm* mtime=localtime(&actime);
str.sprintf("%4i.%02i.%02i",mtime->tm_year+1900,mtime->tm_mon+1,mtime->tm_mday);
Date_input->setText(str);
Date_input->setModified(true);
str.sprintf("%02i:%02i:%02i",mtime->tm_hour,mtime->tm_min,mtime->tm_sec);
Time_input->setText(str);
Time_input->setModified(true);
}
//******************************************************
//* Копирование строки с обрезкой хвостовых пробелов
//******************************************************
void fieldcopy(uint8_t* to,QByteArray from, uint32_t len) {
uint32_t i;
for (i=0;i<len;i++) {
if (from.at(i) != ' ') to[i]=from.at(i);
else break;
}
if (i != len) {
for(;i<len;i++) to[i]=0;
}
}
//********************************************
//* Запись областей редактирования заголовка
//********************************************
void MainWindow::HeaderChanged() {
int32_t ci=hrow; // строка списка разделов, соответствующая заголовку
uint32_t code;
QMessageBox::StandardButton reply;
// проверяем, изменилось ли хоть что-то
if (!(
(Platform_input->isModified()) ||
(Date_input->isModified()) ||
(Time_input->isModified()) ||
(Version_input->isModified()) ||
(pcode -> isModified())
)) return;
reply=QMessageBox::warning(this,"Запись заголовка","Заголовок раздела изменен, сохранить?",QMessageBox::Ok | QMessageBox::Cancel);
if (reply != QMessageBox::Ok) return;
if (Platform_input->isModified()) fieldcopy((uint8_t*)ptable->hptr(ci)->unlock,Platform_input->text().toLocal8Bit(),8);
if (Date_input->isModified()) fieldcopy((uint8_t*)ptable->hptr(ci)->date,Date_input->text().toLocal8Bit(),16);
if (Time_input->isModified()) fieldcopy((uint8_t*)ptable->hptr(ci)->time,Time_input->text().toLocal8Bit(),16);
if (Version_input->isModified()) fieldcopy((uint8_t*)ptable->hptr(ci)->version,Version_input->text().toLocal8Bit(),32);
if (pcode -> isModified()) {
sscanf(pcode->text().toLocal8Bit(),"%x",&code);
ptable->hptr(ci)->code=code<<16;
}
ptable->calc_hd_crc16(ci);
}
//********************************************
//* Запись измененных данных
//********************************************
void MainWindow::DataChanged() {
char* tdata;
QByteArray hexcup;
QMessageBox::StandardButton reply;
// Измененный раздел oeminfo
if (oemedit != 0) {
tdata=new char[ptable->psize(hrow)];
bzero(tdata,ptable->psize(hrow));
fieldcopy((uint8_t*)tdata,oemedit->text().toLocal8Bit(),oemedit->text().size());
if (memcmp(tdata,ptable->iptr(hrow),ptable->psize(hrow)) != 0) {
reply=QMessageBox::warning(this,"Запись раздела","Содержимое раздела изменено, сохранить?",QMessageBox::Ok | QMessageBox::Cancel);
if (reply == QMessageBox::Ok) ptable->replace(hrow,(uint8_t*)tdata,ptable->psize(hrow));
}
delete [] tdata;
return;
}
// Измененный раздел,обрабатываемый hex-редактором
if (hexedit != 0) {
tdata=new char[ptable->psize(hrow)];
hexcup=hexedit->dhex->data();
memcpy(tdata,hexcup.data(),ptable->psize(hrow));
if (memcmp(tdata,ptable->iptr(hrow),ptable->psize(hrow)) != 0) {
reply=QMessageBox::warning(this,"Запись раздела","Содержимое раздела изменено, сохранить?",QMessageBox::Ok | QMessageBox::Cancel);
if (reply == QMessageBox::Ok) ptable->replace(hrow,(uint8_t*)tdata,ptable->psize(hrow));
}
delete [] tdata;
return;
}
}
//********************************************
// Запрещение редактирования полей заголовка
//********************************************
void MainWindow::Disable_EditHeader() {
Platform_input->setReadOnly(0);
Date_input->setReadOnly(0);
Time_input->setReadOnly(0);
Version_input->setReadOnly(0);
}
//********************************************
// Запуск диалога прошивальщика
//********************************************
void MainWindow::Start_Flasher() {
if (PortSelector->count() == 0) {
QMessageBox::critical(0,"Ошибка","Не найдены последовательне порты");
return;
}
flasher();
}
//********************************************
// Перезагрузка модема
//********************************************
void MainWindow::Reboot_modem() {
if (PortSelector->count() == 0) {
QMessageBox::critical(0,"Ошибка","Не найдены последовательне порты");
return;
}
open_port();
modem_reboot();
close_port();
QMessageBox::information(0,"ОK","Команда перезагрузки передана в модем");
}
//********************************************
// Запуск udb-загрузчика
//********************************************
void MainWindow::usbdload() {
if (PortSelector->count() == 0) {
QMessageBox::critical(0,"Ошибка","Не найдены последовательне порты");
return;
}
usbload();
}
//********************************************
//* Установка признака модификации
//********************************************
void MainWindow::setModified() {
if (modified) return;
modified=true;
// добавляем звездочку в заголовок
QString str=windowTitle();
str.append(" *");
setWindowTitle(str);
}
//********************************************************
//* Статическая функция установки признака модификации
//********************************************************
void set_modified() { mw->setModified(); }
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@222
int main(int argc, char* argv[]) {
QApplication app(argc, argv);
QString deffile;
QCoreApplication::setApplicationName("Qt linux huawei flasher");
QCoreApplication::setApplicationVersion("3.0");
app.setOrganizationName("forth32");
MainWindow* mwin;
QCommandLineParser parser;
parser.setApplicationDescription("Программа для прошивки и восстановления устройств на чипсете Hisilicon Balong v7");
parser.addHelpOption();
parser.addPositionalArgument("firmware", "Файл прошивки");
parser.process(app);
QStringList args = parser.positionalArguments();
if(args.size() > 0) deffile=args[0];
mwin = new MainWindow(deffile);
mw=mwin;
mwin->setAttribute(Qt::WA_DeleteOnClose);
mwin->show();
return app.exec();
}