IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QPlaceRatings Class

The QPlaceRatings class holds rating information about a place.

This class was introduced in Qt 5.6.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QPlaceRatings Class

  • Header: QPlaceRatings

  • Since: Qt 5.6

  • qmake: QT += location

  • Group: QPlaceRatings is part of QtLocation-places, QtLocation-places-data

Detailed Description

Rating information is used to describe how good a place is conceived to be. Typically this information is visualized as a number of stars. The average() function returns an aggregated ratings value out of a possible maximum as given by the maximum() function.

 
Sélectionnez
qDebug() << QString("This place rated ") + place.ratings().average()
            + "out of " + place.ratings().maximum() + "stars";

Member Function Documentation

 

QPlaceRatings::QPlaceRatings()

Constructs a new ratings object.

QPlaceRatings::QPlaceRatings(const QPlaceRatings &other)

Constructs a copy of other.

QPlaceRatings::~QPlaceRatings()

Destroys the ratings object.

qreal QPlaceRatings::average() const

Returns the average value of individual ratings.

See Also

See also setAverage()

int QPlaceRatings::count() const

Returns the total number of individual ratings.

See Also

See also setCount()

bool QPlaceRatings::isEmpty() const

Returns true if all fields of the place ratings are 0; otherwise returns false.

qreal QPlaceRatings::maximum() const

Returns the maximum possible rating value.

See Also

See also setMaximum()

void QPlaceRatings::setAverage(qreal average)

Sets the average value of the ratings.

See Also

See also average()

void QPlaceRatings::setCount(int count)

Sets the total number of individual ratings to count.

See Also

See also count()

void QPlaceRatings::setMaximum(qreal max)

Sets the maximum possible rating value to max.

See Also

See also maximum()

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

Returns true if other is not equal to this ratings object, otherwise returns false.

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

Assigns other to this ratings object and returns a reference to this ratings object.

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

Returns true if other is equal to this ratings object, otherwise returns false.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+