]> sigrok.org Git - pulseview.git/blobdiff - pv/view/signal.hpp
Minor whitespace cosmetics.
[pulseview.git] / pv / view / signal.hpp
index d96a85cf3b82ca3854efcc1c99ff5bdf8759c9e4..db3286528a699964920cd47b3048d5daa7255428 100644 (file)
@@ -28,6 +28,7 @@
 
 #include <stdint.h>
 
+#include "signalscalehandle.hpp"
 #include "trace.hpp"
 #include "viewitemowner.hpp"
 
@@ -81,6 +82,22 @@ public:
 
        void delete_pressed();
 
+       /**
+        * Returns the offset to show the drag handle.
+        */
+       virtual int scale_handle_offset() const = 0;
+
+       /**
+        * Handles the scale handle being dragged to an offset.
+        * @param offset the offset the scale handle was dragged to.
+        */
+       virtual void scale_handle_dragged(int offset) = 0;
+
+       /**
+        * Handles the scale handle being being released.
+        */
+       virtual void scale_handle_released() {};
+
 private Q_SLOTS:
        void on_disable();
 
@@ -88,6 +105,7 @@ protected:
        pv::Session &session_;
        std::shared_ptr<sigrok::Channel> channel_;
 
+       const std::shared_ptr<SignalScaleHandle> scale_handle_;
        const item_list items_;
 
        QComboBox *name_widget_;