X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fviewport.hpp;h=cde9f3f57673dc9df71aded63ccfe8617c98245e;hp=94ebe8ee4f0a4655ad3af4084bb5b2211854e0e8;hb=520362f8c4082820193f09e43b27a8c7df2ef011;hpb=40aca27ed83559f7f79873e353f64d2c36a18fce diff --git a/pv/view/viewport.hpp b/pv/view/viewport.hpp index 94ebe8ee..cde9f3f5 100644 --- a/pv/view/viewport.hpp +++ b/pv/view/viewport.hpp @@ -18,12 +18,15 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_VIEW_VIEWPORT_H -#define PULSEVIEW_PV_VIEW_VIEWPORT_H +#ifndef PULSEVIEW_PV_VIEW_VIEWPORT_HPP +#define PULSEVIEW_PV_VIEW_VIEWPORT_HPP + +#include #include #include +#include "pv/util.hpp" #include "viewwidget.hpp" class QPainter; @@ -42,25 +45,59 @@ class Viewport : public ViewWidget public: explicit Viewport(View &parent); -protected: - void paintEvent(QPaintEvent *event); +private: + /** + * Indicates when a view item is being hovered over. + * @param item The item that is being hovered over, or @c nullptr + * if no view item is being hovered over. + */ + void item_hover(const std::shared_ptr &item); + + /** + * Gets the first view item which has a hit-box that contains @c pt . + * @param pt the point to search with. + * @return the view item that has been found, or and empty + * @c shared_ptr if no item was found. + */ + std::shared_ptr get_mouse_over_item( + const QPoint &pt); + + /** + * Sets this item into the dragged state. + */ + void drag(); + + /** + * Drag the background by the delta offset. + * @param delta the drag offset in pixels. + */ + void drag_by(const QPoint &delta); + + /** + * Sets this item into the un-dragged state. + */ + void drag_release(); + + /** + * Gets the items in the view widget. + */ + std::vector< std::shared_ptr > items(); + + /** + * Handles touch begin update and end events. + * @param e the event that triggered this handler. + */ + bool touch_event(QTouchEvent *event); private: - bool event(QEvent *event); - void mousePressEvent(QMouseEvent *event); - void mouseReleaseEvent(QMouseEvent *event); - void mouseMoveEvent(QMouseEvent *event); - void mouseDoubleClickEvent(QMouseEvent * event); - void wheelEvent(QWheelEvent *event); - bool touchEvent(QTouchEvent *e); + void paintEvent(QPaintEvent *event); -private Q_SLOTS: - void on_signals_moved(); + void mouseDoubleClickEvent(QMouseEvent * event); + void wheelEvent(QWheelEvent *e); private: - QPoint mouse_down_point_; - double mouse_down_offset_; - bool mouse_down_valid_; + boost::optional drag_offset_; + int drag_v_offset_; double pinch_offset0_; double pinch_offset1_; @@ -70,4 +107,4 @@ private: } // namespace view } // namespace pv -#endif // PULSEVIEW_PV_VIEW_VIEWPORT_H +#endif // PULSEVIEW_PV_VIEW_VIEWPORT_HPP