[go: up one dir, main page]

Menu

[r703]: / mdjvureader2.h  Maximize  Restore  History

Download this file

50 lines (38 with data), 1.0 kB

 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
#ifndef MDJVUREADER2_H
#define MDJVUREADER2_H
#include <QMainWindow>
#include <QLayout>
#include <QFileInfo>
#include "djvuwidget.h"
#include "lsj.h"
#include "wordpreview.h"
#include "mwindowswidget.h"
#include "mcopticnumerals.h"
namespace Ui {
class MDjvuReader2;
}
class MDjvuReader2 : public QMainWindow
{
Q_OBJECT
public:
explicit MDjvuReader2(QString const & filename);
~MDjvuReader2();
CDjVuWidget & view(){return djView;}
void fillContent(QList<QPair<QString,QVariant> > const &);
void showPanel();
private:
Ui::MDjvuReader2 *ui;
QDjVuContext context;
CDjVuWidget djView;
CLSJ * _gk;
CWordPreview * _cop;
MCopticNumerals * _num;
void init_reader(QString const &);
private slots:
void on_cmbContent_activated(int index);
void on_actionClose_triggered();
void on_actionGk_Lat_dictionary_triggered();
void on_actionCoptic_dictionary_triggered();
void on_actionNumeric_converter_triggered();
};
#endif // MDJVUREADER2_H