diff options
Diffstat (limited to 'src-qt5/desktop-utils/lumina-pdf/TextData.h')
-rw-r--r-- | src-qt5/desktop-utils/lumina-pdf/TextData.h | 46 |
1 files changed, 22 insertions, 24 deletions
diff --git a/src-qt5/desktop-utils/lumina-pdf/TextData.h b/src-qt5/desktop-utils/lumina-pdf/TextData.h index 9bf7e5bb..c878a860 100644 --- a/src-qt5/desktop-utils/lumina-pdf/TextData.h +++ b/src-qt5/desktop-utils/lumina-pdf/TextData.h @@ -4,32 +4,30 @@ #include <QRect> class TextData { - private: - QRectF p_loc; - bool p_highlighted=false; - int p_page=0; - QString p_text=""; - //int p_degrees=0; +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) - { } +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; } + 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 |