Skip to content

PlaceDetailsReply

Qt Base Class: QPlaceDetailsReply

Signature: QPlaceDetailsReply(self, parent: Optional[PySide6.QtCore.QObject] = None) -> None

Base classes

Name Children Inherits
PlaceReplyMixin
prettyqt.location.placereply
QPlaceDetailsReply
PySide6.QtLocation
QPlaceDetailsReply(self, parent: Optional[PySide6.QtCore.QObject] \= None) -> None

⋔ Inheritance diagram

🛈 DocStrings

Bases: PlaceReplyMixin, QPlaceDetailsReply

Manages a place details fetch operation started by an instance of QPlaceManager.

Source code in prettyqt\location\placedetailsreply.py
class PlaceDetailsReply(location.PlaceReplyMixin, location.QPlaceDetailsReply):
    """Manages a place details fetch operation started by an instance of QPlaceManager."""

    @classmethod
    def clone_from(cls, obj: location.QPlaceDetailsReply) -> Self:
        reply = cls(obj.parent())
        reply.setPlace(location.Place(obj.place()))
        return reply

    def get_place(self) -> location.Place:
        return location.Place(self.place())

⌗ Property table

Qt Property Type Doc
objectName QString