2023-01-23 22:16:35 +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
|
|
|
|
|
|
|
|
#include "ui/rp_widget.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
|
|
|
class VerticalLayout;
|
|
|
|
|
2023-01-31 19:58:57 +00:00
|
|
|
[[nodiscard]] QRect BubbleWrapInnerRect(const QRect &r);
|
2023-01-23 22:16:35 +00:00
|
|
|
|
2023-01-31 19:58:57 +00:00
|
|
|
not_null<Ui::RpWidget*> AddBubbleWrap(
|
2023-01-23 22:16:35 +00:00
|
|
|
not_null<Ui::VerticalLayout*> container,
|
2023-01-31 19:58:57 +00:00
|
|
|
const QSize &size);
|
2023-01-23 22:16:35 +00:00
|
|
|
|
|
|
|
} // namespace Ui
|