]> sigrok.org Git - pulseview.git/blob - pv/view/view.h
db03ce9b43a81b1a7b6a5eda32e0986e15cb1c86
[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 <vector>
27
28 #include <boost/shared_ptr.hpp>
29 #include <boost/weak_ptr.hpp>
30
31 #include <QAbstractScrollArea>
32 #include <QSizeF>
33
34 #include "cursorpair.h"
35
36 namespace pv {
37
38 class SigSession;
39
40 namespace view {
41
42 class Header;
43 class Ruler;
44 class Trace;
45 class Viewport;
46
47 class View : public QAbstractScrollArea {
48         Q_OBJECT
49
50 private:
51         static const double MaxScale;
52         static const double MinScale;
53
54         static const int LabelMarginWidth;
55         static const int RulerHeight;
56
57         static const int MaxScrollValue;
58
59 public:
60         static const int SignalHeight;
61         static const int SignalMargin;
62         static const int SignalSnapGridSize;
63
64         static const QColor CursorAreaColour;
65
66         static const QSizeF LabelPadding;
67
68 public:
69         explicit View(SigSession &session, QWidget *parent = 0);
70
71         SigSession& session();
72         const SigSession& session() const;
73
74         /**
75          * Returns the view time scale in seconds per pixel.
76          */
77         double scale() const;
78
79         /**
80          * Returns the time offset of the left edge of the view in
81          * seconds.
82          */
83         double offset() const;
84         int v_offset() const;
85
86         void zoom(double steps);
87         void zoom(double steps, int offset);
88
89         void zoom_fit();
90
91         void zoom_one_to_one();
92
93         /**
94          * Sets the scale and offset.
95          * @param scale The new view scale in seconds per pixel.
96          * @param offset The view time offset in seconds.
97          */
98         void set_scale_offset(double scale, double offset);
99
100         std::vector< boost::shared_ptr<Trace> > get_traces() const;
101
102         std::list<boost::weak_ptr<SelectableItem> > selected_items() const;
103
104         /**
105          * Returns true if cursors are displayed. false otherwise.
106          */
107         bool cursors_shown() const;
108
109         /**
110          * Shows or hides the cursors.
111          */
112         void show_cursors(bool show = true);
113
114         /**
115          * Moves the cursors to a convenient position in the view.
116          */
117         void centre_cursors();
118
119         /**
120          * Returns a reference to the pair of cursors.
121          */
122         CursorPair& cursors();
123
124         /**
125          * Returns a reference to the pair of cursors.
126          */
127         const CursorPair& cursors() const;
128
129         const QPoint& hover_point() const;
130
131         void normalize_layout();
132
133         void update_viewport();
134
135 signals:
136         void hover_point_changed();
137
138         void signals_moved();
139
140         void selection_changed();
141
142         void scale_offset_changed();
143
144 private:
145         void get_scroll_layout(double &length, double &offset) const;
146         
147         void set_zoom(double scale, int offset);
148
149         void update_scroll();
150
151         static bool compare_trace_v_offsets(
152                 const boost::shared_ptr<pv::view::Trace> &a,
153                 const boost::shared_ptr<pv::view::Trace> &b);
154
155 private:
156         bool eventFilter(QObject *object, QEvent *event);
157
158         bool viewportEvent(QEvent *e);
159
160         void resizeEvent(QResizeEvent *e);
161
162 private slots:
163
164         void h_scroll_value_changed(int value);
165         void v_scroll_value_changed(int value);
166
167         void signals_changed();
168         void data_updated();
169
170         void marker_time_changed();
171
172         void on_signals_moved();
173
174 private:
175         SigSession &_session;
176
177         Viewport *_viewport;
178         Ruler *_ruler;
179         Header *_header;
180
181         uint64_t _data_length;
182
183         /// The view time scale in seconds per pixel.
184         double _scale;
185
186         /// The view time offset in seconds.
187         double _offset;
188
189         int _v_offset;
190         bool _updating_scroll;
191
192         bool _show_cursors;
193         CursorPair _cursors;
194
195         QPoint _hover_point;
196 };
197
198 } // namespace view
199 } // namespace pv
200
201 #endif // PULSEVIEW_PV_VIEW_VIEW_H