fully implemented: * loading of a live map, ESRI based, zooming & dragging possible * IP address is translated to map coordinates * loading of the map centers to the obtained coordinates, with a marker set * coordinates are translated to a timezone, label visible at bottom of the map * mouse movement will show changing coordinates * clicking on new location will center map there, marker moved too, timezone label adjusted * hasInternet switch set to either load Map.qml or Offline.qml not done: * get hasInternet status * fill the fine-tune 181n.qml with proper locale & language data * connect the obtained timezone to globalstorage comments are left in the various files for what needs attention/changes
40 lines
1.1 KiB
CMake
40 lines
1.1 KiB
CMake
# When debugging the timezone widget, add this debugging definition
|
|
# to have a debugging-friendly timezone widget, debug logging,
|
|
# and no intrusive timezone-setting while clicking around.
|
|
option( DEBUG_TIMEZONES "Debug-friendly timezone widget." OFF )
|
|
if( DEBUG_TIMEZONES )
|
|
add_definitions( -DDEBUG_TIMEZONES )
|
|
endif()
|
|
|
|
find_package(Qt5Location CONFIG)
|
|
set_package_properties(Qt5Location PROPERTIES
|
|
DESCRIPTION "Used for rendering the map"
|
|
TYPE RUNTIME
|
|
)
|
|
find_package(Qt5Positioning CONFIG)
|
|
set_package_properties(Qt5Positioning PROPERTIES
|
|
DESCRIPTION "Used for GeoLocation and GeoCoding"
|
|
TYPE RUNTIME
|
|
)
|
|
|
|
# Because we're sharing sources with the regular locale module
|
|
set( _locale ${CMAKE_CURRENT_SOURCE_DIR}/../locale )
|
|
|
|
include_directories( ${_locale} )
|
|
|
|
calamares_add_plugin( localeq
|
|
TYPE viewmodule
|
|
EXPORT_MACRO PLUGINDLLEXPORT_PRO
|
|
SOURCES
|
|
LocaleQmlViewStep.cpp
|
|
${_locale}/LocaleConfiguration.cpp
|
|
${_locale}/Config.cpp
|
|
${_locale}/SetTimezoneJob.cpp
|
|
RESOURCES
|
|
localeq.qrc
|
|
LINK_PRIVATE_LIBRARIES
|
|
calamaresui
|
|
Qt5::Network
|
|
SHARED_LIB
|
|
)
|