QPlaceSearchResultclass is the base class for search results. 更多 …
继承者: QPlaceProposedSearchResult , QPlaceResult
A list of search results can be retrieved from the
QPlaceSearchReplyafter it has successfully completed the request. Common to all search results are thetitleandicon, which can be used to present the search result to the user.The intended usage is that depending on the
type, the search result can be converted to a more detailed subclass like so:if (result.type() == QPlaceSearchResult::PlaceResult) { QPlaceResult placeResult = result; qDebug() << placeResult.place().name(); qDebug() << placeResult.place().location().coordinate(); qDebug() << placeResult.distance(); }The implementation is handled in such a way that object slicing is not an issue. It is not expected that client applications or backend plugins instantiate a
QPlaceSearchResultdirectly, but rather client applications simply convert to search result subclasses and backend plugins only instantiate subclasses.另请参阅
QPlaceSearchResult
¶
QPlaceSearchResult(other)
- param other
Constructs a new search result.
构造副本为
other
PySide2.QtLocation.QPlaceSearchResult.
SearchResultType
¶
Defines the type of search result
|
常量 |
描述 |
|---|---|
|
QPlaceSearchResult.UnknownSearchResult |
The contents of the search result are unknown. |
|
QPlaceSearchResult.PlaceResult |
The search result contains a place. |
|
QPlaceSearchResult.ProposedSearchResult |
The search result contains a proposed search which may be relevant. |
PySide2.QtLocation.QPlaceSearchResult.
icon
(
)
¶
Returns an icon that can be used to represent the search result.
另请参阅
PySide2.QtLocation.QPlaceSearchResult.
__ne__
(
other
)
¶
other
–
QPlaceSearchResult
bool
返回 true 若
other
not equal to this search result, otherwise returns false.
PySide2.QtLocation.QPlaceSearchResult.
__eq__
(
other
)
¶
other
–
QPlaceSearchResult
bool
返回 true 若
other
is equal to this search result, otherwise returns false.
PySide2.QtLocation.QPlaceSearchResult.
setIcon
(
icon
)
¶
icon
–
QPlaceIcon
Sets the icon of the search result to
icon
.
另请参阅
PySide2.QtLocation.QPlaceSearchResult.
setTitle
(
title
)
¶
title – unicode
Sets the title of the search result to
title
.
另请参阅
PySide2.QtLocation.QPlaceSearchResult.
title
(
)
¶
unicode
Returns the title of the search result. This string can be used to display the search result to the user.
另请参阅
PySide2.QtLocation.QPlaceSearchResult.
type
(
)
¶
Returns the result type.