MCPcopy Create free account
hub / github.com/bbbradsmith/nsfplay / OnPaint

Method OnPaint

nsfplug_ui/KeyWindow.cpp:180–191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

178}
179
180void 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
193void KeyWindow::OnLButtonDblClk(UINT nFlags, CPoint point)
194{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected