| 184 | } |
| 185 | |
| 186 | bool IsCursorInWidgetArea(QWidget *widget) |
| 187 | { |
| 188 | const auto cursorPos = QCursor::pos(); |
| 189 | const auto widgetPos = widget->mapFromGlobal(cursorPos); |
| 190 | const auto widgetRect = widget->rect(); |
| 191 | return widgetRect.contains(widgetPos); |
| 192 | } |
| 193 | |
| 194 | } // namespace advss |
no outgoing calls
no test coverage detected