mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/telegramdesktop/tdesktop
synced 2026-09-20 08:03:45 +08:00
23 lines
661 B
C
23 lines
661 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 "ui/layers/generic_box.h"
|
|
|
|
void AboutBox(not_null<Ui::GenericBox*> box);
|
|
void ArchiveHintBox(
|
|
not_null<Ui::GenericBox*> box,
|
|
bool unarchiveOnNewMessage,
|
|
Fn<void()> onUnarchive);
|
|
|
|
QString telegramFaqLink();
|
|
// The full form ends with the canary commit hash, the short one is for
|
|
// the main menu where the line has to stay narrow.
|
|
QString currentVersionText();
|
|
QString currentVersionShortText();
|