-
Notifications
You must be signed in to change notification settings - Fork 44
/
viewer.h
59 lines (43 loc) · 1.05 KB
/
viewer.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
// просмотр и редактирование произвольных файлов
#ifndef __VIEWER_H
#define __VIEWER_H
#include <stdint.h>
#include <QtWidgets>
#include "cpfiledir.h"
//***********************************************************
//* Класс главного окна
//***********************************************************
class viewer : public QMainWindow {
Q_OBJECT
cpfiledir* fileptr;
uint8_t* sdata;
uint32_t* slen;
bool readonly;
uint8_t* pdata;
QString findtext=""; // текст для поискового запроса
QWidget* central;
QSettings* config;
QVBoxLayout* vlm;
QTextEdit* ted;
QString textdata;
// Главное меню
QMenuBar* menubar;
QMenu* menu_file;
QMenu* menu_edit;
QMenu* menu_view;
// тулбар
QToolBar* toolbar;
bool datachanged=false;
public:
viewer(uint8_t* data, uint32_t* len, uint8_t rmode, char* name, cpfiledir* dfile=0);
~viewer();
public slots:
void setChanged();
void save_all();
void find();
void findnext();
void fontselector();
signals:
void changed();
};
#endif