* @brief Returns the current shadow margin in pixels. */
| 889 | * @brief Returns the current shadow margin in pixels. |
| 890 | */ |
| 891 | int Window::shadowMargin() const |
| 892 | { |
| 893 | if (!m_window) |
| 894 | return 0; |
| 895 | |
| 896 | if (!m_shadowEnabled) |
| 897 | return 0; |
| 898 | |
| 899 | const auto state = m_window->windowStates(); |
| 900 | if (state & (Qt::WindowMaximized | Qt::WindowFullScreen)) |
| 901 | return 0; |
| 902 | |
| 903 | return CSD::ShadowRadius; |
| 904 | } |
| 905 | |
| 906 | /** |
| 907 | * @brief Returns the current title bar height in pixels. |
no outgoing calls
no test coverage detected