-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnsrtextedit.h
89 lines (77 loc) · 2.38 KB
/
nsrtextedit.h
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* Copyright (C) 2011-2015 Alexander Saprykin <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef NSRTEXTEDIT_H
#define NSRTEXTEDIT_H
#include <QTextEdit>
#include <QScrollBar>
#include <QMouseEvent>
#include <QDateTime>
#include <QGesture>
#include "iscrollable.h"
#include "nsrkineticscroller.h"
class NSRTextEdit : public QTextEdit, IScrollable
{
Q_OBJECT
public:
explicit NSRTextEdit (QWidget *parent = 0);
virtual ~NSRTextEdit ();
void scrollTo (const QPoint& pos);
void resetZoom ();
int getZoom ();
void setZoom (int zoom);
void zoomOut (int range = 1);
void zoomIn (int range = 1);
int getMinZoom () {return 25;}
int getMaxZoom () {return 400;}
void stopKineticScroll() {_scroller->stopMoving();}
/* IScrollable interface */
QPoint getCurrentPosition ();
QPoint getMaximumPosition ();
void setPosition (const QPoint& pos);
void subscribeForEvents (QObject *obj);
void unsubscribeOfEvents (QObject *obj);
QPoint mapFromGlobalCursor (const QPoint& pos);
protected:
void resizeEvent(QResizeEvent *ev);
bool event (QEvent *ev);
bool gestureEvent (QGestureEvent *ev);
void pinchTriggered (QPinchGesture *gesture);
void swipeTriggered (QSwipeGesture *gesture);
signals:
void nextPageRequest();
void prevPageRequest();
void doubleClicked(QPoint pos);
void zoomUpdated();
private slots:
void onTextChanged();
void onScrollStarted();
void onScrollStopped();
void onScrollChanged();
private:
void updateScrollBars();
void pinchStarted ();
void pinchFinished ();
void pinchCanceled ();
void pinchUpdated (double zoomFactor);
QScrollBar *_verticalBar;
QScrollBar *_horizontalBar;
int _defaultFontSize;
int _startPinchZoom;
NSRKineticScroller *_scroller;
};
#endif // NSRTEXTEDIT_H