| 417 | } |
| 418 | |
| 419 | inline |
| 420 | bool CClickWindowController::IsCursorOverNoClickButton(long x, long y) |
| 421 | { |
| 422 | wxRect pos= m_pWindow->GetNoClickButton()->GetScreenRect(); |
| 423 | if (y<= pos.GetBottom() && y>= pos.GetTop() && x>= pos.GetLeft() && x<= pos.GetRight()) |
| 424 | return true; |
| 425 | else |
| 426 | return false; |
| 427 | } |
| 428 | |
| 429 | void CClickWindowController::NotifyShowMainWindowClick () |
| 430 | { |
nothing calls this directly
no test coverage detected