2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 10:47:11 +00:00
tdesktop/Telegram/SourceFiles/boxes/abstract_box.cpp

49 lines
1.1 KiB
C++
Raw Normal View History

/*
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
*/
2017-04-06 17:38:10 +03:00
#include "boxes/abstract_box.h"
2022-11-30 17:28:09 +04:00
#include "core/application.h"
#include "window/window_controller.h"
#include "mainwidget.h"
#include "mainwindow.h"
2015-10-11 10:37:24 +02:00
namespace Ui {
namespace internal {
void showBox(
2019-09-18 14:19:05 +03:00
object_ptr<BoxContent> content,
LayerOptions options,
anim::type animated) {
2022-11-30 17:28:09 +04:00
const auto window = Core::IsAppLaunched()
? Core::App().activePrimaryWindow()
2022-11-30 17:28:09 +04:00
: nullptr;
if (window) {
window->show(std::move(content), options, animated);
}
}
} // namespace internal
void hideLayer(anim::type animated) {
2022-11-30 17:28:09 +04:00
const auto window = Core::IsAppLaunched()
? Core::App().activePrimaryWindow()
2022-11-30 17:28:09 +04:00
: nullptr;
if (window) {
window->hideLayer(animated);
}
}
bool isLayerShown() {
2022-11-30 17:28:09 +04:00
const auto window = Core::IsAppLaunched()
? Core::App().activePrimaryWindow()
2022-11-30 17:28:09 +04:00
: nullptr;
return window && window->isLayerShown();
}
} // namespace Ui