| 797 | } |
| 798 | |
| 799 | int WinNativeWidget::GetDevicePixelRatio() |
| 800 | { |
| 801 | auto screen = GetPointScreen(); |
| 802 | if (screen != NULL){ |
| 803 | return screen->devicePixelRatio(); |
| 804 | } |
| 805 | else{ |
| 806 | return QGuiApplication::primaryScreen()->devicePixelRatio(); |
| 807 | } |
| 808 | } |
| 809 | |
| 810 | bool WinNativeWidget::IsVisible() |
| 811 | { |
no outgoing calls
no test coverage detected