X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Futil.hpp;h=ba6702f79f175f345ddfd814ae6fc1ae2ceeda78;hp=5d65694054ab2c0b2e6a9f652fc736abfc5da8cd;hb=e7216ae0a66fe1563514cbd3f67f2e240d010315;hpb=4bc10a910593fda2d378d62a57448cec4b2166bf diff --git a/pv/util.hpp b/pv/util.hpp index 5d656940..ba6702f7 100644 --- a/pv/util.hpp +++ b/pv/util.hpp @@ -18,16 +18,21 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_UTIL_H -#define PULSEVIEW_UTIL_H +#ifndef PULSEVIEW_UTIL_HPP +#define PULSEVIEW_UTIL_HPP -#include +#include #include namespace pv { namespace util { +enum TimeUnit { + Time = 1, + Samples = 2 +}; + extern const int FirstSIPrefixPower; /** @@ -51,13 +56,15 @@ QString format_si_value( * @param prefix The number of the prefix, from 0 for 'femto' up to * 8 for 'giga'. If prefix is set to -1, the prefix will be calculated. * @param unit The unit of quantity. - * @param precision The number of digits after the decimal separator. + * @param precision The number of digits after the decimal separator or period (.). + * @param step_size The delta between two consecutive time markers (if applicable). * @param sign Whether or not to add a sign also for positive numbers. * * @return The formated value. */ QString format_time( - double t, int prefix = -1, unsigned precision = 0, bool sign = true); + double t, int prefix = -1, TimeUnit unit = Time, unsigned precision = 0, + double step_size = 0, bool sign = true); /** * Formats a given time value with a SI prefix so that the @@ -71,4 +78,4 @@ QString format_second(double second); } // namespace util } // namespace pv -#endif // PULSEVIEW_UTIL_H +#endif // PULSEVIEW_UTIL_HPP