QPlaceContent¶
The
QPlaceContent
class serves as the base class for rich content types. More…
Inherited by: QPlaceEditorial, QPlaceImage, QPlaceReview
Synopsis¶
Functions¶
def
__eq__
(other)def
__ne__
(other)def
attribution
()def
setAttribution
(attribution)def
setSupplier
(supplier)def
setUser
(user)def
supplier
()def
type
()def
user
()
Detailed Description¶
Rich content such as
images
,reviews
andeditorials
inherit from theQPlaceContent
class which contains common properties such as an attribution string and content contributor, which may take the form of auser
and/orsupplier
. It is possible that a user from a supplier is contributing content, hence both fields could be filled in simultaneously.Note
Some providers may require that the attribution string be displayed to the user whenever a piece of content is viewed.
Conversion between
QPlaceContent
and it’s subclasses can be easily performed without casting. Due to the way it has been implemented, object slicing is not an issue, the following code is valid:QPlaceImage image; image.setUrl(QUrl("www.example.com")); QPlaceContent content = image; QPlaceImage image2; image2 = content; qDebug() << image2.url(); //image2.url() == "www.example.com"The rich content of a place is typically made available as paginated items. The ability to convert between
QPlaceContent
and it’s subclasses means that code which handles the mechanics of paging can be easily shared for each of the sub types.At present the
QPlaceContent
class is not extensible by 3rd parties.Note: The Places API considers content objects to be ‘retrieve-only’ objects. Submission of content to a provider is not a supported use case.
See also
- class PySide2.QtLocation.QPlaceContent¶
PySide2.QtLocation.QPlaceContent(other)
- param other:
Constructs an default content object which has no type.
Constructs a new copy of
other
.
- PySide2.QtLocation.QPlaceContent.Type¶
Defines the type of content.
Constant
Description
QPlaceContent.NoType
The content object is default constructed, any other content type may be assigned to this content object
QPlaceContent.ImageType
The content object is an image
QPlaceContent.ReviewType
The content object is a review
QPlaceContent.EditorialType
The content object is an editorial
QPlaceContent.CustomType
The content object is of a custom type
- PySide2.QtLocation.QPlaceContent.attribution()¶
- Return type:
str
Returns a rich text attribution string.
Note : Some providers may require that the attribution of a particular content item always be displayed when the content item is shown.
See also
- PySide2.QtLocation.QPlaceContent.__ne__(other)¶
- Parameters:
other –
PySide2.QtLocation.QPlaceContent
- Return type:
bool
Returns true if this content object is not equivalent to
other
, otherwise returns false.
- PySide2.QtLocation.QPlaceContent.__eq__(other)¶
- Parameters:
other –
PySide2.QtLocation.QPlaceContent
- Return type:
bool
Returns true if this content object is equivalent to
other
, otherwise returns false.
- PySide2.QtLocation.QPlaceContent.setAttribution(attribution)¶
- Parameters:
attribution – str
Sets a rich text
attribution
string for this content item.See also
- PySide2.QtLocation.QPlaceContent.setSupplier(supplier)¶
- Parameters:
supplier –
PySide2.QtLocation.QPlaceSupplier
Sets the
supplier
of the content.See also
- PySide2.QtLocation.QPlaceContent.setUser(user)¶
- Parameters:
Sets the
user
who contributed this content.See also
- PySide2.QtLocation.QPlaceContent.supplier()¶
- Return type:
Returns the supplier who contributed this content.
See also
- PySide2.QtLocation.QPlaceContent.user()¶
- Return type:
Returns the user who contributed this content.
See also
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.