mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-24 03:07:20 +00:00
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
|
/*
|
||
|
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
|
||
|
*/
|
||
|
#include "platform/linux/window_title_linux.h"
|
||
|
|
||
|
#include "platform/linux/linux_desktop_environment.h"
|
||
|
#include "base/platform/base_platform_info.h"
|
||
|
|
||
|
namespace Platform {
|
||
|
namespace {
|
||
|
|
||
|
bool SystemMoveResizeSupported() {
|
||
|
#if !defined DESKTOP_APP_DISABLE_WAYLAND_INTEGRATION || QT_VERSION >= QT_VERSION_CHECK(5, 15, 0) || defined DESKTOP_APP_QT_PATCHED
|
||
|
return true;
|
||
|
#else // !DESKTOP_APP_DISABLE_WAYLAND_INTEGRATION || Qt >= 5.15 || DESKTOP_APP_QT_PATCHED
|
||
|
return !IsWayland();
|
||
|
#endif // !DESKTOP_APP_DISABLE_WAYLAND_INTEGRATION || Qt >= 5.15 || DESKTOP_APP_QT_PATCHED
|
||
|
}
|
||
|
|
||
|
} // namespace
|
||
|
|
||
|
bool AllowNativeWindowFrameToggle() {
|
||
|
return SystemMoveResizeSupported()
|
||
|
// https://gitlab.gnome.org/GNOME/mutter/-/issues/217
|
||
|
&& !(DesktopEnvironment::IsGnome() && IsWayland());
|
||
|
}
|
||
|
|
||
|
object_ptr<Window::TitleWidget> CreateTitleWidget(QWidget *parent) {
|
||
|
return SystemMoveResizeSupported()
|
||
|
? object_ptr<Window::TitleWidgetQt>(parent)
|
||
|
: object_ptr<Window::TitleWidgetQt>{ nullptr };
|
||
|
}
|
||
|
|
||
|
} // namespace Platform
|