libosmscout
0.1
|
Model for searching objects in osmscout databases by pattern written by human. More...
#include <SearchLocationModel.h>
Public Types | |
enum | Roles { LabelRole = Qt::UserRole, TypeRole = Qt::UserRole +1, RegionRole = Qt::UserRole +2, LatRole = Qt::UserRole +3, LonRole = Qt::UserRole +4, DistanceRole = Qt::UserRole +5, BearingRole = Qt::UserRole +6, LocationObjectRole = Qt::UserRole +7, IndexedAdminRegionRole = Qt::UserRole +8, AltLangName = Qt::UserRole +9 } |
Public Slots | |
void | onLocationAdminRegionFinished (const osmscout::GeoCoord) |
void | onLocationAdminRegions (const osmscout::GeoCoord, QList< AdminRegionInfoRef >) |
void | onSearchFinished (const QString searchPattern, bool error) |
void | onSearchResult (const QString searchPattern, const QList< LocationEntry >) |
void | setPattern (const QString &pattern) |
Signals | |
void | countChanged (int) |
void | regionLookupRequested (osmscout::GeoCoord) |
void | SearchingChanged (bool) |
void | SearchRequested (const QString searchPattern, int limit, osmscout::GeoCoord searchCenter, AdminRegionInfoRef defaultRegion, osmscout::BreakerRef breaker) |
Public Member Functions | |
Q_INVOKABLE QVariant | data (const QModelIndex &index, int role) const override |
Q_INVOKABLE Qt::ItemFlags | flags (const QModelIndex &index) const override |
Q_INVOKABLE QObject * | get (int row) const |
QJSValue | getCompare () const |
int | GetDisplayLimit () const |
QJSValue | getEquals () const |
double | GetLat () const |
double | GetLon () const |
QString | getPattern () const |
int | GetResultLimit () const |
bool | isSearching () const |
LocationListModel (const LocationListModel &)=delete | |
LocationListModel (LocationListModel &&)=delete | |
LocationListModel (QObject *parent=nullptr) | |
LocationListModel & | operator= (const LocationListModel &)=delete |
LocationListModel & | operator= (LocationListModel &&)=delete |
QHash< int, QByteArray > | roleNames () const override |
Q_INVOKABLE int | rowCount (const QModelIndex &parent=QModelIndex()) const override |
void | setCompare (const QJSValue &fn) |
void | SetDisplayLimit (int limit) |
void | setEquals (const QJSValue &fn) |
void | SetLat (double lat) |
void | SetLon (double lon) |
void | SetResultLimit (int limit) |
~LocationListModel () override | |
Properties | |
QJSValue | compare |
JavaScript function used for sorting search results. More... | |
int | count |
Count of rows in model - count of search results. More... | |
int | displayLimit =100 |
Limit of model rows. More... | |
QJSValue | equals |
JavaScript function used for check location equality. More... | |
double | lat |
Lat and lon properties control where is logical search center. More... | |
double | lon |
QString | pattern |
Searched pattern. More... | |
int | resultLimit =2000 |
Limit of results for each db. More... | |
bool | searching =false |
True if searching is in progress. More... | |
Model for searching objects in osmscout databases by pattern written by human.
|
explicit |
References osmscout::OSMScoutQt::GetInstance(), osmscout::OSMScoutQt::GetSettings(), osmscout::LookupModule::locationAdminRegionFinished(), osmscout::LookupModule::locationAdminRegions(), osmscout::OSMScoutQt::MakeLookupModule(), osmscout::OSMScoutQt::MakeSearchModule(), onLocationAdminRegionFinished(), onLocationAdminRegions(), onSearchFinished(), onSearchResult(), regionLookupRequested(), osmscout::LookupModule::requestRegionLookup(), osmscout::SearchModule::searchFinished(), osmscout::SearchModule::SearchForLocations(), SearchRequested(), and osmscout::SearchModule::searchResult().
|
delete |
|
delete |
|
override |
|
signal |
Referenced by setPattern().
|
override |
References osmscout::LookupModule::AdminRegionNames(), AltLangName, osmscout::Distance::AsMeter(), BearingRole, DistanceRole, osmscout::GeoCoord::GetLat(), osmscout::GeoCoord::GetLon(), osmscout::GetSphericalBearingInitial(), osmscout::GetSphericalDistance(), osmscout::LookupModule::IndexedAdminRegionNames(), IndexedAdminRegionRole, INVALID_COORD, LabelRole, LatRole, LocationObjectRole, osmscout::Bearing::LongDisplayString(), LonRole, RegionRole, and TypeRole.
|
override |
QObject * osmscout::LocationListModel::get | ( | int | row | ) | const |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Referenced by onSearchFinished(), and setPattern().
|
slot |
References osmscout::Log::Debug(), osmscout::log, pattern, and setPattern().
Referenced by LocationListModel().
|
slot |
References osmscout::LookupModule::Town.
Referenced by LocationListModel().
|
slot |
References isSearching(), pattern, resultLimit, searching, SearchingChanged(), and SearchRequested().
Referenced by LocationListModel().
|
slot |
Adding huge batch of entries to model (more that 100) may take longer than ~16 ms and UI may become choppy. So, we enqueue all found entries to postponedEntries and start postponeTimer that adds entries by small chunks. Whole operation is splitted to multiple animation frames.
References pattern.
Referenced by LocationListModel().
|
delete |
|
delete |
|
signal |
Referenced by LocationListModel().
|
override |
References AltLangName, BearingRole, DistanceRole, IndexedAdminRegionRole, LabelRole, LatRole, LocationObjectRole, LonRole, RegionRole, and TypeRole.
|
override |
|
signal |
Referenced by onSearchFinished(), and setPattern().
|
signal |
Referenced by LocationListModel(), onSearchFinished(), and setPattern().
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
slot |
References countChanged(), osmscout::GeoCoord::GetDisplayText(), isSearching(), osmscout::GeoCoord::Parse(), pattern, resultLimit, searching, SearchingChanged(), and SearchRequested().
Referenced by onLocationAdminRegionFinished().
|
inline |
|
readwrite |
JavaScript function used for sorting search results.
Compare function will receive two locations arguments, A and B, where A < B (A should be shown before B), compare function should return number < 0.
For sorting results alphabetically:
|
read |
Count of rows in model - count of search results.
|
readwrite |
Limit of model rows.
|
readwrite |
JavaScript function used for check location equality.
It is possible that model will returns one physical location multiple times, for example one from location index and second from fulltext search, or two db segments for one real street...
Such results may be merged in model. Function will receive two locations (only locations with same label will be checked) and should return boolean result.
For example, merge near objects with same label and type:
|
readwrite |
Lat and lon properties control where is logical search center.
Local admin region is used as default region, databases used for search are sorted by distance from this point (local results should be available faster).
|
readwrite |
|
readwrite |
Searched pattern.
Referenced by onLocationAdminRegionFinished(), onSearchFinished(), onSearchResult(), and setPattern().
|
readwrite |
Limit of results for each db.
Referenced by onSearchFinished(), and setPattern().
|
read |
True if searching is in progress.
Referenced by onSearchFinished(), and setPattern().