MarginWidget: Moved in mouseMoveEvent
[pulseview.git] / pv / view / ruler.hpp
index e808b3097c665e4c33fbc14758d5ebf620438398..6559f6f09cd770d2c0060a2eb1273ea4112a6d39 100644 (file)
@@ -48,9 +48,6 @@ private:
 public:
        Ruler(View &parent);
 
-public:
-       void clear_selection();
-
 public:
        QSize sizeHint() const;
 
@@ -76,19 +73,23 @@ private:
        std::shared_ptr<pv::view::ViewItem> get_mouse_over_item(
                const QPoint &pt);
 
+       /**
+        * Returns true if the selection of time items allows dragging.
+        * @return Returns true if the drag is acceptable.
+        */
+       bool accept_drag() const;
+
+       /**
+        * Drag the dragging items by the delta offset.
+        * @param delta the drag offset in pixels.
+        */
+       void drag_items(const QPoint &delta);
+
 private:
        void paintEvent(QPaintEvent *event);
 
-       void mouseMoveEvent(QMouseEvent *e);
-       void mousePressEvent(QMouseEvent *e);
-       void mouseReleaseEvent(QMouseEvent *);
-
        void mouseDoubleClickEvent(QMouseEvent *e);
 
-       void contextMenuEvent(QContextMenuEvent *event);
-
-       void keyPressEvent(QKeyEvent *e);
-
 private:
        /**
         * Draw a hover arrow under the cursor position.