2015-04-02 10:33:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2015-04-02 10:33:19 +00:00
|
|
|
*/
|
2017-04-06 14:38:10 +00:00
|
|
|
#include "boxes/abstract_box.h"
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2022-11-30 13:28:09 +00:00
|
|
|
#include "core/application.h"
|
|
|
|
#include "window/window_controller.h"
|
2015-04-02 10:33:19 +00:00
|
|
|
#include "mainwidget.h"
|
2016-04-12 21:31:28 +00:00
|
|
|
#include "mainwindow.h"
|
2015-10-11 08:37:24 +00:00
|
|
|
|
2019-09-13 06:06:02 +00:00
|
|
|
namespace Ui {
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
void showBox(
|
2019-09-18 11:19:05 +00:00
|
|
|
object_ptr<BoxContent> content,
|
|
|
|
LayerOptions options,
|
|
|
|
anim::type animated) {
|
2022-11-30 13:28:09 +00:00
|
|
|
const auto window = Core::IsAppLaunched()
|
2023-01-17 15:47:58 +00:00
|
|
|
? Core::App().activePrimaryWindow()
|
2022-11-30 13:28:09 +00:00
|
|
|
: nullptr;
|
|
|
|
if (window) {
|
|
|
|
window->show(std::move(content), options, animated);
|
2019-09-13 06:06:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace internal
|
|
|
|
|
|
|
|
void hideLayer(anim::type animated) {
|
2022-11-30 13:28:09 +00:00
|
|
|
const auto window = Core::IsAppLaunched()
|
2023-01-17 15:47:58 +00:00
|
|
|
? Core::App().activePrimaryWindow()
|
2022-11-30 13:28:09 +00:00
|
|
|
: nullptr;
|
|
|
|
if (window) {
|
|
|
|
window->hideLayer(animated);
|
2019-09-13 06:06:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isLayerShown() {
|
2022-11-30 13:28:09 +00:00
|
|
|
const auto window = Core::IsAppLaunched()
|
2023-01-17 15:47:58 +00:00
|
|
|
? Core::App().activePrimaryWindow()
|
2022-11-30 13:28:09 +00:00
|
|
|
: nullptr;
|
|
|
|
return window && window->isLayerShown();
|
2019-09-13 06:06:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Ui
|