RowItem: Replaced fixed signal heights with extents
[pulseview.git] / pv / view / tracegroup.h
index 0d246cee3c05471c88dbe4f99425eafcea395230..a9f5558f4a381893dcae3d05c9bf36d9a9742243 100644 (file)
@@ -31,6 +31,10 @@ class TraceGroup : public RowItem, public RowItemOwner
 {
        Q_OBJECT
 
+private:
+       static const int Padding;
+       static const int Width;
+
 public:
        /**
         * Virtual destructor
@@ -62,6 +66,12 @@ public:
         */
        virtual const pv::view::View* view() 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 signal label.
         * @param p the QPainter to paint into.