X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftimemarker.cpp;h=eaa03b942294e62c4500f7b59bdbccb1a4b3ef8d;hp=1e5b8206e54165ebc3cc36e20181eef686c422ce;hb=60938e0430a0d08792ba53b86ca94153baaed74d;hpb=7708eb92ca87836f5d4987899e0fbb7a4e2335b4 diff --git a/pv/view/timemarker.cpp b/pv/view/timemarker.cpp index 1e5b8206..eaa03b94 100644 --- a/pv/view/timemarker.cpp +++ b/pv/view/timemarker.cpp @@ -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 . */ #include +#include #include #include "timemarker.hpp" +#include "pv/widgets/timestampspinbox.hpp" #include "view.hpp" #include -#include #include +#include #include #include @@ -37,26 +38,28 @@ using std::max; using std::min; namespace pv { -namespace view { +namespace views { +namespace TraceView { const int TimeMarker::ArrowSize = 4; -TimeMarker::TimeMarker(View &view, const QColor &colour, double time) : +TimeMarker::TimeMarker( + View &view, const QColor &colour, const pv::util::Timestamp& time) : TimeItem(view), colour_(colour), time_(time), - value_action_(NULL), - value_widget_(NULL), + value_action_(nullptr), + value_widget_(nullptr), updating_value_widget_(false) { } -double TimeMarker::time() const +const pv::util::Timestamp& TimeMarker::time() const { return time_; } -void TimeMarker::set_time(double time) +void TimeMarker::set_time(const pv::util::Timestamp& time) { time_ = time; @@ -71,7 +74,7 @@ void TimeMarker::set_time(double time) float TimeMarker::get_x() const { - return (time_ - view_.offset()) / view_.scale(); + return std::roundf(((time_ - view_.offset()) / view_.scale()).convert_to()) + 0.5f; } QPoint TimeMarker::point(const QRect &rect) const @@ -93,11 +96,11 @@ QRectF TimeMarker::label_rect(const QRectF &rect) const return QRectF(QPointF(x - label_size.width() / 2, top), label_size); } -QRectF TimeMarker::hit_box_rect(const QRectF &rect) const +QRectF TimeMarker::hit_box_rect(const ViewItemPaintParams &pp) const { const float x = get_x(); const float h = QFontMetrics(QApplication::font()).height(); - return QRectF(x - h / 2.0f, rect.top(), h, rect.height()); + return QRectF(x - h / 2.0f, pp.top(), h, pp.height()); } void TimeMarker::paint_label(QPainter &p, const QRect &rect, bool hover) @@ -105,7 +108,7 @@ void TimeMarker::paint_label(QPainter &p, const QRect &rect, bool hover) if (!enabled()) return; - const qreal x = (time_ - view_.offset()) / view_.scale(); + const qreal x = get_x(); const QRectF r(label_rect(rect)); const QPointF points[] = { @@ -151,7 +154,7 @@ void TimeMarker::paint_label(QPainter &p, const QRect &rect, bool hover) p.drawText(r, Qt::AlignCenter | Qt::AlignVCenter, get_text()); } -void TimeMarker::paint_fore(QPainter &p, const ViewItemPaintParams &pp) +void TimeMarker::paint_fore(QPainter &p, ViewItemPaintParams &pp) { if (!enabled()) return; @@ -172,26 +175,23 @@ pv::widgets::Popup* TimeMarker::create_popup(QWidget *parent) QFormLayout *const form = new QFormLayout(popup); popup->setLayout(form); - value_widget_ = new QDoubleSpinBox(parent); - value_widget_->setDecimals(9); - value_widget_->setSuffix("s"); - value_widget_->setSingleStep(1e-6); - value_widget_->setRange(-1.0e9, 1.0e9); + value_widget_ = new pv::widgets::TimestampSpinBox(parent); value_widget_->setValue(time_); - connect(value_widget_, SIGNAL(valueChanged(double)), - this, SLOT(on_value_changed(double))); + connect(value_widget_, SIGNAL(valueChanged(const pv::util::Timestamp&)), + this, SLOT(on_value_changed(const pv::util::Timestamp&))); form->addRow(tr("Time"), value_widget_); return popup; } -void TimeMarker::on_value_changed(double value) +void TimeMarker::on_value_changed(const pv::util::Timestamp& value) { if (!updating_value_widget_) set_time(value); } -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv