winbdcdlg.h

来自「用VC开发的背单词小软件」· C头文件 代码 · 共 78 行

H
78
字号
// WinBDCDlg.h : header file
//

#if !defined(AFX_WINBDCDLG_H__D6A26624_E951_4948_A298_39EE0F2F862F__INCLUDED_)
#define AFX_WINBDCDLG_H__D6A26624_E951_4948_A298_39EE0F2F862F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CWinBDCDlg dialog

#include "MyWord.h"
#include "User.h"

class CWinBDCDlg : public CDialog
{
// Construction
public:	
	CString m_FilePath;
	CRichEditCtrl *m_pRichEditCtrl;
	CEdit *m_pEdit;
	CButton *m_pButton;
	CStatic *m_pStaticSpellResult;
	CStatic *m_pStaticSum;
	CStatic *m_pStaticYet;
	CStatic *m_pStaticRight;
	CMyWord *m_pMyWord;
	CWinBDCDlg(CWnd* pParent = NULL);	// standard constructor
	CTypedPtrList<CObList, CMyWord*> m_WordList;
	CMenu *m_pMenu;
	CTypedPtrList<CObList, CUser*> m_UserList;
	CUser *m_pUser;

// Dialog Data
	//{{AFX_DATA(CWinBDCDlg)
	enum { IDD = IDD_WINBDC_DIALOG };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CWinBDCDlg)
	public:
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;
	// Generated message map functions
	//{{AFX_MSG(CWinBDCDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnHelpAbout();
	afx_msg void OnFileExit();
	afx_msg void OnFileOpen();
	afx_msg void OnEditReview();
	afx_msg void OnFileClose();
	afx_msg void OnEditBegin();
	afx_msg void OnSpellok();
	afx_msg void OnEditManagedb();
	afx_msg void OnEditManageuser();
	afx_msg void OnClose();
	afx_msg void OnCancelMode();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_WINBDCDLG_H__D6A26624_E951_4948_A298_39EE0F2F862F__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?