📄 taticinitdlg.h
字号:
#if !defined(AFX_TATICINITDLG_H__3D89874D_CC7A_4D8E_81CD_228E1E0220E6__INCLUDED_)
#define AFX_TATICINITDLG_H__3D89874D_CC7A_4D8E_81CD_228E1E0220E6__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// TaticInitDlg.h : header file
//
#define MAX_TACTICS 13
#define MAX_TACTIC_LEVEL 200
#define DEFAULT_TACTIC_VALUE 259
typedef struct tag_TACTICANDSTEP {
DWORD TacticExp[13];
char guildname[20];
}TACTICANDSTEP, * lpTACTICANDSTEP;
/////////////////////////////////////////////////////////////////////////////
// CTaticInitDlg dialog
class CTaticInitDlg : public CDialog
{
// Construction
public:
int GetStep(DWORD dwExp);
void InitCombo();
bool GetExpFromTacticLevel(int nLevel, DWORD &dwMaxExp, int &nStep);
CTaticInitDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CTaticInitDlg)
enum { IDD = IDD_CHARMGR_TACTIC_INIT_DLG };
//}}AFX_DATA
CComboBox m_ctrlComboLevel[MAX_TACTICS];
CButton m_ctrlBtnMove[MAX_TACTICS];
DWORD m_dwExpMax[MAX_TACTICS];
DWORD m_dwExp[MAX_TACTICS];
int m_nStep[MAX_TACTICS];
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CTaticInitDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CTaticInitDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSelchangeComboLevel();
afx_msg void OnEditchangeComboLevel();
afx_msg void OnMove();
afx_msg void OnBtnSave();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_TATICINITDLG_H__3D89874D_CC7A_4D8E_81CD_228E1E0220E6__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -