X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fsignal.h;h=d55bcf1fe5205386ef8165be34b020232d496def;hb=bb4c67698d836703257e9559d1a98cb3819c61a5;hp=81576dd4d19a9ef0a56465a8146c1f70e206ab08;hpb=931f20b0dbd480153611493f51fee68f9d29be74;p=pulseview.git diff --git a/pv/view/signal.h b/pv/view/signal.h index 81576dd4..d55bcf1f 100644 --- a/pv/view/signal.h +++ b/pv/view/signal.h @@ -22,7 +22,6 @@ #define PULSEVIEW_PV_SIGNAL_H #include -#include #include #include @@ -43,13 +42,12 @@ class Signal : public Trace { Q_OBJECT -private: - static const QPen SignalAxisPen; - protected: Signal(pv::SigSession &session, const sr_probe *const probe); public: + virtual void init_context_bar_actions(QWidget *parent); + /** * Sets the name of the signal. */ @@ -60,16 +58,7 @@ public: */ bool enabled() 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); + const sr_probe* probe() const; private slots: void on_text_changed(const QString &text); @@ -77,8 +66,8 @@ private slots: protected: const sr_probe *const _probe; - QWidgetAction _name_action; - QComboBox _name_widget; + QWidgetAction *_name_action; + QComboBox *_name_widget; bool _updating_name_widget; };