forked from forth32/qhuaweiflash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpio.h
74 lines (59 loc) · 1.99 KB
/
cpio.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
//
// Редактор cpio-файлов
//
#ifndef _CPIO_H
#define _CPIO_H
#include <QtWidgets>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include "ptable.h"
#include "viewer.h"
#include "hexfileviewer.h"
#include "cpfiledir.h"
//*****************************************************
//* Класс редактора cpio-разделов
//*****************************************************
class cpioedit: public QWidget {
Q_OBJECT
int pnum;
// указатели на образ раздела
uint8_t* pdata;
uint32_t plen;
QToolBar* toolbar;
QTableWidget* cpiotable=0;
QVBoxLayout* vlm;
viewer* view; // окно просмотра файлов
hexfileviewer* hview; // окно hex-редактора
QList<cpfiledir*>* rootdir=0; // указатель на вектор корневого раздела
QList<cpfiledir*>* currentdir; // вектор текущего каталога
void cpio_hide_dir();
int current_file_index();
cpfiledir* selected_file();
void cpio_show_dir(QList<cpfiledir*>* dir, int focusmode);
void fileeditor(bool readonly);
void repack_cpio();
// флаг изменения раздела
bool is_modified=false;
QMenuBar* menubar;
QMenu* menu_edit;
public:
cpioedit(int xpnum,QMenuBar* mbar, QWidget* parent);
~cpioedit();
public slots:
void cpio_process_file(int, int); // обработка выбора файла
void extract_file(); // извлекалка файлов
void replace_file(); // замена файлов
void delete_file(); // удаление файлов
void view_file(); // просмотр
void edit_file(); // просмотр
void add_file(); // добавить новый файл
void add_dir(); // создать каталог
void hexedit_file(); // hex-просмотр/редактор
void setModified() {is_modified=true;} // установка признака модификации содержимого архива
void saveall();
void menuenabler();
void go_up();
};
#endif