X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fviews%2Ftrace%2Fflag.hpp;h=4c4c977f0d19254bf17b199c6ede54e688a2d60a;hb=0bb3dd25421a8638afb881d46799a13378d3f00b;hp=4bf6ebd5db7f974a9857e733ce0b49c8cbde046f;hpb=9e773fecf2d4ab8f2fc6e1cc880b9102c22ec228;p=pulseview.git diff --git a/pv/views/trace/flag.hpp b/pv/views/trace/flag.hpp index 4bf6ebd5..4c4c977f 100644 --- a/pv/views/trace/flag.hpp +++ b/pv/views/trace/flag.hpp @@ -17,8 +17,8 @@ * along with this program; if not, see . */ -#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_FLAG_HPP -#define PULSEVIEW_PV_VIEWS_TRACEVIEW_FLAG_HPP +#ifndef PULSEVIEW_PV_VIEWS_TRACE_FLAG_HPP +#define PULSEVIEW_PV_VIEWS_TRACE_FLAG_HPP #include @@ -60,18 +60,25 @@ public: /** * Returns true if the item is visible and enabled. */ - bool enabled() const; + virtual bool enabled() const override; /** * Gets the text to show in the marker. */ - QString get_text() const; + virtual QString get_text() const override; - pv::widgets::Popup* create_popup(QWidget *parent); + /** + * Sets the text to show in the marker. + */ + virtual void set_text(const QString &text) override; + + virtual pv::widgets::Popup* create_popup(QWidget *parent) override; + + virtual QMenu* create_header_context_menu(QWidget *parent) override; - QMenu* create_header_context_menu(QWidget *parent); + virtual void delete_pressed() override; - void delete_pressed(); + QRectF label_rect(const QRectF &rect) const override; private Q_SLOTS: void on_delete(); @@ -86,4 +93,4 @@ private: } // namespace views } // namespace pv -#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_FLAG_HPP +#endif // PULSEVIEW_PV_VIEWS_TRACE_FLAG_HPP