class KTimeZone |
|
|
|
Constructs a UTC time zone.
name - name of the UTC time zone |
|
|
|
|
Returns the time zone abbreviation current at a specified time.
utcDateTime - UTC date/time. An error occurs if utcDateTime.timeSpec() is not Qt.UTC. Returns time zone abbreviation, or empty string if error See also abbreviations() |
|
Returns the list of time zone abbreviations used by the time zone.
This may include historical ones which are no longer in use or have
been superseded.
Returns list of abbreviations See also abbreviation() |
|
Returns any comment for the time zone.
Returns comment, may be empty |
|
Converts a date/time, which is interpreted as being local time in this
time zone, into local time in another time zone.
newZone - other time zone which the time is to be converted into zoneDateTime - local date/time. An error occurs if zoneDateTime.timeSpec() is not Qt.LocalTime. Returns converted date/time, or invalid date/time if error See also toUtc(), toZoneTime() |
|
Returns the two-letter country code of the time zone.
Returns upper case ISO 3166 2-character country code, empty if unknown |
|
Returns the current offset of this time zone to UTC or the local
system time zone. The offset is the number of seconds which you must
add to UTC or the local system time to get local time in this time zone.
Take care if you cache the results of this routine; that would break if the result were stored across a daylight savings change. basis - Qt.UTC to return the offset to UTC, Qt.LocalTime to return the offset to local system time Returns offset in seconds See also offsetAtZoneTime(), offsetAtUtc() |
|
Returns the detailed parsed data for the time zone.
This will return null unless either parse() has been called beforehand, or
create is true.
create - true to parse the zone's data first if not already parsed Returns pointer to data, or null if data has not been parsed |
|
Converts a UTC time, measured in seconds since 00:00:00 UTC 1st January 1970
(as returned by time(2)), to a UTC QDateTime value.
QDateTime.setTime_t() is limited to handling t >= 0, since its parameter
is unsigned. This method takes a parameter of time_t which is signed.
Returns converted time See also toTime_t() |
|
Return whether daylight saving transitions are available for the time zone.
The base class returns false. Returns true if transitions are available, false if not See also transitions(), transition() |
|
Returns whether daylight savings time is in operation at a specified UTC time.
Note that time_t has a more limited range than QDateTime, so consider using isDstAtUtc() instead. t - the UTC time, measured in seconds since 00:00:00 UTC 1st January 1970 (as returned by time(2)) Returns true if daylight savings time is in operation, false otherwise See also isDstAtUtc() |
|
Returns whether daylight savings time is in operation at the given UTC date/time.
If a derived class needs to work in terms of time_t (as when accessing the system time functions, for example), it should override both this method and isDst() so as to implement its offset calculations in isDst(), and reimplement this method simply as isDst(toTime_t(utcDateTime)); utcDateTime - the UTC date/time. An error occurs if utcDateTime.timeSpec() is not Qt.UTC. Returns true if daylight savings time is in operation, false otherwise See also isDst() |
|
Checks whether the instance is valid.
Returns true if valid, false if invalid |
|
Returns the latitude of the time zone.
Returns latitude in degrees, UNKNOWN if not known |
|
Return all leap second adjustments, in time order.
Note that some time zone data sources (such as system time zones accessed via the system libraries) may not provide information on leap second adjustments. In such cases, this method will return an empty list. Returns list of adjustments |
|
Returns the latitude of the time zone.
Returns latitude in degrees, UNKNOWN if not known |
|
Returns the name of the time zone.
If it is held in a KTimeZones container, the name is the time zone's unique
identifier within that KTimeZones instance.
Returns name in system-dependent format |
|
Returns the offset of this time zone to UTC at a specified UTC time.
The offset is the number of seconds which you must add to UTC to get local time in this time zone. Note that time_t has a more limited range than QDateTime, so consider using offsetAtUtc() instead. t - the UTC time at which the offset is to be calculated, measured in seconds since 00:00:00 UTC 1st January 1970 (as returned by time(2)) Returns offset in seconds, or 0 if error See also offsetAtUtc() |
|
Returns the offset of this time zone to UTC at the given UTC date/time.
The offset is the number of seconds which you must add to UTC to get local time in this time zone. If a derived class needs to work in terms of time_t (as when accessing the system time functions, for example), it should override both this method and offset() so as to implement its offset calculations in offset(), and reimplement this method simply as offset(toTime_t(utcDateTime)); utcDateTime - the UTC date/time at which the offset is to be calculated. An error occurs if utcDateTime.timeSpec() is not Qt.UTC. Returns offset in seconds, or 0 if error See also offset(), offsetAtZoneTime(), currentOffset() |
|
Returns the offset of this time zone to UTC at the given local date/time.
Because of daylight savings time shifts, the date/time may occur twice. Optionally,
the offsets at both occurrences of dateTime are calculated.
The offset is the number of seconds which you must add to UTC to get local time in this time zone. zoneDateTime - the date/time at which the offset is to be calculated. This is interpreted as a local time in this time zone. An error occurs if zoneDateTime.timeSpec() is not Qt.LocalTime. secondOffset - if non-null, and the zoneDateTime occurs twice, receives the UTC offset for the second occurrence. Otherwise, it is set the same as the return value. Returns offset in seconds. If zoneDateTime occurs twice, it is the offset at the first occurrence which is returned. If zoneDateTime does not exist because of daylight savings time shifts, InvalidOffset is returned. If any other error occurs, 0 is returned. See also offsetAtUtc(), currentOffset() |
|
|
Checks whether this is the same instance as another one.
Note that only the pointers to the time zone data are compared, not the
contents. So it will only return equality if one instance was copied
from the other.
rhs - other instance Returns true if the same instance, else false |
|
Extracts time zone detail information for this time zone from the source database.
Returns false if the parse encountered errors, true otherwise |
|
Return all daylight savings time phases for the time zone.
Note that some time zone data sources (such as system time zones accessed via the system libraries) may not allow a list of daylight savings time changes to be compiled easily. In such cases, this method will return an empty list. Returns list of phases |
|
Sets the detailed parsed data for the time zone, and optionally
a new time zone source object.
data - parsed data source - if non-null, the new source object for the time zone See also data() |
|
Returns the source reader/parser for the time zone's source database.
Returns reader/parser |
|
Converts a UTC QDateTime to a UTC time, measured in seconds since 00:00:00 UTC
1st January 1970 (as returned by time(2)).
QDateTime.toTime_t() returns an unsigned value. This method returns a time_t
value, which is signed.
utcDateTime - date/time. An error occurs if utcDateTime.timeSpec() is not Qt.UTC. Returns converted time, or -1 if the date is out of range for time_t or utcDateTime.timeSpec() is not Qt.UTC See also fromTime_t() |
|
Converts a date/time, which is interpreted as local time in this time
zone, into UTC.
Because of daylight savings time shifts, the date/time may occur twice. In such cases, this method returns the UTC time for the first occurrence. If you need the UTC time of the second occurrence, use offsetAtZoneTime(). zoneDateTime - local date/time. An error occurs if zoneDateTime.timeSpec() is not Qt.LocalTime. Returns UTC date/time, or invalid date/time if error See also toZoneTime(), convert() |
|
Converts a UTC date/time into local time in this time zone.
Because of daylight savings time shifts, some local date/time values occur twice. The secondOccurrence parameter may be used to determine whether the time returned is the first or second occurrence of that time. utcDateTime - UTC date/time. An error occurs if utcDateTime.timeSpec() is not Qt.UTC. secondOccurrence - if non-null, returns true if the return value is the second occurrence of that time, else false Returns local date/time, or invalid date/time if error See also toUtc(), convert() |
|
Find the last daylight savings time transition at or before a given
UTC or local time.
Because of daylight savings time shifts, a local time may occur twice or may not occur at all. In the former case, the transitions at or before both occurrences of dt may optionally be calculated and returned in secondTransition. The latter case may optionally be detected by use of validTime. dt - date/time. dt.timeSpec() may be set to Qt.UTC or Qt.LocalTime. secondTransition - if non-null, and the dt occurs twice, receives the transition for the second occurrence. Otherwise, it is set the same as the return value. validTime - if non-null, is set to false if dt does not occur, or to true otherwise Returns time zone transition, or null either if dt is either outside the defined range of the transition data or if dt does not occur See also transitionIndex(), hasTransitions(), transitions() |
|
Find the index to the last daylight savings time transition at or before
a given UTC or local time. The return value is the index into the transition
list returned by transitions().
Because of daylight savings time shifts, a local time may occur twice or may not occur at all. In the former case, the transitions at or before both occurrences of dt may optionally be calculated and returned in secondIndex. The latter case may optionally be detected by use of validTime. dt - date/time. dt.timeSpec() may be set to Qt.UTC or Qt.LocalTime. secondIndex - if non-null, and the dt occurs twice, receives the index to the transition for the second occurrence. Otherwise, it is set the same as the return value. validTime - if non-null, is set to false if dt does not occur, or to true otherwise Returns index into the time zone transition list, or -1 either if dt is either outside the defined range of the transition data or if dt does not occur See also transition(), transitions(), hasTransitions() |
|
Return the times of all daylight saving transitions to a given time zone
phase, in time order. If desired, the times returned may be restricted to
a specified time range.
Note that some time zone data sources (such as system time zones accessed via the system libraries) may not allow a list of daylight saving time changes to be compiled easily. In such cases, this method will return an empty list. phase - time zone phase start - start UTC date/time, or invalid date/time to return all transitions up to end. start.timeSpec() must be Qt.UTC, else start will be considered invalid. end - end UTC date/time, or invalid date/time for no end. end.timeSpec() must be Qt.UTC, else end will be considered invalid. Returns ordered list of transition times See also hasTransitions(), transition(), transitions() |
|
Return all daylight saving transitions, in time order. If desired, the
transitions returned may be restricted to a specified time range.
Note that some time zone data sources (such as system time zones accessed via the system libraries) may not allow a list of daylight saving time changes to be compiled easily. In such cases, this method will return an empty list. start - start UTC date/time, or invalid date/time to return all transitions up to end. start.timeSpec() must be Qt.UTC, else start will be considered invalid. end - end UTC date/time, or invalid date/time for no end. end.timeSpec() must be Qt.UTC, else end will be considered invalid. Returns list of transitions, in time order See also hasTransitions(), transition(), transitionTimes() |
|
Returns the class name of the data represented by this instance.
If a derived class object has been assigned to this instance, this
method will return the name of that class.
Returns "KTimeZone" or the class name of a derived class |
|
Update the definition of the time zone to be identical to another
KTimeZone instance. A prerequisite is that the two instances must
have the same name.
The main purpose of this method is to allow updates of the time zone definition by derived classes without invalidating pointers to the instance (particularly pointers held by KDateTime objects). Note that the KTimeZoneData object and KTimeZoneSource pointer are not updated: the caller class should do this itself by calling setData(). other - time zone whose definition is to be used Returns true if definition was updated (i.e. names are the same) See also setData() |
|
Returns a standard UTC time zone, with name "UTC".
The KTimeZone returned by this method does not belong to any KTimeZones collection. Any KTimeZones instance may contain its own UTC KTimeZone defined by its time zone source data, but that will be a different instance than this KTimeZone. Returns UTC time zone |
|
Returns the complete list of UTC offsets used by the time zone. This may
include historical ones which are no longer in use or have been
superseded.
A UTC offset is the number of seconds which you must add to UTC to get local time in this time zone. If due to the nature of the source data for the time zone, compiling a complete list would require significant processing, an empty list is returned instead. Returns sorted list of UTC offsets, or empty list if not readily available. |
int InvalidOffset | Indicates an invalid time_t value. |
int InvalidOffset | |
time_t InvalidTime_t | A representation for unknown locations; this is a float that does not represent a real latitude or longitude. |
time_t InvalidTime_t | |
float UNKNOWN | |
float UNKNOWN |