44 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
| This file is part of Telegram Desktop,
 | |
| the official desktop application for the Telegram messaging service.
 | |
| 
 | |
| For license and copyright information please follow this link:
 | |
| https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | |
| */
 | |
| #include "history/history_location_manager.h"
 | |
| 
 | |
| #include "mainwidget.h"
 | |
| #include "lang/lang_keys.h"
 | |
| #include "ui/image/image.h"
 | |
| #include "data/data_file_origin.h"
 | |
| #include "platform/platform_specific.h"
 | |
| 
 | |
| namespace {
 | |
| 
 | |
| constexpr auto kCoordPrecision = 8;
 | |
| constexpr auto kMaxHttpRedirects = 5;
 | |
| 
 | |
| } // namespace
 | |
| 
 | |
| QString LocationClickHandler::copyToClipboardText() const {
 | |
| 	return _text;
 | |
| }
 | |
| 
 | |
| QString LocationClickHandler::copyToClipboardContextItemText() const {
 | |
| 	return tr::lng_context_copy_link(tr::now);
 | |
| }
 | |
| 
 | |
| void LocationClickHandler::onClick(ClickContext context) const {
 | |
| 	if (!psLaunchMaps(_point)) {
 | |
| 		QDesktopServices::openUrl(_text);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| void LocationClickHandler::setup() {
 | |
| 	_text = Url(_point);
 | |
| }
 | |
| 
 | |
| QString LocationClickHandler::Url(const Data::LocationPoint &point) {
 | |
| 	const auto latlon = point.latAsString() + ',' + point.lonAsString();
 | |
| 	return qsl("https://maps.google.com/maps?q=") + latlon + qsl("&ll=") + latlon + qsl("&z=16");
 | |
| }
 | 
