| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- 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 url() const override {
- return _text;
- }
- QString dragText() const override {
- return _text;
- }
- QString copyToClipboardText() const override;
- QString copyToClipboardContextItemText() const override;
- private:
- void setup();
- Data::LocationPoint _point;
- QString _text;
- };
|