41 lines
843 B
C++
41 lines
843 B
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
|
|
*/
|
|
#pragma once
|
|
|
|
#include "data/data_location.h"
|
|
|
|
class LocationClickHandler : public ClickHandler {
|
|
public:
|
|
LocationClickHandler(const Data::LocationPoint &point)
|
|
: _point(point) {
|
|
setup();
|
|
}
|
|
|
|
static QString Url(const Data::LocationPoint &coords);
|
|
|
|
void onClick(ClickContext context) const override;
|
|
|
|
QString tooltip() const override {
|
|
return QString();
|
|
}
|
|
|
|
QString dragText() const override {
|
|
return _text;
|
|
}
|
|
|
|
QString copyToClipboardText() const override;
|
|
QString copyToClipboardContextItemText() const override;
|
|
|
|
private:
|
|
|
|
void setup();
|
|
Data::LocationPoint _point;
|
|
QString _text;
|
|
|
|
};
|