libosmscout  0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules
osmscout::OSMScoutQt Class Reference

#include <OSMScoutQt.h>

+ Inheritance diagram for osmscout::OSMScoutQt:

Public Slots

void threadFinished ()
 

Public Member Functions

QString GetCacheLocation () const
 
DBThreadRef GetDBThread () const
 
QString GetIconDirectory () const
 
MapDownloaderRef GetMapDownloader ()
 
MapManagerRef GetMapManager () const
 
size_t GetOnlineTileCacheSize () const
 
SettingsRef GetSettings () const
 
QString GetUserAgent () const
 
VoiceManagerRef GetVoiceManager ()
 
ElevationModuleMakeElevationModule ()
 
IconLookupMakeIconLookup ()
 
LookupModuleMakeLookupModule ()
 
MapRendererMakeMapRenderer (RenderingType type)
 
NavigationModuleMakeNavigation ()
 
POILookupModule * MakePOILookupModule ()
 
RouterMakeRouter ()
 
SearchModuleMakeSearchModule ()
 
StyleModuleMakeStyleModule ()
 
QThread * makeThread (QString name)
 Create new background thread with given name. More...
 
bool waitForReleasingResources (unsigned long mSleep, unsigned long maxCount) const
 Wait for releasing of dbThread shared pointer from other threads and terminating all created service threads. More...
 
 ~OSMScoutQt () override
 

Static Public Member Functions

static void FreeInstance ()
 
static OSMScoutQtGetInstance ()
 
static OSMScoutQtBuilder NewInstance ()
 
static void RegisterQmlTypes (const char *uri="net.sf.libosmscout.map", int versionMajor=1, int versionMinor=0)
 

Friends

class OSMScoutQtBuilder
 

Detailed Description

Singleton that provides access to high level modules of OSMScout library. On application start should be registered Qt types by static method RegisterQmlTypes(). OSMScoutQt instance may be created by NewInstance() and accessed by GetInstance() then. To free resources should be called FreeInstance() before program exits.

Example:

.WithStyleSheetDirectory(stylesheetDir)
.WithStyleSheetFile(stylesheetFileName)
.WithIconDirectory(iconDirectory)
.WithMapLookupDirectories(mapLookupDirectories)
.AddOnlineTileProviders(":/resources/online-tile-providers.json")
.AddMapProviders(":/resources/map-providers.json")
.Init();
if (!success){
// terminate program, or just report error - something is really bad
}
// now it is possible to access OSMScoutQt by OSMScoutQt::GetInstance()

Constructor & Destructor Documentation

◆ ~OSMScoutQt()

osmscout::OSMScoutQt::~OSMScoutQt ( )
override

Member Function Documentation

◆ FreeInstance()

void osmscout::OSMScoutQt::FreeInstance ( )
static

◆ GetCacheLocation()

QString osmscout::OSMScoutQt::GetCacheLocation ( ) const

◆ GetDBThread()

◆ GetIconDirectory()

QString osmscout::OSMScoutQt::GetIconDirectory ( ) const

◆ GetInstance()

OSMScoutQt & osmscout::OSMScoutQt::GetInstance ( )
static

References osmscout::osmScoutInstance.

Referenced by osmscout::AvailableMapsModel::AvailableMapsModel(), osmscout::AvailableVoicesModel::AvailableVoicesModel(), osmscout::OsmTileDownloader::download(), osmscout::ElevationChartWidget::ElevationChartWidget(), osmscout::MapWidget::firstStylesheetErrorColumn(), osmscout::MapWidget::firstStylesheetErrorDescription(), osmscout::MapWidget::firstStylesheetErrorLine(), osmscout::MapDownloadsModel::getLookupDirectories(), osmscout::MapStyleModel::getStyle(), osmscout::MapWidget::GetStylesheetFilename(), osmscout::TileLoaderThread::init(), osmscout::InstalledMapsModel::InstalledMapsModel(), osmscout::InstalledVoicesModel::InstalledVoicesModel(), osmscout::MapWidget::isDatabaseLoaded(), osmscout::MapWidget::isInDatabaseBoundingBox(), osmscout::LocationInfoModel::LocationInfoModel(), osmscout::LocationListModel::LocationListModel(), osmscout::MapDownloadsModel::MapDownloadsModel(), osmscout::MapObjectInfoModel::MapObjectInfoModel(), osmscout::MapStyleModel::MapStyleModel(), osmscout::MapWidget::MapWidget(), osmscout::NavigationModel::NavigationModel(), osmscout::NearPOIModel::NearPOIModel(), osmscout::OnlineTileProviderModel::OnlineTileProviderModel(), osmscout::QmlSettings::QmlSettings(), osmscout::MapWidget::recenter(), osmscout::AvailableVoicesModel::reload(), osmscout::VoiceManager::reload(), osmscout::AvailableMapsModel::reload(), osmscout::MapWidget::reloadStyle(), osmscout::MapWidget::reloadTmpStyle(), osmscout::RoutingListModel::RoutingListModel(), osmscout::SearchModule::SearchForLocations(), osmscout::StyleFlagsModel::setFlag(), osmscout::MapWidget::setInteractiveIcons(), osmscout::MapStyleModel::setStyle(), osmscout::FileDownloader::startDownload(), osmscout::StyleFlagsModel::StyleFlagsModel(), osmscout::MapDownloadsModel::suggestedDirectory(), osmscout::TiledMapOverlay::TiledMapOverlay(), osmscout::MapWidget::toggleDaylight(), and osmscout::VoiceManager::VoiceManager().

◆ GetMapDownloader()

MapDownloaderRef osmscout::OSMScoutQt::GetMapDownloader ( )

◆ GetMapManager()

◆ GetOnlineTileCacheSize()

size_t osmscout::OSMScoutQt::GetOnlineTileCacheSize ( ) const

◆ GetSettings()

◆ GetUserAgent()

QString osmscout::OSMScoutQt::GetUserAgent ( ) const

◆ GetVoiceManager()

◆ MakeElevationModule()

ElevationModule * osmscout::OSMScoutQt::MakeElevationModule ( )

◆ MakeIconLookup()

IconLookup * osmscout::OSMScoutQt::MakeIconLookup ( )

◆ MakeLookupModule()

◆ MakeMapRenderer()

MapRenderer * osmscout::OSMScoutQt::MakeMapRenderer ( RenderingType  type)

◆ MakeNavigation()

NavigationModule * osmscout::OSMScoutQt::MakeNavigation ( )

◆ MakePOILookupModule()

POILookupModule * osmscout::OSMScoutQt::MakePOILookupModule ( )

◆ MakeRouter()

Router * osmscout::OSMScoutQt::MakeRouter ( )

◆ MakeSearchModule()

SearchModule * osmscout::OSMScoutQt::MakeSearchModule ( )

◆ MakeStyleModule()

StyleModule * osmscout::OSMScoutQt::MakeStyleModule ( )

◆ makeThread()

QThread * osmscout::OSMScoutQt::makeThread ( QString  name)

Create new background thread with given name.

Usage:

QThread *t=OSMScoutQt::GetInstance().makeThread("OverlayTileLoader"); Service *service=new Service(t); service->moveToThread(thread); connect(thread, SIGNAL(started()), service, SLOT(init())); thread->start();

Service should stop thread in own destructor: QThread::stop()

Parameters
name
Returns
thread

References threadFinished().

Referenced by MakeElevationModule(), MakeIconLookup(), MakeLookupModule(), MakeMapRenderer(), MakeNavigation(), MakeRouter(), MakeSearchModule(), MakeStyleModule(), and osmscout::TiledMapOverlay::TiledMapOverlay().

◆ NewInstance()

OSMScoutQtBuilder osmscout::OSMScoutQt::NewInstance ( )
static

References OSMScoutQtBuilder.

◆ RegisterQmlTypes()

void osmscout::OSMScoutQt::RegisterQmlTypes ( const char *  uri = "net.sf.libosmscout.map",
int  versionMajor = 1,
int  versionMinor = 0 
)
static

◆ threadFinished

void osmscout::OSMScoutQt::threadFinished ( )
slot

Referenced by makeThread().

◆ waitForReleasingResources()

bool osmscout::OSMScoutQt::waitForReleasingResources ( unsigned long  mSleep,
unsigned long  maxCount 
) const

Wait for releasing of dbThread shared pointer from other threads and terminating all created service threads.

This waiting has configurable timeout, up to [mSleep * maxCount] milliseconds.

Note that on success, this method don't guarantee that dbThread is not used from another thread, see std::shared_ptr::use_count() documentation.

Parameters
mSleepwait period between checks (in milliseconds)
maxCountmaximul count
Returns
true if dbThread is holding just from current thread (dbThread.use_count() == 1) and all previously created service threads are terminated.

Referenced by FreeInstance().

Friends And Related Function Documentation

◆ OSMScoutQtBuilder

friend class OSMScoutQtBuilder
friend

Referenced by NewInstance().


The documentation for this class was generated from the following files:
osmscout::OSMScoutQtBuilder::Init
bool Init()
Definition: OSMScoutQt.cpp:85
osmscout::OSMScoutQtBuilder::AddMapProviders
OSMScoutQtBuilder & AddMapProviders(const QString &mapProviders)
Definition: OSMScoutQt.h:101
osmscout::OSMScoutQtBuilder::WithIconDirectory
OSMScoutQtBuilder & WithIconDirectory(const QString &iconDirectory)
Definition: OSMScoutQt.h:155
osmscout::OSMScoutQt::NewInstance
static OSMScoutQtBuilder NewInstance()
Definition: OSMScoutQt.cpp:267
osmscout::OSMScoutQt::FreeInstance
static void FreeInstance()
Definition: OSMScoutQt.cpp:278
osmscout::OSMScoutQtBuilder::WithMapLookupDirectories
OSMScoutQtBuilder & WithMapLookupDirectories(const QStringList &mapLookupDirectories)
Definition: OSMScoutQt.h:113
osmscout::OSMScoutQtBuilder::WithStyleSheetFile
OSMScoutQtBuilder & WithStyleSheetFile(QString styleSheetFile)
Definition: OSMScoutQt.h:168
osmscout::OSMScoutQt::RegisterQmlTypes
static void RegisterQmlTypes(const char *uri="net.sf.libosmscout.map", int versionMajor=1, int versionMinor=0)
Definition: OSMScoutQt.cpp:189
osmscout::OSMScoutQtBuilder::WithBasemapLookupDirectory
OSMScoutQtBuilder & WithBasemapLookupDirectory(const QString &basemapLookupDirectory)
Definition: OSMScoutQt.h:119
osmscout::OSMScoutQtBuilder::AddOnlineTileProviders
OSMScoutQtBuilder & AddOnlineTileProviders(const QString &onlineTileProviders)
Definition: OSMScoutQt.h:95
osmscout::OSMScoutQtBuilder::WithStyleSheetDirectory
OSMScoutQtBuilder & WithStyleSheetDirectory(const QString &styleSheetDirectory)
Definition: OSMScoutQt.h:161