X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftimemarker.hpp;h=371b6e4a54ce607edbdfd7dc3ead53c55e9ae447;hp=4e5d92e6c6a75efee20a0283b36676c6d8d4cb86;hb=806d3e1eb3d60e93ff95d23e79588a0486730967;hpb=6abffa979b89440af383cf1142648e34dcbdfc44 diff --git a/pv/view/timemarker.hpp b/pv/view/timemarker.hpp index 4e5d92e6..371b6e4a 100644 --- a/pv/view/timemarker.hpp +++ b/pv/view/timemarker.hpp @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_VIEW_MARKER_H -#define PULSEVIEW_PV_VIEW_MARKER_H +#ifndef PULSEVIEW_PV_VIEW_MARKER_HPP +#define PULSEVIEW_PV_VIEW_MARKER_HPP #include #include @@ -33,6 +33,10 @@ class QPainter; class QRect; namespace pv { +namespace widgets { + class TimestampSpinBox; +} + namespace view { class View; @@ -51,25 +55,26 @@ protected: * @param colour A reference to the colour of this cursor. * @param time The time to set the flag to. */ - TimeMarker(View &view, const QColor &colour, double time); + TimeMarker(View &view, const QColor &colour, const pv::util::Timestamp& time); public: /** * Gets the time of the marker. */ - double time() const; + const pv::util::Timestamp& time() const; /** * Sets the time of the marker. */ - void set_time(double time); + void set_time(const pv::util::Timestamp& time) override; float get_x() const; /** - * Gets the drag point of the row item. + * Gets the arrow-tip point of the time marker. + * @param rect the rectangle of the ruler area. */ - QPoint point() const; + QPoint point(const QRect &rect) const; /** * Computes the outline rectangle of a label. @@ -78,6 +83,13 @@ public: */ QRectF label_rect(const QRectF &rect) const; + /** + * Computes the outline rectangle of the viewport hit-box. + * @param rect the rectangle of the viewport area. + * @return Returns the rectangle of the hit-box. + */ + QRectF hit_box_rect(const QRectF &rect) const; + /** * Gets the text to show in the marker. */ @@ -101,21 +113,21 @@ public: virtual pv::widgets::Popup* create_popup(QWidget *parent); private Q_SLOTS: - void on_value_changed(double value); + void on_value_changed(const pv::util::Timestamp& value); protected: const QColor &colour_; - double time_; + pv::util::Timestamp time_; QSizeF text_size_; QWidgetAction *value_action_; - QDoubleSpinBox *value_widget_; + pv::widgets::TimestampSpinBox *value_widget_; bool updating_value_widget_; }; } // namespace view } // namespace pv -#endif // PULSEVIEW_PV_VIEW_MARKER_H +#endif // PULSEVIEW_PV_VIEW_MARKER_HPP