123
This commit is contained in:
32
Editor/SelectEAXPresetDlg.h
Normal file
32
Editor/SelectEAXPresetDlg.h
Normal file
@@ -0,0 +1,32 @@
|
||||
#pragma once
|
||||
|
||||
class CEAXPresetMgr;
|
||||
|
||||
// CSelectEAXPresetDlg dialog
|
||||
|
||||
class CSelectEAXPresetDlg : public CDialog
|
||||
{
|
||||
DECLARE_DYNAMIC(CSelectEAXPresetDlg)
|
||||
|
||||
protected:
|
||||
CEAXPresetMgr *m_pEAXPresetMgr;
|
||||
CListBox m_wndPresets;
|
||||
CString m_sCurrPreset;
|
||||
|
||||
public:
|
||||
CSelectEAXPresetDlg(CWnd* pParent = NULL); // standard constructor
|
||||
virtual ~CSelectEAXPresetDlg();
|
||||
|
||||
// Dialog Data
|
||||
enum { IDD = IDD_SELECTPRESET };
|
||||
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||||
|
||||
DECLARE_MESSAGE_MAP()
|
||||
public:
|
||||
virtual BOOL OnInitDialog();
|
||||
void SetCurrPreset(CString sPreset) { m_sCurrPreset=sPreset; }
|
||||
CString GetCurrPreset() { return m_sCurrPreset; }
|
||||
afx_msg void OnLbnSelchangePresets();
|
||||
};
|
||||
Reference in New Issue
Block a user