]> sigrok.org Git - pulseview.git/blob - pv/view/view.h
Wrapped Cursors in a shared_ptr
[pulseview.git] / pv / view / view.h
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #ifndef PULSEVIEW_PV_VIEW_VIEW_H
22 #define PULSEVIEW_PV_VIEW_VIEW_H
23
24 #include <stdint.h>
25
26 #include <QAbstractScrollArea>
27 #include <QSizeF>
28
29 #include "cursorpair.h"
30
31 namespace pv {
32
33 class SigSession;
34
35 namespace view {
36
37 class Header;
38 class Ruler;
39 class Viewport;
40
41 class View : public QAbstractScrollArea {
42         Q_OBJECT
43
44 private:
45         static const double MaxScale;
46         static const double MinScale;
47
48         static const int LabelMarginWidth;
49         static const int RulerHeight;
50
51         static const int MaxScrollValue;
52
53 public:
54         static const int SignalHeight;
55         static const int SignalMargin;
56         static const int SignalSnapGridSize;
57
58         static const QColor CursorAreaColour;
59
60         static const QSizeF LabelPadding;
61
62 public:
63         explicit View(SigSession &session, QWidget *parent = 0);
64
65         SigSession& session();
66
67         /**
68          * Returns the view time scale in seconds per pixel.
69          */
70         double scale() const;
71
72         /**
73          * Returns the time offset of the left edge of the view in
74          * seconds.
75          */
76         double offset() const;
77         int v_offset() const;
78
79         void zoom(double steps);
80         void zoom(double steps, int offset);
81
82         /**
83          * Sets the scale and offset.
84          * @param scale The new view scale in seconds per pixel.
85          * @param offset The view time offset in seconds.
86          */
87         void set_scale_offset(double scale, double offset);
88
89         /**
90          * Returns true if cursors are displayed. false otherwise.
91          */
92         bool cursors_shown() const;
93
94         /**
95          * Shows or hides the cursors.
96          */
97         void show_cursors(bool show = true);
98
99         /**
100          * Moves the cursors to a convenient position in the view.
101          */
102         void centre_cursors();
103
104         /**
105          * Returns a reference to the pair of cursors.
106          */
107         CursorPair& cursors();
108
109         /**
110          * Returns a reference to the pair of cursors.
111          */
112         const CursorPair& cursors() const;
113
114         const QPoint& hover_point() const;
115
116         void normalize_layout();
117
118 signals:
119         void hover_point_changed();
120
121         void signals_moved();
122
123         void selection_changed();
124
125 private:
126         void get_scroll_layout(double &length, double &offset) const;
127         
128         void update_scroll();
129
130         void reset_signal_layout();
131
132 private:
133         bool eventFilter(QObject *object, QEvent *event);
134
135         bool viewportEvent(QEvent *e);
136
137         void resizeEvent(QResizeEvent *e);
138
139 private slots:
140
141         void h_scroll_value_changed(int value);
142         void v_scroll_value_changed(int value);
143
144         void signals_changed();
145         void data_updated();
146
147         void marker_time_changed();
148
149         void on_signals_moved();
150
151 private:
152         SigSession &_session;
153
154         Viewport *_viewport;
155         Ruler *_ruler;
156         Header *_header;
157
158         uint64_t _data_length;
159
160         /// The view time scale in seconds per pixel.
161         double _scale;
162
163         /// The view time offset in seconds.
164         double _offset;
165
166         int _v_offset;
167         bool _updating_scroll;
168
169         bool _show_cursors;
170         CursorPair _cursors;
171
172         QPoint _hover_point;
173 };
174
175 } // namespace view
176 } // namespace pv
177
178 #endif // PULSEVIEW_PV_VIEW_VIEW_H