Files
tdesktop/Telegram/lib_ui/ui/widgets/rp_window.cpp
allhaileris afb81b8278
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
init
2026-02-16 15:50:16 +03:00

123 lines
2.7 KiB
C++

// This file is part of Desktop App Toolkit,
// a set of libraries for developing nice desktop applications.
//
// For license and copyright information please follow this link:
// https://github.com/desktop-app/legal/blob/master/LEGAL
//
#include "ui/widgets/rp_window.h"
#include "ui/platform/ui_platform_window.h"
namespace Ui {
RpWindow::RpWindow(QWidget *parent)
: RpWidget(parent)
, _helper(Platform::CreateWindowHelper(this)) {
Expects(_helper != nullptr);
_helper->initInWindow(this);
hide();
}
RpWindow::~RpWindow() = default;
not_null<RpWidget*> RpWindow::body() {
return _helper->body();
}
not_null<const RpWidget*> RpWindow::body() const {
return _helper->body().get();
}
QMargins RpWindow::frameMargins() const {
return _helper->frameMargins();
}
int RpWindow::additionalContentPadding() const {
return _helper->additionalContentPadding();
}
rpl::producer<int> RpWindow::additionalContentPaddingValue() const {
return _helper->additionalContentPaddingValue();
}
auto RpWindow::hitTestRequests() const
-> rpl::producer<not_null<Platform::HitTestRequest*>> {
return _helper->hitTestRequests();
}
rpl::producer<Platform::HitTestResult> RpWindow::systemButtonOver() const {
return _helper->systemButtonOver();
}
rpl::producer<Platform::HitTestResult> RpWindow::systemButtonDown() const {
return _helper->systemButtonDown();
}
void RpWindow::overrideSystemButtonOver(Platform::HitTestResult button) {
_helper->overrideSystemButtonOver(button);
}
void RpWindow::overrideSystemButtonDown(Platform::HitTestResult button) {
_helper->overrideSystemButtonDown(button);
}
void RpWindow::setTitle(const QString &title) {
_helper->setTitle(title);
}
void RpWindow::setTitleStyle(const style::WindowTitle &st) {
_helper->setTitleStyle(st);
}
void RpWindow::setNativeFrame(bool enabled) {
_helper->setNativeFrame(enabled);
}
void RpWindow::setMinimumSize(QSize size) {
_helper->setMinimumSize(size);
}
void RpWindow::setFixedSize(QSize size) {
_helper->setFixedSize(size);
}
void RpWindow::setStaysOnTop(bool enabled) {
_helper->setStaysOnTop(enabled);
}
void RpWindow::setGeometry(QRect rect) {
_helper->setGeometry(rect);
}
void RpWindow::showFullScreen() {
_helper->showFullScreen();
}
void RpWindow::showNormal() {
_helper->showNormal();
}
void RpWindow::close() {
_helper->close();
}
void RpWindow::setBodyTitleArea(
Fn<WindowTitleHitTestFlags(QPoint)> testMethod) {
_helper->setBodyTitleArea(std::move(testMethod));
}
bool RpWindow::mousePressCancelled() const {
return _helper->mousePressCancelled();
}
int RpWindow::manualRoundingRadius() const {
return _helper->manualRoundingRadius();
}
const style::TextStyle &RpWindow::titleTextStyle() const {
return _helper->titleTextStyle();
}
} // namespace Ui