X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fviewitempaintparams.hpp;h=bba0d70e6fe72759a7742ba2728db482a798aa97;hp=a8b519067250976ff0990a510d93a5f2bca6df72;hb=303d6ea697468ee79f4c3f73afc57db0ce6319a8;hpb=36e7001de1e6620deeb93fa77c2ec6c4ebc4b3ea diff --git a/pv/view/viewitempaintparams.hpp b/pv/view/viewitempaintparams.hpp index a8b51906..bba0d70e 100644 --- a/pv/view/viewitempaintparams.hpp +++ b/pv/view/viewitempaintparams.hpp @@ -18,10 +18,13 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_VIEW_ROWITEMPAINTPARAMS_H -#define PULSEVIEW_PV_VIEW_ROWITEMPAINTPARAMS_H +#ifndef PULSEVIEW_PV_VIEW_VIEWITEMPAINTPARAMS_HPP +#define PULSEVIEW_PV_VIEW_VIEWITEMPAINTPARAMS_HPP + +#include "pv/util.hpp" #include +#include namespace pv { namespace view { @@ -29,7 +32,8 @@ namespace view { class ViewItemPaintParams { public: - ViewItemPaintParams(const QRect &rect, double scale, double offset); + ViewItemPaintParams( + const QRect &rect, double scale, const pv::util::Timestamp& offset); QRect rect() const { return rect_; @@ -39,7 +43,7 @@ public: return scale_; } - double offset() const { + const pv::util::Timestamp& offset() const { return offset_; } @@ -64,11 +68,11 @@ public: } int height() const { - return rect_.width(); + return rect_.height(); } double pixels_offset() const { - return offset_ / scale_; + return (offset_ / scale_).convert_to(); } public: @@ -79,10 +83,10 @@ public: private: QRect rect_; double scale_; - double offset_; + pv::util::Timestamp offset_; }; } // namespace view } // namespace pv -#endif // PULSEVIEW_PV_VIEW_ROWITEMPAINTPARAMS_H +#endif // PULSEVIEW_PV_VIEW_VIEWITEMPAINTPARAMS_HPP