| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- // 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
|