Split signal painting into 3 layers
[pulseview.git] / pv / view / signal.h
index 96172d77b3a439b761ccdf93e2de2d34cc14bb11..d55bcf1fe5205386ef8165be34b020232d496def 100644 (file)
@@ -22,7 +22,6 @@
 #define PULSEVIEW_PV_SIGNAL_H
 
 #include <QComboBox>
-#include <QPen>
 #include <QWidgetAction>
 
 #include <stdint.h>
@@ -43,9 +42,6 @@ class Signal : public Trace
 {
        Q_OBJECT
 
-private:
-       static const QPen SignalAxisPen;
-
 protected:
        Signal(pv::SigSession &session, const sr_probe *const probe);
 
@@ -64,17 +60,6 @@ public:
 
        const sr_probe* probe() const;
 
-protected:
-
-       /**
-        * Paints a zero axis across the viewport.
-        * @param p the QPainter to paint into.
-        * @param y the y-offset of the axis.
-        * @param left the x-coordinate of the left edge of the view.
-        * @param right the x-coordinate of the right edge of the view.
-        */
-       void paint_axis(QPainter &p, int y, int left, int right);
-
 private slots:
        void on_text_changed(const QString &text);