X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=logicsignal.h;h=359162fd7040cedf47410f326f54638d1b9869b3;hp=28c8247a90c7cb3d43ed358e4c388c2f43116ab2;hb=17c0f398438df75dc5547d630e7d334e5de3c66a;hpb=3b18c57d8f224791481e0b768065bd4d11a3d79e diff --git a/logicsignal.h b/logicsignal.h index 28c8247a..359162fd 100644 --- a/logicsignal.h +++ b/logicsignal.h @@ -26,21 +26,49 @@ class LogicData; class LogicSignal : public Signal { +private: + static const float Margin; + + static const QColor EdgeColour; + static const QColor HighColour; + static const QColor LowColour; + + static const QColor LogicSignalColours[10]; + public: - LogicSignal(QString name, boost::shared_ptr data, + LogicSignal(QString name, + boost::shared_ptr data, int probe_index); /** - * 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. + **/ + void paint(QPainter &p, const QRect &rect, double scale, double offset); + +private: + + int paint_caps(QPainter &p, QLineF *const lines, + std::vector< std::pair > &edges, + bool level, double samples_per_pixel, double pixels_offset, + int x_offset, int y_offset); + + /** + * Get the colour of the logic signal + */ + QColor get_colour() const; + + /** + * When painting into the rectangle, calculate the y + * offset of the zero point. **/ - void paint(QGLWidget &widget, const QRect &rect, uint64_t scale, - int64_t offset); + int get_nominal_offset(const QRect &rect) const; private: int _probe_index; + boost::shared_ptr _data; };