diff options
author | Javier <dev.git@javispedro.com> | 2021-09-12 19:41:12 +0200 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2021-09-12 19:41:12 +0200 |
commit | ac7b085449fb49f54225d22c7c229da6ad120e2b (patch) | |
tree | 7910cc8c9a3268dbacbbe434c7f3cea4eedafd3d /notebookview.h | |
parent | 66dd35254724ec5d4471a8be71f92e06cf0fa8e8 (diff) | |
download | scribiu-ac7b085449fb49f54225d22c7c229da6ad120e2b.tar.gz scribiu-ac7b085449fb49f54225d22c7c229da6ad120e2b.zip |
remove PEN_EPOCH mistake and get usertime from the pen
Diffstat (limited to 'notebookview.h')
-rw-r--r-- | notebookview.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/notebookview.h b/notebookview.h index 4e557d1..c1e425d 100644 --- a/notebookview.h +++ b/notebookview.h @@ -43,6 +43,9 @@ public: void setPaperReplay(const QString &path); QString paperReplay() const; + void setPenUserTime(quint64 userTime); + quint64 penUserTime() const; + QList<int> pageNumbers() const; int curPage() const; @@ -88,6 +91,7 @@ private: PaperReplay *_replay; QString _nbPath; QString _replayPath; + quint64 _penUserTime; QMap<int, PageItem*> _pages; QSizeF _maxPageSize; int _numColumns; |