Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

QContentSortCriteria Class Reference
[QtBaseModule]

The QContentSortCriteria class defines the attributes and order a QContentSet should be sorted by. More...

    #include <QContentSortCriteria>

Public Types

  • enum Attribute { Name, MimeType, Property, FileName, LastUpdated }

Public Functions

  • QContentSortCriteria ( Attribute attribute, Qt::SortOrder order = Qt::AscendingOrder )
  • QContentSortCriteria ( Attribute attribute, const QString & scope, Qt::SortOrder order = Qt::AscendingOrder )
  • QContentSortCriteria ( QContent::Property property, Qt::SortOrder order = Qt::AscendingOrder )
  • QContentSortCriteria ( const QContentSortCriteria & other )
  • void addSort ( Attribute attribute, Qt::SortOrder order = Qt::AscendingOrder )
  • void addSort ( Attribute attribute, const QString & scope, Qt::SortOrder order = Qt::AscendingOrder )
  • void addSort ( QContent::Property property, Qt::SortOrder order = Qt::AscendingOrder )
  • Attribute attribute ( int index ) const
  • void clear ()
  • int compare ( const QContent & left, const QContent & right ) const
  • bool greaterThan ( const QContent & left, const QContent & right ) const
  • bool lessThan ( const QContent & left, const QContent & right ) const
  • Qt::SortOrder order ( int index ) const
  • QString scope ( int index ) const
  • int sortCount () const
  • bool operator!= ( const QContentSortCriteria & other ) const
  • QContentSortCriteria & operator= ( const QContentSortCriteria & other )
  • bool operator== ( const QContentSortCriteria & other ) const

Detailed Description

The QContentSortCriteria class defines the attributes and order a QContentSet should be sorted by.

The sorting criteria is an ordered list of QContent attributes and sort orders which can be used to compare two QContents. When a comparison is made between QContents each attribute in the sorting criteria is compared in order until one that is not equal is found and the result of that comparison is returned. If all comparisons are equal the sorting criteria will fall back to the user visible name, and then the content id in ascending order to make a comparison. A comparison with a null QContent will always return the null QContent as the lesser one.

When sorting by a property it is also necessary to provide an attribute scope to specify the group and key of the property that are sorted on. The scope should be a string of the form [group]/[key]. Alternatively if the property belongs to the QContent::Property enumeration that may be used instead of an attribute.

Using the sort criteria a content set containing music sorted by artist, album, and track number could be created as below:

    QContentSet music;

    music.setCriteria( QContentFilter::mimeType( "audio/mpeg" ) );

    QContentSortCriteria sort;

    sort.addSort( QContentSortCriteria::Property, "none/Artist" );
    sort.addSort( QContentSortCriteria::Property, "none/Album" );
    sort.addSort( QContentSortCriteria::Property, "none/Track" );

    music.setSortCriteria( sort );

Member Type Documentation

enum QContentSortCriteria::Attribute

The Attribute enumeration defines an attribute of a QContent that a comparison should be made on.

ConstantValueDescription
QContentSortCriteria::Name0The user visible name of the content.
QContentSortCriteria::MimeType1The type of the content.
QContentSortCriteria::Property2A property of the content. The group and key for the property must be supplied as an scope of the sort as a string of the form [group]/[key]
QContentSortCriteria::FileName3The file name of the content.
QContentSortCriteria::LastUpdated4The time and date the content record was last updated.


Member Function Documentation

QContentSortCriteria::QContentSortCriteria ()

Constructs a null sort criteria.

QContentSortCriteria::QContentSortCriteria ( Attribute attribute, Qt::SortOrder order = Qt::AscendingOrder )

Constructs a sort criteria that sorts a set by an attribute in the given sort order.

QContentSortCriteria::QContentSortCriteria ( Attribute attribute, const QString & scope, Qt::SortOrder order = Qt::AscendingOrder )

Constructs a sort criteria that sorts a set by an attribute with a scope in the given sort order.

QContentSortCriteria::QContentSortCriteria ( QContent::Property property, Qt::SortOrder order = Qt::AscendingOrder )

Constructs a sort criteria that sorts a set by property in the given sort order.

QContentSortCriteria::QContentSortCriteria ( const QContentSortCriteria & other )

Constructs a copy of the sort criteria other.

QContentSortCriteria::~QContentSortCriteria ()

Destroys a sort criteria.

void QContentSortCriteria::addSort ( Attribute attribute, Qt::SortOrder order = Qt::AscendingOrder )

Adds an attribute to sort by in the given order to the end of the sort criteria.

void QContentSortCriteria::addSort ( Attribute attribute, const QString & scope, Qt::SortOrder order = Qt::AscendingOrder )

This is an overloaded member function, provided for convenience.

Adds an attribute with a scope to sort by in the given order to the end of the sort criteria.

void QContentSortCriteria::addSort ( QContent::Property property, Qt::SortOrder order = Qt::AscendingOrder )

This is an overloaded member function, provided for convenience.

Adds a property to sort by in the given order to the end of the sort criteria.

Attribute QContentSortCriteria::attribute ( int index ) const

Returns the attribute sorted by at the given index.

void QContentSortCriteria::clear ()

Removes all sorts from the sorting criteria.

int QContentSortCriteria::compare ( const QContent & left, const QContent & right ) const

Compares the left and right contents using the sorting criteria and returns a negative integer if the left is less than the right, a positive integer if the left is greater than the right, and zero if they are equivalent.

bool QContentSortCriteria::greaterThan ( const QContent & left, const QContent & right ) const

Compares the left and right contents using the sorting criteria and returns true if the left is greater than the right and false otherwise.

bool QContentSortCriteria::lessThan ( const QContent & left, const QContent & right ) const

Compares the left and right contents using the sorting criteria and returns true if the left is less than the right and false otherwise.

Qt::SortOrder QContentSortCriteria::order ( int index ) const

Returns the order the attribute at the given index is sorted by.

QString QContentSortCriteria::scope ( int index ) const

Returns the scope of the attribute sorted by at the given index.

int QContentSortCriteria::sortCount () const

Returns the number of attributes the sorting criteria sorts on.

bool QContentSortCriteria::operator!= ( const QContentSortCriteria & other ) const

Compares other to a sort criteria. Returns true if it is not equal; false otherwise.

QContentSortCriteria & QContentSortCriteria::operator= ( const QContentSortCriteria & other )

Assigns the value of other to a sort criteria.

bool QContentSortCriteria::operator== ( const QContentSortCriteria & other ) const

Compares other to a sort criteria. Returns true if it is equal; false otherwise.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 85
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 19
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
Page suivante

Le Qt Quarterly au hasard

Logo

Requête de données génériques avec QtXmlPatterns et XQuery

Qt Quarterly est la revue trimestrielle proposée par Nokia et à destination des développeurs Qt. Ces articles d'une grande qualité technique sont rédigés par des experts Qt. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt qtextended4.4
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web