QPlaceContentReply Class

The QPlaceContentReply class manages a content retrieval operation started by an instance of QPlaceManager. More...

Header: #include <QPlaceContentReply>
qmake: QT += location
Since: Qt Location 5.0
Inherits: QPlaceReply.

Public Functions

QPlaceContentReply(QObject * parent = 0)
virtual ~QPlaceContentReply()
QPlaceContent::Collection content() const
QPlaceContentRequest nextPageRequest() const
QPlaceContentRequest previousPageRequest() const
QPlaceContentRequest request() const
int totalCount() const

Reimplemented Public Functions

virtual QPlaceReply::Type type() const

Protected Functions

void setContent(const QPlaceContent::Collection & content)
void setNextPageRequest(const QPlaceContentRequest & next)
void setPreviousPageRequest(const QPlaceContentRequest & previous)
void setRequest(const QPlaceContentRequest & request)
void setTotalCount(int total)

Additional Inherited Members

Detailed Description

The QPlaceContentReply class manages a content retrieval operation started by an instance of QPlaceManager.

See Fetching Rich Content for an example on how to use a content reply.

See also QPlaceContentRequest and QPlaceManager.

Member Function Documentation

QPlaceContentReply::QPlaceContentReply(QObject * parent = 0)

Constructs a content reply with a given parent.

QPlaceContentReply::~QPlaceContentReply() [virtual]

Destroys the reply.

QPlaceContent::Collection QPlaceContentReply::content() const

Returns the collection of content retrieved.

See also setContent().

QPlaceContentRequest QPlaceContentReply::nextPageRequest() const

Returns a place content request that can be used to request the next batch of place content results.

See also setNextPageRequest().

QPlaceContentRequest QPlaceContentReply::previousPageRequest() const

Returns a place content request that can be used to request the previous batch of place content results.

See also setPreviousPageRequest().

QPlaceContentRequest QPlaceContentReply::request() const

Returns the content request that was used to generate this reply.

See also setRequest().

void QPlaceContentReply::setContent(const QPlaceContent::Collection & content) [protected]

Sets the content of the reply.

See also content().

void QPlaceContentReply::setNextPageRequest(const QPlaceContentRequest & next) [protected]

Sets the place content request that can be used to request the next batch of place content results to next.

See also nextPageRequest().

void QPlaceContentReply::setPreviousPageRequest(const QPlaceContentRequest & previous) [protected]

Sets the place content request that can be used to request the previous batch of place content results to previous.

See also previousPageRequest().

void QPlaceContentReply::setRequest(const QPlaceContentRequest & request) [protected]

Sets the content request used to generate this this reply.

See also request().

void QPlaceContentReply::setTotalCount(int total) [protected]

Sets the total number of content objects for a place.

See also totalCount().

int QPlaceContentReply::totalCount() const

Returns the total number of content objects for a place. If the total number of content objects cannot be counted, a value of -1 is returned. This count only refers to the total count for a single content type, that is, the content type that was specified when content was requested with the QPlaceManager.

See also setTotalCount().

QPlaceReply::Type QPlaceContentReply::type() const [virtual]

Reimplemented from QPlaceReply::type().

Returns the type of reply.