The QPlaceManagerEngine class provides an interface for implementers of QGeoServiceProvider plugins who want to provide access to place functionality. 更多...
头: | #include <QPlaceManagerEngine> |
qmake: | QT += location |
Since: | Qt 5.6 |
继承: | QObject |
该类在 Qt 5.6 引入。
QPlaceManagerEngine (const QVariantMap & 参数 , QObject * parent = nullptr) | |
virtual | ~QPlaceManagerEngine () |
virtual QPlaceCategory | category (const QString & categoryId ) const |
virtual QList<QPlaceCategory> | childCategories (const QString & parentId ) const |
virtual QStringList | childCategoryIds (const QString & categoryId ) const |
virtual QPlace | compatiblePlace (const QPlace & original ) const |
virtual QUrl | constructIconUrl (const QPlaceIcon & icon , const QSize & size ) const |
virtual QPlaceContentReply * | getPlaceContent (const QPlaceContentRequest & request ) |
virtual QPlaceDetailsReply * | getPlaceDetails (const QString & placeId ) |
virtual QPlaceReply * | initializeCategories () |
virtual QList<QLocale> | locales () const |
QString | managerName () const |
int | managerVersion () const |
virtual QPlaceMatchReply * | matchingPlaces (const QPlaceMatchRequest & request ) |
virtual QString | parentCategoryId (const QString & categoryId ) const |
virtual QPlaceIdReply * | removeCategory (const QString & categoryId ) |
virtual QPlaceIdReply * | removePlace (const QString & placeId ) |
virtual QPlaceIdReply * | saveCategory (const QPlaceCategory & category , const QString & parentId ) |
virtual QPlaceIdReply * | savePlace (const QPlace & place ) |
virtual QPlaceSearchReply * | search (const QPlaceSearchRequest & request ) |
virtual QPlaceSearchSuggestionReply * | searchSuggestions (const QPlaceSearchRequest & request ) |
virtual void | setLocales (const QList<QLocale> & locales ) |
void | categoryAdded (const QPlaceCategory & category , const QString & parentId ) |
void | categoryRemoved (const QString & categoryId , const QString & parentId ) |
void | categoryUpdated (const QPlaceCategory & category , const QString & parentId ) |
void | dataChanged () |
void | error (QPlaceReply * reply , QPlaceReply::Error error , const QString & errorString = QString()) |
void | finished (QPlaceReply * reply ) |
void | placeAdded (const QString & placeId ) |
void | placeRemoved (const QString & placeId ) |
void | placeUpdated (const QString & placeId ) |
QPlaceManager * | manager () const |
Application developers need not concern themselves with the QPlaceManagerEngine. Backend implementers however will need to derive from QPlaceManagerEngine and provide implementations for the abstract virtual functions.
For more information on writing a backend see the Places Backend 文档编制。
另请参阅 QPlaceManager .
Constructs a new engine with the specified parent ,使用 参数 to pass any implementation specific data to the engine.
[signal]
void
QPlaceManagerEngine::
categoryAdded
(const
QPlaceCategory
&
category
, const
QString
&
parentId
)
This signal is emitted if a category has been added to the manager engine's datastore. The parent of the category is specified by parentId .
This signal is only emitted by manager engines that support the QPlaceManager::NotificationsFeature.
另请参阅 dataChanged ().
[signal]
void
QPlaceManagerEngine::
categoryRemoved
(const
QString
&
categoryId
, const
QString
&
parentId
)
This signal is emitted when the category corresponding to categoryId has been removed from the manager engine's datastore. The parent of the removed category is specified by parentId .
This signal is only emitted by manager engines that support the QPlaceManager::NotificationsFeature.
另请参阅 dataChanged ().
[signal]
void
QPlaceManagerEngine::
categoryUpdated
(const
QPlaceCategory
&
category
, const
QString
&
parentId
)
This signal is emitted if a category has been modified in the manager engine's datastore. The parent of the modified category is specified by parentId .
This signal is only emitted by manager engines that support the QPlaceManager::NotificationsFeature.
另请参阅 dataChanged ().
[signal]
void
QPlaceManagerEngine::
dataChanged
()
*
This signal is emitted by the engine if there are large scale changes to its underlying datastore and the engine considers these changes radical enough to require clients to reload all data.
If the signal is emitted, no other signals will be emitted for the associated changes.
[signal]
void
QPlaceManagerEngine::
error
(
QPlaceReply
*
reply
,
QPlaceReply::Error
error
, const
QString
&
errorString
= QString())
This signal is emitted when an error has been detected in the processing of reply 。 QPlaceManager::finished () signal will probably follow.
The error will be described by the error code error 。若 errorString is not empty it will contain a textual description of the error meant for developers and not end users.
This signal and QPlaceReply::error () will be emitted at the same time.
注意: 不要删除 reply 对象在连接到此信号的槽中。使用 deleteLater () 代替。
[signal]
void
QPlaceManagerEngine::
finished
(
QPlaceReply
*
reply
)
此信号发射当 reply has finished processing.
If reply-> error () 等于 QPlaceReply::NoError then the processing finished successfully.
This signal and QPlaceReply::finished () will be emitted at the same time.
注意: 不要删除 reply 对象在连接到此信号的槽中。使用 deleteLater () 代替。
[signal]
void
QPlaceManagerEngine::
placeAdded
(const
QString
&
placeId
)
This signal is emitted if a place has been added to the manager engine's datastore. The particular added place is specified by placeId .
This signal is only emitted by manager engines that support the QPlaceManager::NotificationsFeature.
另请参阅 dataChanged ().
[signal]
void
QPlaceManagerEngine::
placeRemoved
(const
QString
&
placeId
)
This signal is emitted if a place has been removed from the manager engine's datastore. The particular place that has been removed is specified by placeId .
This signal is only emitted by manager engines that support the QPlaceManager::NotificationsFeature.
另请参阅 dataChanged ().
[signal]
void
QPlaceManagerEngine::
placeUpdated
(const
QString
&
placeId
)
This signal is emitted if a place has been modified in the manager engine's datastore. The particular modified place is specified by placeId .
This signal is only emitted by manager engines that support the QPlaceManager::NotificationsFeature.
另请参阅 dataChanged ().
[虚拟]
QPlaceManagerEngine::
~QPlaceManagerEngine
()
Destroys this engine.
[虚拟]
QPlaceCategory
QPlaceManagerEngine::
category
(const
QString
&
categoryId
) const
Returns the category corresponding to the given categoryId .
[虚拟]
QList
<
QPlaceCategory
> QPlaceManagerEngine::
childCategories
(const
QString
&
parentId
) const
Returns a list of categories that are children of the category corresponding to parentId 。若 parentId is empty, all the top level categories are returned.
[虚拟]
QStringList
QPlaceManagerEngine::
childCategoryIds
(const
QString
&
categoryId
) const
Returns the child category identifiers of the category corresponding to categoryId 。若 categoryId is empty then all top level category identifiers are returned.
[虚拟]
QPlace
QPlaceManagerEngine::
compatiblePlace
(const
QPlace
&
original
) const
Returns a pruned or modified version of the original place which is suitable to be saved by the manager engine.
Only place details that are supported by this manager is present in the modified version. Manager specific data such as the place id, is not copied over from the original .
[虚拟]
QUrl
QPlaceManagerEngine::
constructIconUrl
(const
QPlaceIcon
&
icon
, const
QSize
&
size
) const
QUrl QPlaceManagerEngine::constructIconUrl(const QPlaceIcon &icon, const QSize &size)
Constructs an icon url from a given icon , size . The URL of the icon image that most closely matches the given parameters is returned.
[虚拟]
QPlaceContentReply
*QPlaceManagerEngine::
getPlaceContent
(const
QPlaceContentRequest
&
request
)
Retrieves content for a place according to the parameters specified in request .
[虚拟]
QPlaceDetailsReply
*QPlaceManagerEngine::
getPlaceDetails
(const
QString
&
placeId
)
Retrieves details of place corresponding to the given placeId .
[虚拟]
QPlaceReply
*QPlaceManagerEngine::
initializeCategories
()
Initializes the categories of the manager engine.
[虚拟]
QList
<
QLocale
> QPlaceManagerEngine::
locales
() const
Returns a list of preferred locales. The locales are used as a hint to the manager engine for what language place and category details should be returned in.
If the first specified locale cannot be accommodated, the manager engine falls back to the next and so forth.
Support for locales may vary from provider to provider. For those that do support it, by default, the global default locale will be used. If the manager engine has no locales assigned to it, it implicitly uses the global default locale. For engines that do not support locales, the locale list is always empty.
另请参阅 setLocales ().
[protected]
QPlaceManager
*QPlaceManagerEngine::
manager
() const
Returns the manager instance used to create this engine.
Returns the name which this engine implementation uses to distinguish itself from the implementations provided by other plugins.
The manager name is automatically set to be the same as the QGeoServiceProviderFactory::providerName().
Returns the version of this engine implementation.
The manager version is automatically set to be the same as the QGeoServiceProviderFactory::providerVersion().
[虚拟]
QPlaceMatchReply
*QPlaceManagerEngine::
matchingPlaces
(const
QPlaceMatchRequest
&
request
)
Returns a reply which contains a list of places which correspond/match those specified in request .
[虚拟]
QString
QPlaceManagerEngine::
parentCategoryId
(const
QString
&
categoryId
) const
Returns the parent category identifier of the category corresponding to categoryId .
[虚拟]
QPlaceIdReply
*QPlaceManagerEngine::
removeCategory
(const
QString
&
categoryId
)
Removes the category corresponding to categoryId from the manager engine's datastore.
[虚拟]
QPlaceIdReply
*QPlaceManagerEngine::
removePlace
(const
QString
&
placeId
)
Removes the place corresponding to placeId from the manager engine's datastore.
[虚拟]
QPlaceIdReply
*QPlaceManagerEngine::
saveCategory
(const
QPlaceCategory
&
category
, const
QString
&
parentId
)
Saves a category that is a child of the category specified by parentId . An empty parentId means category is saved as a top level category.
[虚拟]
QPlaceIdReply
*QPlaceManagerEngine::
savePlace
(const
QPlace
&
place
)
Saves a specified place to the manager engine's datastore.
[虚拟]
QPlaceSearchReply
*QPlaceManagerEngine::
search
(const
QPlaceSearchRequest
&
request
)
Searches for places according to the parameters specified in request .
[虚拟]
QPlaceSearchSuggestionReply
*QPlaceManagerEngine::
searchSuggestions
(const
QPlaceSearchRequest
&
request
)
Requests a set of search term suggestions according to the parameters specified in request .
[虚拟]
void
QPlaceManagerEngine::
setLocales
(const
QList
<
QLocale
> &
locales
)
Set the list of preferred locales .
另请参阅 locales ().