]> sigrok.org Git - pulseview.git/blobdiff - pv/view/viewport.hpp
ViewWidget: Moved in mouse handlers
[pulseview.git] / pv / view / viewport.hpp
index 3cc59c9479d5e5a87abb48f078bfbface8d35aa4..be3e7d32b719a7d80ca87df69216fbde735b963f 100644 (file)
@@ -42,10 +42,23 @@ class Viewport : public ViewWidget
 public:
        explicit Viewport(View &parent);
 
-protected:
+private:
+       /**
+        * 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<pv::view::ViewItem> get_mouse_over_item(
+               const QPoint &pt);
+
+       /**
+        * Gets the items in the view widget.
+        */
+       std::vector< std::shared_ptr<pv::view::ViewItem> > items();
+
        void paintEvent(QPaintEvent *event);
 
-private:
        bool event(QEvent *event);
        void mousePressEvent(QMouseEvent *event);
        void mouseReleaseEvent(QMouseEvent *event);