-
Notifications
You must be signed in to change notification settings - Fork 3
/
qcpl_cursor_panel.h
70 lines (52 loc) · 1.61 KB
/
qcpl_cursor_panel.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
#ifndef QCPL_CURSOR_PANEL_H
#define QCPL_CURSOR_PANEL_H
#include <QTextBrowser>
QT_BEGIN_NAMESPACE
class QToolBar;
QT_END_NAMESPACE
namespace QCPL {
class Cursor;
class CursorPanel : public QTextBrowser
{
Q_OBJECT
public:
enum Mode { Both, Vertical, Horizontal };
Q_ENUM(Mode)
public:
explicit CursorPanel(Cursor *cursor);
void update();
void update(const QString& info);
void placeIn(QToolBar* toolbar);
void fillMenu(QMenu *menu);
void setNumberPrecision(int value, bool update);
static QString formatLink(const QString& cmd, const QString& val);
static QString formatLinkX(const QString& x);
static QString formatLinkY(const QString& y);
bool autoUpdateInfo() const { return _autoUpdateInfo; }
void setAutoUpdateInfo(bool v) { _autoUpdateInfo = v; }
Mode mode() const;
void setMode(Mode mode);
bool enabled() const;
void setEnabled(bool on);
signals:
void customCommandInvoked(const QString& cmd);
protected:
QSize sizeHint() const;
QSize minimumSizeHint() const;
private:
Cursor *_cursor;
QAction *actnCursorFollow, *actnCursorSetX, *actnCursorSetY,
*actnShowCursor, *actnCursorVert, *actnCursorHorz, *actnCursorBoth;
bool _autoUpdateInfo = true;
int _numberPrecision = 6;
void createActions();
QString formatCursorInfo() const;
private slots:
void linkClicked(const class QUrl&);
void cursorPositionCanged();
void setCursorX();
void setCursorY();
void setCursorShape();
};
} // namespace QCPL
#endif // QCPL_CURSOR_PANEL_H