X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fviews%2Ftrace%2Ftriggermarker.hpp;fp=pv%2Fviews%2Ftrace%2Ftriggermarker.hpp;h=09017c0b882a10e57c2219c4e756e38adaa06687;hp=0000000000000000000000000000000000000000;hb=1573bf16ba50d1c023ad3a9ce596f0ab6eaeacff;hpb=4c7a19d3d7049bcc9fb3185ce2bc91333a7ca9e1 diff --git a/pv/views/trace/triggermarker.hpp b/pv/views/trace/triggermarker.hpp new file mode 100644 index 0000000..09017c0 --- /dev/null +++ b/pv/views/trace/triggermarker.hpp @@ -0,0 +1,87 @@ +/* + * This file is part of the PulseView project. + * + * Copyright (C) 2014 Joel Holdsworth + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * 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, see . + */ + +#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_TRIGGER_MARKER_HPP +#define PULSEVIEW_PV_VIEWS_TRACEVIEW_TRIGGER_MARKER_HPP + +#include "timeitem.hpp" + +namespace pv { +namespace views { +namespace trace { + +class TriggerMarker : public TimeItem +{ + Q_OBJECT + +public: + static const QColor Colour; + +public: + /** + * Constructor. + * @param view A reference to the view that owns this marker. + * @param time The time to set the marker to. + */ + TriggerMarker(View &view, const pv::util::Timestamp& time); + + /** + * Copy constructor. + */ + TriggerMarker(const TriggerMarker &marker); + + /** + * Returns true if the item is visible and enabled. + */ + bool enabled() const override; + + /** + Returns true if the item may be dragged/moved. + */ + bool is_draggable() const override; + + /** + * Sets the time of the marker. + */ + void set_time(const pv::util::Timestamp& time) override; + + float get_x() const override; + + /** + * Gets the arrow-tip point of the time marker. + * @param rect the rectangle of the ruler area. + */ + QPoint point(const QRect &rect) const override; + + /** + * Paints the foreground layer of the item with a QPainter + * @param p the QPainter to paint into. + * @param pp the painting parameters object to paint with. + */ + void paint_fore(QPainter &p, ViewItemPaintParams &pp) override; + +private: + pv::util::Timestamp time_; +}; + +} // namespace trace +} // namespace views +} // namespace pv + +#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_TRIGGER_MARKER_HPP