X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Ftimeitem.hpp;h=f988488409c18426aebab42b720dab2d54731987;hb=e899d8bd280bbb88c81b4a41fd7d624194697ef6;hp=e47f1a6bf1564e39425728e35872733d7e592215;hpb=ad341c3a893c66cfd59ac66eedb1de405ed0dbbb;p=pulseview.git diff --git a/pv/view/timeitem.hpp b/pv/view/timeitem.hpp index e47f1a6b..f9884884 100644 --- a/pv/view/timeitem.hpp +++ b/pv/view/timeitem.hpp @@ -21,14 +21,15 @@ #ifndef PULSEVIEW_PV_VIEW_TIMEITEM_H #define PULSEVIEW_PV_VIEW_TIMEITEM_H -#include "selectableitem.hpp" +#include "viewitem.hpp" namespace pv { namespace view { class View; -class TimeItem : public SelectableItem +class TimeItem : public ViewItem + { Q_OBJECT @@ -39,6 +40,14 @@ protected: */ TimeItem(View &view); +public: + /** + * Sets the time of the marker. + */ + virtual void set_time(double time) = 0; + + virtual float get_x() const = 0; + protected: View &view_; };