| 95 | } |
| 96 | |
| 97 | void WinShadow::hideShadow() |
| 98 | { |
| 99 | m_timer->stop(); |
| 100 | |
| 101 | if (!isVisible()) |
| 102 | return; |
| 103 | |
| 104 | m_bActived = false; |
| 105 | |
| 106 | repaint(); |
| 107 | |
| 108 | QWidget::hide(); |
| 109 | } |
| 110 | |
| 111 | bool WinShadow::nativeEvent(const QByteArray &eventType, void *message, long *result) |
| 112 | { |
no test coverage detected