From 99bfa7739d8a3974989f1774b3b9ad9e060eba15 Mon Sep 17 00:00:00 2001 From: Yuhang Zhao <zhaoyuhang@rankyee.com> Date: 周五, 05 1月 2024 17:17:44 +0800 Subject: [PATCH] update qmsetup --- src/widgets/widgetitemdelegate.cpp | 20 +++++++++++++------- 1 files changed, 13 insertions(+), 7 deletions(-) diff --git a/src/widgets/widgetitemdelegate.cpp b/src/widgets/widgetitemdelegate.cpp index f6cb467..c81e6fb 100644 --- a/src/widgets/widgetitemdelegate.cpp +++ b/src/widgets/widgetitemdelegate.cpp @@ -1,10 +1,14 @@ +// Copyright (C) 2023-2024 Stdware Collections (https://www.github.com/stdware) +// Copyright (C) 2021-2023 wangwenx190 (Yuhang Zhao) +// SPDX-License-Identifier: Apache-2.0 + #include "widgetitemdelegate_p.h" #include <QtGui/QMouseEvent> #include <QtWidgets/QWidget> #include <QtWidgets/QApplication> -extern Q_WIDGETS_EXPORT QWidget *qt_button_down; +extern Q_DECL_IMPORT QWidget *qt_button_down; namespace QWK { @@ -45,12 +49,6 @@ const QSize minSize = widget->minimumSize(); const QSize maxSize = widget->maximumSize(); if (!minSize.isEmpty() && !maxSize.isEmpty() && (minSize == maxSize)) { - return true; - } - // Usually set by the user. - const QSizePolicy sizePolicy = widget->sizePolicy(); - if ((sizePolicy.horizontalPolicy() == QSizePolicy::Fixed) && - (sizePolicy.verticalPolicy() == QSizePolicy::Fixed)) { return true; } return false; @@ -98,4 +96,12 @@ static_cast<QWidget *>(host)->setWindowFlags(flags); } + void WidgetItemDelegate::setWindowVisible(QObject *host, bool visible) const { + static_cast<QWidget *>(host)->setVisible(visible); + } + + void WidgetItemDelegate::bringWindowToTop(QObject *host) const { + static_cast<QWidget *>(host)->raise(); + } + } \ No newline at end of file -- Gitblit v1.9.1