]> sigrok.org Git - pulseview.git/blobdiff - pv/view/logicsignal.h
View: Create trace groups from channel groups
[pulseview.git] / pv / view / logicsignal.h
index 481293808824e52be05173f09456363d77216968..a275f177783ac211ea6279ab0e04e3f5510d7cc3 100644 (file)
@@ -45,6 +45,9 @@ class LogicSignal : public Signal
        Q_OBJECT
 
 private:
+       static const int SignalHeight;
+       static const int SignalMargin;
+
        static const float Oversampling;
 
        static const QColor EdgeColour;
@@ -65,6 +68,12 @@ public:
 
        std::shared_ptr<pv::data::Logic> logic_data() const;
 
+       /**
+        * Computes the vertical extents of the contents of this row item.
+        * @return A pair containing the minimum and maximum y-values.
+        */
+       std::pair<int, int> v_extents() const;
+
        /**
         * Paints the background layer of the signal with a QPainter
         * @param p the QPainter to paint into.
@@ -92,6 +101,7 @@ private:
        QAction* match_action(const sigrok::TriggerMatchType *match);
        const sigrok::TriggerMatchType *action_match(QAction *action);
        void populate_popup_form(QWidget *parent, QFormLayout *form);
+       void modify_trigger();
 
 private Q_SLOTS:
        void on_trigger();