tdesktop/Telegram/SourceFiles/ui/toasts/common_toasts.h

23 lines
492 B
C
Raw Normal View History

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