2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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
21 #ifndef PULSEVIEW_PV_VIEW_VIEW_H
22 #define PULSEVIEW_PV_VIEW_VIEW_H
29 #include <unordered_map>
32 #include <QAbstractScrollArea>
36 #include <pv/data/signaldata.hpp>
38 #include "cursorpair.hpp"
40 #include "rowitemowner.hpp"
53 class View : public QAbstractScrollArea, public RowItemOwner {
58 RowItemHExtentsChanged = 1,
59 RowItemVExtentsChanged = 2
63 static const double MaxScale;
64 static const double MinScale;
66 static const int MaxScrollValue;
68 static const int ScaleUnits[3];
71 explicit View(Session &session, QWidget *parent = 0);
74 const Session& session() const;
77 * Returns the view of the owner.
79 virtual pv::view::View* view();
82 * Returns the view of the owner.
84 virtual const pv::view::View* view() const;
88 const Viewport* viewport() const;
91 * Gets a list of time markers.
93 std::vector< std::shared_ptr<TimeItem> > time_items() const;
96 * Returns the view time scale in seconds per pixel.
101 * Returns the time offset of the left edge of the view in
104 double offset() const;
107 * Returns the vertical scroll offset.
109 int owner_visual_v_offset() const;
112 * Sets the visual v-offset.
114 void set_v_offset(int offset);
117 * Returns the SI prefix to apply to the graticule time markings.
119 unsigned int tick_prefix() const;
122 * Returns period of the graticule time markings.
124 double tick_period() const;
127 * Returns the number of nested parents that this row item owner has.
129 unsigned int depth() const;
131 void zoom(double steps);
132 void zoom(double steps, int offset);
136 void zoom_one_to_one();
139 * Sets the scale and offset.
140 * @param scale The new view scale in seconds per pixel.
141 * @param offset The view time offset in seconds.
143 void set_scale_offset(double scale, double offset);
145 std::set< std::shared_ptr<pv::data::SignalData> >
146 get_visible_data() const;
148 std::pair<double, double> get_time_extents() const;
151 * Returns true if cursors are displayed. false otherwise.
153 bool cursors_shown() const;
156 * Shows or hides the cursors.
158 void show_cursors(bool show = true);
161 * Moves the cursors to a convenient position in the view.
163 void centre_cursors();
166 * Returns a reference to the pair of cursors.
168 std::shared_ptr<CursorPair> cursors() const;
171 * Adds a new flag at a specified time.
173 void add_flag(double time);
176 * Removes a flag from the list.
178 void remove_flag(std::shared_ptr<Flag> flag);
181 * Gets the list of flags.
183 std::vector< std::shared_ptr<Flag> > flags() const;
185 const QPoint& hover_point() const;
187 void update_viewport();
189 void restack_all_row_items();
192 void hover_point_changed();
194 void selection_changed();
196 void scale_offset_changed();
199 void get_scroll_layout(double &length, double &offset) const;
202 * Simultaneously sets the zoom and offset.
203 * @param scale The scale to set the view to in seconds per pixel. This
204 * value is clamped between MinScale and MaxScale.
205 * @param offset The offset of the left edge of the view in seconds.
207 void set_zoom(double scale, int offset);
210 * Find a tick spacing and number formatting that does not cause
211 * the values to collide.
213 void calculate_tick_spacing();
215 void update_scroll();
217 void update_layout();
220 * Satisifies RowItem functionality.
221 * @param p the QPainter to paint into.
222 * @param rect the rectangle of the header area.
223 * @param hover true if the label is being hovered over by the mouse.
225 void paint_label(QPainter &p, const QRect &rect, bool hover);
228 * Computes the outline rectangle of a label.
229 * @param rect the rectangle of the header area.
230 * @return Returns the rectangle of the signal label.
232 QRectF label_rect(const QRectF &rect);
234 static bool add_channels_to_owner(
235 const std::vector< std::shared_ptr<sigrok::Channel> > &channels,
236 RowItemOwner *owner, int &offset,
237 std::unordered_map<std::shared_ptr<sigrok::Channel>,
238 std::shared_ptr<Signal> > &signal_map,
239 std::function<bool (std::shared_ptr<RowItem>)> filter_func =
240 std::function<bool (std::shared_ptr<RowItem>)>());
242 static void apply_offset(
243 std::shared_ptr<RowItem> row_item, int &offset);
246 bool eventFilter(QObject *object, QEvent *event);
248 bool viewportEvent(QEvent *e);
250 void resizeEvent(QResizeEvent *e);
253 void row_item_appearance_changed(bool label, bool content);
254 void time_item_appearance_changed(bool label, bool content);
256 void extents_changed(bool horz, bool vert);
260 void h_scroll_value_changed(int value);
261 void v_scroll_value_changed();
263 void signals_changed();
266 void process_sticky_events();
268 void on_hover_point_changed();
277 /// The view time scale in seconds per pixel.
280 /// The view time offset in seconds.
283 bool updating_scroll_;
286 unsigned int tick_prefix_;
289 std::shared_ptr<CursorPair> cursors_;
291 std::list< std::shared_ptr<Flag> > flags_;
292 char next_flag_text_;
296 unsigned int sticky_events_;
297 QTimer lazy_event_handler_;
303 #endif // PULSEVIEW_PV_VIEW_VIEW_H