Format QML Type
Provides support for formatting numbers and datetimes in formats that are not supported by QLocale. More...
Import Statement: | import org.kde.coreaddons |
Methods
- string formatByteSize(double size, int precision)
- string formatDecimalDuration(int msecs, int decimalPlaces)
- string formatDistance(real distance, enumeration options)
- string formatDuration(int msecs, KFormat::DurationFormatOptions options)
- string formatRelativeDate(QDateTime date, format)
- string formatRelativeDate(date date, format)
- string formatSpelloutDuration(int msecs)
Detailed Description
See also KFormat.
Method Documentation
Converts size from bytes to the appropriate string representation
Given a number of milliseconds, converts that to a string containing the localized equivalent to the requested decimal places.
e.g. given formatDuration(60000), returns "1.0 minutes"
Formats a distance value given in meters in appropriate units for displaying.
Unless explicitly forced to metric units this uses units approrpiate for the current locale.
Given a number of milliseconds, converts that to a string containing the localized equivalent, e.g. 1:23:45
string formatRelativeDate(QDateTime date, format) |
Returns a string formatted to a relative datetime style.
If the dateTime falls within one week before or after the current date then a relative date string will be returned, such as:
- Yesterday, 3:00pm
- Today, 3:00pm
- Tomorrow, 3:00pm
- Last Tuesday, 3:00pm
- Next Wednesday, 3:00pm
If the datetime falls outside this period then the format is used
Returns a string formatted to a relative date style.
If the date falls within one week before or after the current date then a relative date string will be returned, such as:
- Yesterday
- Today
- Tomorrow
- Last Tuesday
- Next Wednesday
If the date falls outside this period then the format is used
Given a number of milliseconds, converts that to a spell-out string containing the localized equivalent.
e.g. given formatSpelloutDuration(60001) returns "1 minute" given formatSpelloutDuration(62005) returns "1 minute and 2 seconds" given formatSpelloutDuration(90060000) returns "1 day and 1 hour"
Units not interesting to the user, for example seconds or minutes when the first unit is day, are not returned because they are irrelevant. The same applies for seconds when the first unit is hour.