The QGalleryUnionFilter class provides a filter which matches the union of two or more meta-data filters. More...
#include <QGalleryUnionFilter>
This class was introduced in Qt Mobility 1.1.
QGalleryUnionFilter () | |
QGalleryUnionFilter ( const QGalleryMetaDataFilter & filter ) | |
QGalleryUnionFilter ( const QGalleryIntersectionFilter & filter ) | |
QGalleryUnionFilter ( const QGalleryUnionFilter & filter ) | |
~QGalleryUnionFilter () | |
void | append ( const QGalleryMetaDataFilter & filter ) |
void | append ( const QGalleryIntersectionFilter & filter ) |
void | append ( const QGalleryUnionFilter & filter ) |
void | clear () |
int | filterCount () const |
QList<QGalleryFilter> | filters () const |
void | insert ( int index, const QGalleryMetaDataFilter & filter ) |
void | insert ( int index, const QGalleryIntersectionFilter & filter ) |
void | insert ( int index, const QGalleryUnionFilter & filter ) |
bool | isEmpty () const |
bool | isValid () const |
void | prepend ( const QGalleryMetaDataFilter & filter ) |
void | prepend ( const QGalleryIntersectionFilter & filter ) |
void | prepend ( const QGalleryUnionFilter & filter ) |
void | remove ( int index ) |
void | replace ( int index, const QGalleryMetaDataFilter & filter ) |
void | replace ( int index, const QGalleryIntersectionFilter & filter ) |
QGalleryUnionFilter & | operator<< ( const QGalleryUnionFilter & filter ) |
QGalleryUnionFilter & | operator= ( const QGalleryUnionFilter & filter ) |
QGalleryUnionFilter | operator|| ( const QGalleryUnionFilter & filter1, const QGalleryUnionFilter & filter2 ) |
The QGalleryUnionFilter class provides a filter which matches the union of two or more meta-data filters.
A union filter represents the union of a list of gallery filters. Filters can be added to an union using either the append(), prepend(), or insert() functions, or using the << operator.
Union filters can also combining two gallery filters with the && operator.
See also QGalleryFilter and QGalleryMetaDataFilter.
Constructs an empty union.
This function was introduced in Qt Mobility 1.1.
Constructs a union filter from a meta data filter.
This function was introduced in Qt Mobility 1.1.
Constructs a union filter from an intersection filter.
This function was introduced in Qt Mobility 1.1.
Constructs a copy of a union filter.
This function was introduced in Qt Mobility 1.1.
Destroys a union filter.
Appends a meta-data filter to a union.
This function was introduced in Qt Mobility 1.1.
Appends an intersection filter to a union.
This function was introduced in Qt Mobility 1.1.
Appends the contents of a union filter to a union.
This function was introduced in Qt Mobility 1.1.
Clears all the filters from a union.
This function was introduced in Qt Mobility 1.1.
Returns the number of filters in a union.
This function was introduced in Qt Mobility 1.1.
Returns the filters contained in a union.
This function was introduced in Qt Mobility 1.1.
Inserts a meta-data filter into a union at index.
This function was introduced in Qt Mobility 1.1.
Inserts an intersection filter into a union at index.
This function was introduced in Qt Mobility 1.1.
Inserts the contents of a union filter into a union at index.
This function was introduced in Qt Mobility 1.1.
Returns true if a union contains no filters, and false otherwise.
This function was introduced in Qt Mobility 1.1.
Returns true if the filter is a valid union filter.
An invalid filter can be obtained by casting a non QGalleryFilter::Union type QGalleryFilter to QGalleryUnionFilter.
This function was introduced in Qt Mobility 1.1.
Prepends a meta-data filter to a union.
This function was introduced in Qt Mobility 1.1.
Prepends an intersection filter to a union.
This function was introduced in Qt Mobility 1.1.
Prepends the contents of a union filter to a union.
This function was introduced in Qt Mobility 1.1.
Removes the filter at index from a union.
This function was introduced in Qt Mobility 1.1.
Replaces the filter at index in a union with a meta-data filter.
This function was introduced in Qt Mobility 1.1.
Replaces the filter at index in a union with an intersetion filter.
This function was introduced in Qt Mobility 1.1.
Appends a filter to a union.
This function was introduced in Qt Mobility 1.1.
Assigns the value of filter to another union filter.
This function was introduced in Qt Mobility 1.1.