X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fruler.hpp;h=aabbe486cd8a93f8d3b986a26150aee4f40f739c;hp=cf63eaff7c7cb27ae0b2ec451801bda05b23677d;hb=7352be721b90b630efd742b53e1a0ea16bb834b8;hpb=3ccf0f7f5b1b31ac628a983a2becee6f4c4c1507 diff --git a/pv/view/ruler.hpp b/pv/view/ruler.hpp index cf63eaff..aabbe486 100644 --- a/pv/view/ruler.hpp +++ b/pv/view/ruler.hpp @@ -30,9 +30,9 @@ #include namespace RulerTest { -class tick_position_test_0; -class tick_position_test_1; -class tick_position_test_2; +struct tick_position_test_0; +struct tick_position_test_1; +struct tick_position_test_2; } namespace pv { @@ -45,9 +45,9 @@ class Ruler : public MarginWidget { Q_OBJECT - friend class RulerTest::tick_position_test_0; - friend class RulerTest::tick_position_test_1; - friend class RulerTest::tick_position_test_2; + friend struct RulerTest::tick_position_test_0; + friend struct RulerTest::tick_position_test_1; + friend struct RulerTest::tick_position_test_2; private: @@ -63,14 +63,14 @@ public: Ruler(View &parent); public: - QSize sizeHint() const; + QSize sizeHint() const override; /** * The extended area that the header widget would like to be sized to. * @remarks This area is the area specified by sizeHint, extended by * the area to overlap the viewport. */ - QSize extended_size_hint() const; + QSize extended_size_hint() const override; /** * Formats a timestamp depending on its distance to another timestamp. @@ -109,7 +109,7 @@ private: /** * Gets the time items. */ - std::vector< std::shared_ptr > items(); + std::vector< std::shared_ptr > items() override; /** * Gets the first view item which has a label that contains @c pt . @@ -118,11 +118,11 @@ private: * @c shared_ptr if no item was found. */ std::shared_ptr get_mouse_over_item( - const QPoint &pt); + const QPoint &pt) override; - void paintEvent(QPaintEvent *event); + void paintEvent(QPaintEvent *event) override; - void mouseDoubleClickEvent(QMouseEvent *e); + void mouseDoubleClickEvent(QMouseEvent *e) override; /** * Draw a hover arrow under the cursor position.