X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=signal.h;h=27bd5562e9b2b687639fe8d4d61660771743a626;hb=8f94be14588c7a7ca0f483b649d7a7b5b5f45ae9;hp=2cec1299e0cce040cf78d90a0441933c4512e9ce;hpb=3b18c57d8f224791481e0b768065bd4d11a3d79e;p=pulseview.git diff --git a/signal.h b/signal.h index 2cec129..27bd556 100644 --- a/signal.h +++ b/signal.h @@ -1,5 +1,5 @@ /* - * This file is part of the sigrok project. + * This file is part of the PulseView project. * * Copyright (C) 2012 Joel Holdsworth * @@ -20,7 +20,7 @@ #include -#include +#include #include #include @@ -30,24 +30,46 @@ 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 into a QGLWidget. - * @param widget the QGLWidget to paint into. + * 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 femtoseconds per pixel. + * @param scale the scale in seconds per pixel. * @param offset the time to show at the left hand edge of - * the view in femtoseconds. + * 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 void paint(QGLWidget &widget, const QRect &rect, - uint64_t scale, int64_t offset) = 0; + virtual int get_nominal_offset(const QRect &rect) const = 0; protected: QString _name; - boost::shared_ptr _data; };