2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-26 12:18:01 +00:00

23 lines
492 B
C
Raw Normal View History

2018-06-02 17:29:21 +03:00
/*
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
2018-06-02 17:29:21 +03:00
#include "ui/text/text_entity.h"
namespace Ui {
struct MultilineToastArgs {
TextWithEntities text;
2021-02-11 18:46:46 +04:00
crl::time duration = 0;
2021-03-16 22:26:35 +04:00
QWidget *parentOverride = nullptr;
};
void ShowMultilineToast(MultilineToastArgs &&args);
} // namespace Ui