X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Ftimeitem.hpp;h=c5af3b895014a6510c2fb8ce23b9001461263ad9;hb=1887da2169397774c9563e9bf44c51ed7efc3646;hp=e47f1a6bf1564e39425728e35872733d7e592215;hpb=ad341c3a893c66cfd59ac66eedb1de405ed0dbbb;p=pulseview.git diff --git a/pv/view/timeitem.hpp b/pv/view/timeitem.hpp index e47f1a6b..c5af3b89 100644 --- a/pv/view/timeitem.hpp +++ b/pv/view/timeitem.hpp @@ -14,21 +14,22 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ -#ifndef PULSEVIEW_PV_VIEW_TIMEITEM_H -#define PULSEVIEW_PV_VIEW_TIMEITEM_H +#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_TIMEITEM_HPP +#define PULSEVIEW_PV_VIEWS_TRACEVIEW_TIMEITEM_HPP -#include "selectableitem.hpp" +#include "viewitem.hpp" namespace pv { -namespace view { +namespace views { +namespace TraceView { class View; -class TimeItem : public SelectableItem +class TimeItem : public ViewItem + { Q_OBJECT @@ -39,11 +40,26 @@ protected: */ TimeItem(View &view); +public: + /** + * Sets the time of the marker. + */ + virtual void set_time(const pv::util::Timestamp& time) = 0; + + virtual float get_x() const = 0; + + /** + * Drags the item to a delta relative to the drag point. + * @param delta the offset from the drag point. + */ + void drag_by(const QPoint &delta); + protected: View &view_; }; -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv -#endif // PULSEVIEW_PV_VIEW_TIMEITEM_H +#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_TIMEITEM_HPP