X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fviews%2Ftrace%2Fcursorpair.hpp;h=9d450df6b69af06e1dcc9a0830f036c9b18c3f23;hp=7a73e1980395d16b43c22420ed23bb802e6f0304;hb=c04f5a29b805e2aa7afa06d80363bad1f5b705f6;hpb=1573bf16ba50d1c023ad3a9ce596f0ab6eaeacff diff --git a/pv/views/trace/cursorpair.hpp b/pv/views/trace/cursorpair.hpp index 7a73e19..9d450df 100644 --- a/pv/views/trace/cursorpair.hpp +++ b/pv/views/trace/cursorpair.hpp @@ -21,10 +21,13 @@ #define PULSEVIEW_PV_VIEWS_TRACEVIEW_CURSORPAIR_HPP #include "cursor.hpp" +#include "pv/globalsettings.hpp" #include +#include #include +#include using std::pair; using std::shared_ptr; @@ -35,11 +38,14 @@ namespace pv { namespace views { namespace trace { -class CursorPair : public TimeItem +class View; + +class CursorPair : public TimeItem, public GlobalSettingsInterface { + Q_OBJECT + private: static const int DeltaPadding; - static const QColor ViewportFillColour; public: /** @@ -48,7 +54,8 @@ public: */ CursorPair(View &view); -public: + ~CursorPair(); + /** * Returns true if the item is visible and enabled. */ @@ -71,11 +78,10 @@ public: float get_x() const override; - QPoint point(const QRect &rect) const override; + QPoint drag_point(const QRect &rect) const override; pv::widgets::Popup* create_popup(QWidget *parent) override; -public: QRectF label_rect(const QRectF &rect) const override; /** @@ -98,14 +104,20 @@ public: */ QString format_string(); - void compute_text_size(QPainter &p); - pair get_cursor_offsets() const; + virtual void on_setting_changed(const QString &key, const QVariant &value) override; + +public Q_SLOTS: + void on_hover_point_changed(const QWidget* widget, const QPoint &hp); + private: shared_ptr first_, second_; + QColor fill_color_; QSizeF text_size_; + QRectF label_area_; + bool label_incomplete_; }; } // namespace trace