]> sigrok.org Git - pulseview.git/blame - pv/view/viewwidget.hpp
MainWindow: Use regular pointer for QDockWidgets
[pulseview.git] / pv / view / viewwidget.hpp
CommitLineData
40aca27e
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2013 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
7a01bd36
JH
21#ifndef PULSEVIEW_PV_VIEWWIDGET_HPP
22#define PULSEVIEW_PV_VIEWWIDGET_HPP
40aca27e 23
e9e4e5e7
JH
24#include <memory>
25
40aca27e
JH
26#include <QWidget>
27
c9743553
JH
28class QTouchEvent;
29
40aca27e 30namespace pv {
f4e57597
SA
31namespace views {
32namespace TraceView {
219b3ab9 33
40aca27e 34class View;
e9e4e5e7 35class ViewItem;
40aca27e
JH
36
37class ViewWidget : public QWidget
38{
39 Q_OBJECT
40
41protected:
42 ViewWidget(View &parent);
43
e8b969a9
JH
44 /**
45 * Indicates when a view item is being hovered over.
46 * @param item The item that is being hovered over, or @c nullptr
47 * if no view item is being hovered over.
48 * @remarks the default implementation does nothing.
49 */
50 virtual void item_hover(
f4e57597 51 const std::shared_ptr<ViewItem> &item);
e8b969a9 52
e9e4e5e7
JH
53 /**
54 * Indicates the event an a view item has been clicked.
55 * @param item the view item that has been clicked.
56 * @remarks the default implementation does nothing.
57 */
58 virtual void item_clicked(
f4e57597 59 const std::shared_ptr<ViewItem> &item);
e9e4e5e7 60
b434cbaf
JH
61 /**
62 * Returns true if the selection of row items allows dragging.
63 * @return Returns true if the drag is acceptable.
64 */
65 bool accept_drag() const;
66
1f1edc09
JH
67 /**
68 * Returns true if the mouse button is down.
69 */
70 bool mouse_down() const;
71
1dffa582
JH
72 /**
73 * Drag the dragging items by the delta offset.
74 * @param delta the drag offset in pixels.
75 */
76 void drag_items(const QPoint &delta);
77
28290534
JH
78 /**
79 * Sets this item into the dragged state.
80 */
81 virtual void drag();
82
83 /**
84 * Drag the background by the delta offset.
85 * @param delta the drag offset in pixels.
86 * @remarks The default implementation does nothing.
87 */
88 virtual void drag_by(const QPoint &delta);
89
90 /**
91 * Sets this item into the un-dragged state.
92 */
93 virtual void drag_release();
94
e9e4e5e7
JH
95 /**
96 * Gets the items in the view widget.
97 */
f4e57597 98 virtual std::vector< std::shared_ptr<ViewItem> > items() = 0;
e9e4e5e7
JH
99
100 /**
101 * Gets the first view item which has a hit-box that contains @c pt .
102 * @param pt the point to search with.
103 * @return the view item that has been found, or and empty
104 * @c shared_ptr if no item was found.
105 */
f4e57597 106 virtual std::shared_ptr<ViewItem> get_mouse_over_item(
e9e4e5e7
JH
107 const QPoint &pt) = 0;
108
109 /**
110 * Handles left mouse button press events.
111 * @param event the mouse event that triggered this handler.
112 */
113 void mouse_left_press_event(QMouseEvent *event);
114
115 /**
116 * Handles left mouse button release events.
117 * @param event the mouse event that triggered this handler.
118 */
119 void mouse_left_release_event(QMouseEvent *event);
120
c9743553
JH
121 /**
122 * Handles touch begin update and end events.
123 * @param e the event that triggered this handler.
124 */
d9ea9628 125 virtual bool touch_event(QTouchEvent *event);
c9743553 126
e9e4e5e7 127protected:
c9743553
JH
128 bool event(QEvent *event);
129
d9ea9628 130 void mousePressEvent(QMouseEvent *event);
e9e4e5e7 131 void mouseReleaseEvent(QMouseEvent *event);
d9ea9628 132 void mouseMoveEvent(QMouseEvent *event);
e9e4e5e7
JH
133
134 void leaveEvent(QEvent *event);
135
136public Q_SLOTS:
137 void clear_selection();
138
139Q_SIGNALS:
140 void selection_changed();
141
40aca27e 142protected:
f4e57597 143 pv::views::TraceView::View &view_;
e9e4e5e7
JH
144 QPoint mouse_point_;
145 QPoint mouse_down_point_;
146 std::shared_ptr<ViewItem> mouse_down_item_;
803cdac4 147 bool item_dragging_;
40aca27e
JH
148};
149
f4e57597
SA
150} // namespace TraceView
151} // namespace views
40aca27e
JH
152} // namespace pv
153
7a01bd36 154#endif // PULSEVIEW_PV_VIEWWIDGET_HPP