| 618 | } |
| 619 | |
| 620 | LRESULT CMainFrame::OnMonitorPause(WORD, WORD, HWND, BOOL&) { |
| 621 | m_tm.Pause(!m_tm.IsPaused()); |
| 622 | UISetCheck(ID_MONITOR_PAUSE, m_tm.IsPaused()); |
| 623 | int image = 2; |
| 624 | HICON hIcon = m_PauseIcon; |
| 625 | if (!m_tm.IsPaused()) { |
| 626 | hIcon = m_tm.IsRunning() ? m_RunIcon : m_StopIcon; |
| 627 | } |
| 628 | SetPaneIcon(1, hIcon); |
| 629 | return 0; |
| 630 | } |
| 631 | |
| 632 | BOOL CMainFrame::TrackPopupMenu(HMENU hMenu, HWND hWnd, POINT* pt, UINT flags) { |
| 633 | POINT cursorPos; |