| 178 | } |
| 179 | |
| 180 | void KeyWindow::OnPaint() |
| 181 | { |
| 182 | CPaintDC dc(this); // device context for painting |
| 183 | CRect rect; |
| 184 | GetClientRect(rect); |
| 185 | |
| 186 | m_memDC.BitBlt(0,0,rect.Width(),rect.Height(),&m_keyDC,0,0,SRCCOPY); |
| 187 | draw_notes(&m_memDC,1,0,rect.Height()/4,rect.Height()); |
| 188 | dc.BitBlt(0,0,rect.Width(),rect.Height(),&m_memDC,0,0,SRCCOPY); |
| 189 | |
| 190 | // �`�惁�b�Z�[�W�� CDialog::OnPaint() ���Ăяo���Ȃ��ł��������B |
| 191 | } |
| 192 | |
| 193 | void KeyWindow::OnLButtonDblClk(UINT nFlags, CPoint point) |
| 194 | { |
nothing calls this directly
no outgoing calls
no test coverage detected