74 lines
1.9 KiB
C++
74 lines
1.9 KiB
C++
#if !defined(AFX_CONFIGDLG_H__E74EDC62_7BDA_44E5_975D_AA1608196B8D__INCLUDED_)
|
|
#define AFX_CONFIGDLG_H__E74EDC62_7BDA_44E5_975D_AA1608196B8D__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// ConfigDlg.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CConfigDlg dialog
|
|
|
|
class CConfigDlg : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
CConfigDlg(CWnd* pParent = NULL); // standard constructor
|
|
virtual ~CConfigDlg();
|
|
|
|
private:
|
|
void Load();
|
|
BOOL Save();
|
|
|
|
// cpfuturecode
|
|
ICpFutureCodePtr m_Fut;
|
|
|
|
public:
|
|
// Dialog Data
|
|
//{{AFX_DATA(CConfigDlg)
|
|
enum { IDD = IDD_CONFIG_DLG };
|
|
CHotKeyCtrl m_hDownCondition_HotKey;
|
|
CHotKeyCtrl m_hUpCondition_HotKey;
|
|
CHotKeyCtrl m_hLockUnlock_HotKey;
|
|
CComboBox m_hFutureCodeComboBox;
|
|
CString m_strFutureJcode;
|
|
long m_nFAamountLimitTime;
|
|
short m_nFAmountLimitLine;
|
|
long m_nFAmountUpCondition;
|
|
long m_nFAmountDownCondition;
|
|
int m_nFAmountRuleRadio;
|
|
BOOL m_bFAmountApplyCheck;
|
|
long m_nFcurLimitTime;
|
|
short m_nFcurLevelCondition;
|
|
BOOL m_bFcurApplyCheck;
|
|
int m_nFApplyRuleRadio;
|
|
long m_nFApplyRuleRadioLimitTime;
|
|
//}}AFX_DATA
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CConfigDlg)
|
|
protected:
|
|
virtual BOOL OnInitDialog();
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CConfigDlg)
|
|
virtual void OnOK();
|
|
afx_msg void OnSelchangeFutureJcodeCombo();
|
|
afx_msg void OnFAmountRuleRadio();
|
|
afx_msg void OnFApplyRuleRadio();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_CONFIGDLG_H__E74EDC62_7BDA_44E5_975D_AA1608196B8D__INCLUDED_)
|