X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fsignal.h;h=540eb6eda38899b3027a9f3a4baac45ecb39b3ba;hb=767281c8881e4ed35607cbff4b270dfd55d0ef67;hp=96172d77b3a439b761ccdf93e2de2d34cc14bb11;hpb=632ba77ec49a10f482d7489b1a2d64dba2c2e705;p=pulseview.git diff --git a/pv/view/signal.h b/pv/view/signal.h index 96172d77..540eb6ed 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,15 +42,10 @@ 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. */ @@ -64,16 +58,7 @@ 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); + virtual void populate_popup_form(QWidget *parent, QFormLayout *form); private slots: void on_text_changed(const QString &text); @@ -81,7 +66,6 @@ private slots: protected: const sr_probe *const _probe; - QWidgetAction *_name_action; QComboBox *_name_widget; bool _updating_name_widget; };