| | |
| | | // Copyright (C) 2023-2024 Stdware Collections (https://www.github.com/stdware) |
| | | // Copyright (C) 2021-2023 wangwenx190 (Yuhang Zhao) |
| | | // SPDX-License-Identifier: Apache-2.0 |
| | | |
| | | #ifndef WIDGETITEMDELEGATE_P_H |
| | | #define WIDGETITEMDELEGATE_P_H |
| | | |
| | |
| | | bool isWindowActive(const QObject *host) const override; |
| | | Qt::WindowStates getWindowState(const QObject *host) const override; |
| | | Qt::WindowFlags getWindowFlags(const QObject *host) const override; |
| | | QRect getGeometry(const QObject *host) const override; |
| | | |
| | | void resetQtGrabbedControl(QObject *host) const override; |
| | | void setWindowState(QObject *host, Qt::WindowStates state) const override; |
| | |
| | | void restoreCursorShape(QObject *host) const override; |
| | | void setWindowFlags(QObject *host, Qt::WindowFlags flags) const override; |
| | | void setWindowVisible(QObject *host, bool visible) const override; |
| | | void setGeometry(QObject *host, const QRect &rect) override; |
| | | void bringWindowToTop(QObject *host) const override; |
| | | }; |
| | | |