| 47 | // NSFPresetDialog ���b�Z�[�W �n���h�� |
| 48 | |
| 49 | BOOL NSFPresetDialog::OnInitDialog() |
| 50 | { |
| 51 | CDialog::OnInitDialog(); |
| 52 | |
| 53 | // TODO : �����ɏ�������lj����Ă������� |
| 54 | std::set<CString>::iterator it; |
| 55 | std::set<CString> presets = pman.GetPresetNames(); |
| 56 | for(it=presets.begin();it!=presets.end();it++) |
| 57 | m_listCtrl.AddString(*it); |
| 58 | |
| 59 | m_listCtrl.SelectString(-1,CONFIG["LAST_PRESET"]); |
| 60 | |
| 61 | return TRUE; // return TRUE unless you set the focus to a control |
| 62 | // ��O : OCX �v���p�e�B �y�[�W�͕K�� FALSE ��Ԃ��܂��B |
| 63 | } |
| 64 | |
| 65 | void NSFPresetDialog::OnBnClickedDelete() |
| 66 | { |
nothing calls this directly
no test coverage detected