The QMediaTimeRange class represents a set of zero or more disjoint time intervals. More...
Header: | #include <QMediaTimeRange> |
CMake: | find_package(Qt6 COMPONENTS Multimedia REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Multimedia) |
qmake: | QT += multimedia |
Note: All functions in this class are reentrant.
struct | Interval |
QMediaTimeRange(QMediaTimeRange &&other) | |
QMediaTimeRange(const QMediaTimeRange &range) | |
QMediaTimeRange(const QMediaTimeRange::Interval &interval) | |
QMediaTimeRange(qint64 start, qint64 end) | |
QMediaTimeRange() | |
QMediaTimeRange & | operator=(const QMediaTimeRange::Interval &interval) |
QMediaTimeRange & | operator=(QMediaTimeRange &&other) |
QMediaTimeRange & | operator=(const QMediaTimeRange &other) |
~QMediaTimeRange() | |
void | addInterval(const QMediaTimeRange::Interval &interval) |
void | addInterval(qint64 start, qint64 end) |
void | addTimeRange(const QMediaTimeRange &range) |
void | clear() |
bool | contains(qint64 time) const |
qint64 | earliestTime() const |
QList<QMediaTimeRange::Interval> | intervals() const |
bool | isContinuous() const |
bool | isEmpty() const |
qint64 | latestTime() const |
void | removeInterval(const QMediaTimeRange::Interval &interval) |
void | removeInterval(qint64 start, qint64 end) |
void | removeTimeRange(const QMediaTimeRange &range) |
QMediaTimeRange & | operator+=(const QMediaTimeRange &other) |
QMediaTimeRange & | operator+=(const QMediaTimeRange::Interval &interval) |
QMediaTimeRange & | operator-=(const QMediaTimeRange &other) |
QMediaTimeRange & | operator-=(const QMediaTimeRange::Interval &interval) |
bool | operator!=(const QMediaTimeRange &lhs, const QMediaTimeRange &rhs) |
QMediaTimeRange | operator+(const QMediaTimeRange &r1, const QMediaTimeRange &r2) |
QMediaTimeRange | operator-(const QMediaTimeRange &r1, const QMediaTimeRange &r2) |
bool | operator==(const QMediaTimeRange &lhs, const QMediaTimeRange &rhs) |
The earliestTime(), latestTime(), intervals() and isEmpty() methods are used to get information about the current time range.
The addInterval(), removeInterval() and clear() methods are used to modify the current time range.
When adding or removing intervals from the time range, existing intervals within the range may be expanded, trimmed, deleted, merged or split to ensure that all intervals within the time range remain distinct and disjoint. As a consequence, all intervals added or removed from a time range must be normal.
See also QMediaTimeRange::Interval.
Constructs a time range by moving from other.
Constructs a time range by copying another time range.
Constructs a time range that contains an initial interval, interval.
If interval is not normal, the resulting time range will be empty.
See also addInterval().
Constructs a time range that contains an initial interval from start to end inclusive.
If the interval is not normal, the resulting time range will be empty.
See also addInterval().
Constructs an empty time range.
Sets the time range to a single continuous interval, interval.
Moves other into this time range.
Takes a copy of the other time range and returns itself.
Destructor.
Adds the specified interval to the time range.
Adding intervals which are not normal is invalid, and will be ignored.
If the specified interval is adjacent to, or overlaps existing intervals within the time range, these intervals will be merged.
This operation takes linear time.
See also removeInterval().
This is an overloaded function.
Adds the interval specified by start and end to the time range.
See also addInterval().
Adds each of the intervals in range to this time range.
Equivalent to calling addInterval() for each interval in range.
Removes all intervals from the time range.
See also removeInterval().
Returns true if the specified time lies within the time range.
Returns the earliest time within the time range.
For empty time ranges, this value is equal to zero.
See also latestTime().
Returns the list of intervals covered by this time range.
Returns true if the time range consists of a continuous interval. That is, there is one or fewer disjoint intervals within the time range.
Returns true if there are no intervals within the time range.
See also intervals().
Returns the latest time within the time range.
For empty time ranges, this value is equal to zero.
See also earliestTime().
Removes the specified interval from the time range.
Removing intervals which are not normal is invalid, and will be ignored.
Intervals within the time range will be trimmed, split or deleted such that no intervals within the time range include any part of the target interval.
This operation takes linear time.
See also addInterval().
This is an overloaded function.
Removes the interval specified by start and end from the time range.
See also removeInterval().
Removes each of the intervals in range from this time range.
Equivalent to calling removeInterval() for each interval in range.
Adds each interval in other to the time range and returns the result.
Adds the specified interval to the time range and returns the result.
Removes each interval in other from the time range and returns the result.
Removes the specified interval from the time range and returns the result.
Returns true if one or more intervals in lhs are not present in rhs.
Returns a time range containing the union between r1 and r2.
Returns a time range containing r2 subtracted from r1.
Returns true if all intervals in lhs are present in rhs.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qmediatimerange.html