X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=signal.h;h=7d59bb44021d7efe44074425eeb1a534bf453152;hp=47e1dc915b4e50b873b58b6540c748d105e87cff;hb=3db297c4f9c6cf3023e68b1f9e37ac4ea1c7ef3c;hpb=28a4c9c5eb20296199fc3496bb40b7733dffac75 diff --git a/signal.h b/signal.h index 47e1dc91..7d59bb44 100644 --- a/signal.h +++ b/signal.h @@ -19,20 +19,57 @@ */ #include + +#include +#include #include + #include class SignalData; class Signal { +private: + static const QSizeF LabelPadding; + protected: - Signal(QString name, boost::shared_ptr data); + Signal(QString name); public: QString get_name() const; + /** + * Paints the signal with a QPainter + * @param p the QPainter to paint into. + * @param rect the rectangular area to draw the trace into. + * @param scale the scale in seconds per pixel. + * @param offset the time to show at the left hand edge of + * the view in seconds. + **/ + virtual void paint(QPainter &p, const QRect &rect, double scale, + double offset) = 0; + + /** + * Paints the signal label into a QGLWidget. + * @param p the QPainter to paint into. + * @param rect the rectangular area to draw the label into. + */ + virtual void paint_label(QPainter &p, const QRect &rect); + +protected: + + /** + * Get the colour of the logic signal + */ + virtual QColor get_colour() const = 0; + + /** + * When painting into the rectangle, calculate the y + * offset of the zero point. + **/ + virtual int get_nominal_offset(const QRect &rect) const = 0; + protected: QString _name; - boost::shared_ptr _data; };