blob: 9bf7e5bb18fb27cfa3255a5d8d8fd4f38a90b84e (
plain)
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
|
#ifndef textData_H
#define textData_H
#include <QRect>
class TextData {
private:
QRectF p_loc;
bool p_highlighted=false;
int p_page=0;
QString p_text="";
//int p_degrees=0;
public:
TextData(QRectF _loc, int _page, QString _text) :
p_loc(_loc),
p_page(_page),
p_text(_text)
//p_degrees(_degrees)
{ }
QRectF loc() { return p_loc; }
bool highlighted() { return p_highlighted; }
int page() { return p_page; }
QString text() { return p_text; }
//int degrees() { return p_degrees; }
void loc(QRect loc) { p_loc = loc; }
void highlighted(bool highlighted) { p_highlighted = highlighted; }
void page(int page) { p_page = page; }
void text(QString text) { p_text = text; }
//void degrees(int degrees) { p_degrees = degrees; }
};
#endif
|