diff options
author | Saturneric <[email protected]> | 2021-07-06 03:01:22 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-07-06 03:01:22 +0000 |
commit | ad507f2373e6fada6b92e4f4a6d1374bca011c3d (patch) | |
tree | a58a794b410fb4ccdd52908ed0f62a5253ad9ba1 /include/ui/widgets/TextEdit.h | |
parent | Merge branch 'main' of https://github.com/saturneric/GpgFrontend (diff) | |
parent | Fix issues. (diff) | |
download | GpgFrontend-ad507f2373e6fada6b92e4f4a6d1374bca011c3d.tar.gz GpgFrontend-ad507f2373e6fada6b92e4f4a6d1374bca011c3d.zip |
Merge branch 'develop' into main
Diffstat (limited to 'include/ui/widgets/TextEdit.h')
-rw-r--r-- | include/ui/widgets/TextEdit.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/ui/widgets/TextEdit.h b/include/ui/widgets/TextEdit.h index b807d6c6..92bf4dfa 100644 --- a/include/ui/widgets/TextEdit.h +++ b/include/ui/widgets/TextEdit.h @@ -176,6 +176,23 @@ public slots: */ void slotSwitchTabDown() const; + /** + * @details Insert text in target Text Edit + */ + void slotInsertTargetTextPage(const QString &pagePtr, const QString &text); + + void slotReadTargetTextPageStart(const QString &pageStr); + + void slotReadTargetTextPageDone(const QString &pagePtr); + +signals: + + void readTargetTextPageStart(const QString &pagePtr); + + void insertTargetTextPage(const QString &pagePtr, const QString &text); + + void readTargetTextPageDone(const QString &pagePtr); + private: /** * @details return just a filename stripped of a whole path @@ -198,6 +215,8 @@ private: */ int countPage; /* TODO */ + QHash<const QString, QWidget *> pagesHashMap; + private slots: void slotFilePagePathChanged(const QString& path); |