QPlaceReview Class

QPlaceReview class represents a review of a place. 更多...

头: #include <QPlaceReview>
qmake: QT += location
Since: Qt 5.6
继承: QPlaceContent

公共函数

QPlaceReview ()
QPlaceReview (const QPlaceContent & other )
virtual ~QPlaceReview ()
QDateTime dateTime () const
QString language () const
qreal rating () const
QString reviewId () const
void setDateTime (const QDateTime & dateTime )
void setLanguage (const QString & language )
void setRating (qreal rating )
void setReviewId (const QString & identifier )
void setText (const QString & text )
void setTitle (const QString & title )
QString text () const
QString title () const

详细描述

QPlaceReview class represents a review of a place.

每个 QPlaceReview has a number of properties such as a title, text, date of submission and rating; in addition to those properties inherited from QPlaceContent .

Note: The Places API only supports reviews as 'retrieve-only' objects. Submitting reviews to a provider is not a supported use case.

另请参阅 QPlaceContent and QPlaceEditorial .

成员函数文档编制

QPlaceReview:: QPlaceReview ()

Constructs a new review object.

QPlaceReview:: QPlaceReview (const QPlaceContent & other )

构造副本为 other , otherwise constructs a default review object.

[virtual] QPlaceReview:: ~QPlaceReview ()

Destroys the review.

QDateTime QPlaceReview:: dateTime () const

Returns the date and time that the review was submitted.

另请参阅 setDateTime ().

QString QPlaceReview:: language () const

Returns the language of the review. Typically this would be a language code in the 2 letter ISO 639-1 format.

另请参阅 setLanguage ().

qreal QPlaceReview:: rating () const

Returns this review's rating of the place.

另请参阅 setRating ().

QString QPlaceReview:: reviewId () const

Returns the review's identifier.

另请参阅 setReviewId ().

void QPlaceReview:: setDateTime (const QDateTime & dateTime )

Sets the date and time that the review was submitted to dateTime .

另请参阅 dateTime ().

void QPlaceReview:: setLanguage (const QString & language )

设置 language of the review. Typically this would be a language code in the 2 letter ISO 639-1 format.

另请参阅 language ().

void QPlaceReview:: setRating ( qreal rating )

Sets the review's rating of the place.

另请参阅 rating ().

void QPlaceReview:: setReviewId (const QString & identifier )

设置 identifier of the review.

另请参阅 reviewId ().

void QPlaceReview:: setText (const QString & text )

text of the review.

另请参阅 text ().

void QPlaceReview:: setTitle (const QString & title )

设置 title of the review.

另请参阅 title ().

QString QPlaceReview:: text () const

Returns a textual description of the place.

Depending on the provider the text could be rich (HTML based) or plain text.

另请参阅 setText ().

QString QPlaceReview:: title () const

Returns the title of the review.

另请参阅 setTitle ().