]> sigrok.org Git - pulseview.git/blobdiff - pv/view/signal.hpp
ViewItem: Make hit_box_rect take ViewItemPaintParams
[pulseview.git] / pv / view / signal.hpp
index 910b2e699e055582466d2b59d0de8c6589a7495d..714b44f6d9d27fcfc4881dc9e4850138f575b0a4 100644 (file)
@@ -18,8 +18,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#ifndef PULSEVIEW_PV_VIEW_SIGNAL_H
-#define PULSEVIEW_PV_VIEW_SIGNAL_H
+#ifndef PULSEVIEW_PV_VIEW_SIGNAL_HPP
+#define PULSEVIEW_PV_VIEW_SIGNAL_HPP
 
 #include <memory>
 
@@ -29,6 +29,7 @@
 #include <stdint.h>
 
 #include "trace.hpp"
+#include "viewitemowner.hpp"
 
 namespace sigrok {
        class Channel;
@@ -44,7 +45,7 @@ class SignalData;
 
 namespace view {
 
-class Signal : public Trace
+class Signal : public Trace, public ViewItemOwner
 {
        Q_OBJECT
 
@@ -69,12 +70,33 @@ public:
 
        std::shared_ptr<sigrok::Channel> channel() const;
 
+       /**
+        * Returns a list of row items owned by this object.
+        */
+       const item_list& child_items() const;
+
        virtual void populate_popup_form(QWidget *parent, QFormLayout *form);
 
        QMenu* create_context_menu(QWidget *parent);
 
        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();
 
@@ -82,6 +104,8 @@ protected:
        pv::Session &session_;
        std::shared_ptr<sigrok::Channel> channel_;
 
+       const item_list items_;
+
        QComboBox *name_widget_;
        bool updating_name_widget_;
 };
@@ -89,4 +113,4 @@ protected:
 } // namespace view
 } // namespace pv
 
-#endif // PULSEVIEW_PV_VIEW_SIGNAL_H
+#endif // PULSEVIEW_PV_VIEW_SIGNAL_HPP