X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fruler.hpp;h=192de791fcb79ad86c9a37eb09b3f48128eeec89;hp=d01b151243aeb2ea3c9a32ab8a3077cf20a76677;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=4b0af0b67fe57e0880bcb8aa13b4fa807f3aaac0 diff --git a/pv/view/ruler.hpp b/pv/view/ruler.hpp index d01b151..192de79 100644 --- a/pv/view/ruler.hpp +++ b/pv/view/ruler.hpp @@ -14,12 +14,11 @@ * 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_RULER_HPP -#define PULSEVIEW_PV_VIEW_RULER_HPP +#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_RULER_HPP +#define PULSEVIEW_PV_VIEWS_TRACEVIEW_RULER_HPP #include #include @@ -29,8 +28,20 @@ #include "marginwidget.hpp" #include +using std::function; +using std::pair; +using std::shared_ptr; +using std::vector; + +namespace RulerTest { +struct tick_position_test_0; +struct tick_position_test_1; +struct tick_position_test_2; +} + namespace pv { -namespace view { +namespace views { +namespace TraceView { class TimeItem; class ViewItem; @@ -39,6 +50,10 @@ class Ruler : public MarginWidget { Q_OBJECT + friend struct RulerTest::tick_position_test_0; + friend struct RulerTest::tick_position_test_1; + friend struct RulerTest::tick_position_test_2; + private: /// Height of the ruler in multipes of the text height @@ -53,20 +68,53 @@ 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. + * + * Heuristic function, useful when multiple timestamps should be put side by + * side. The function procedes in the following order: + * - If 't' is zero, "0" is returned. + * - If 'unit' is 'TimeUnit::Samples', 'pv::util::format_time_si_adjusted()' + * is used to format 't'. + * - If a zoomed out view is detected (determined by 'precision' and + * 'distance'), 'pv::util::format_time_minutes() is used. + * - For timestamps "near the origin" (determined by 'distance'), + * 'pv::util::format_time_si_adjusted()' is used. + * - If none of the previous was true, 'pv::util::format_time_minutes()' + * is used again. + * + * @param distance The distance between the timestamp to format and + * an adjacent one. + * @param t The value to format + * @param prefix The SI prefix to use. + * @param unit The representation of the timestamp value. + * @param precision The number of digits after the decimal separator. + * @param sign Whether or not to add a sign also for positive numbers. + * + * @return The formated value. + */ + static QString format_time_with_distance( + const pv::util::Timestamp& distance, + const pv::util::Timestamp& t, + pv::util::SIPrefix prefix = pv::util::SIPrefix::unspecified, + pv::util::TimeUnit unit = pv::util::TimeUnit::Time, + unsigned precision = 0, + bool sign = true); private: /** * Gets the time items. */ - std::vector< std::shared_ptr > items(); + vector< shared_ptr > items() override; /** * Gets the first view item which has a label that contains @c pt . @@ -74,13 +122,11 @@ private: * @return the view item that has been found, or and empty * @c shared_ptr if no item was found. */ - std::shared_ptr get_mouse_over_item( - const QPoint &pt); + shared_ptr get_mouse_over_item(const QPoint &pt) override; -private: - void paintEvent(QPaintEvent *event); + void paintEvent(QPaintEvent *event) override; - void mouseDoubleClickEvent(QMouseEvent *e); + void mouseDoubleClickEvent(QMouseEvent *event) override; /** * Draw a hover arrow under the cursor position. @@ -93,8 +139,8 @@ private: struct TickPositions { - std::vector> major; - std::vector minor; + vector> major; + vector minor; }; /** @@ -116,11 +162,11 @@ private: * tick positions. */ static TickPositions calculate_tick_positions( - const double major_period, + const pv::util::Timestamp& major_period, const pv::util::Timestamp& offset, const double scale, const int width, - std::function format_function); + function format_function); protected: void resizeEvent(QResizeEvent*) override; @@ -132,7 +178,8 @@ private Q_SLOTS: void invalidate_tick_position_cache(); }; -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv -#endif // PULSEVIEW_PV_VIEW_RULER_HPP +#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_RULER_HPP