dictdlg.h

来自「1、对于凯撒密文」· C头文件 代码 · 共 67 行

H
67
字号
#if !defined(AFX_DICTDLG_H__5CD0AADD_8953_485A_A05F_A57CC8C6758A__INCLUDED_)
#define AFX_DICTDLG_H__5CD0AADD_8953_485A_A05F_A57CC8C6758A__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DictDlg.h : header file
//
#include "Dictionary.h"
#include "TaskbarNotifier.h"
/////////////////////////////////////////////////////////////////////////////
// CDictDlg dialog

class CDictDlg : public CDialog
{
// Construction
public:
	virtual BOOL PreTranslateMessage(MSG* pMsg);
//	CComQIPtr<ISkin> pSkin2;
	CTaskbarNotifier * m_wndTaskbarNotifier;
	CDictDlg(CWnd* pParent = NULL);   // standard constructor
	CDictionary * m_pDictionary;
	bool changed;
// Dialog Data
	//{{AFX_DATA(CDictDlg)
	enum { IDD = IDD_DICT };
	CString	m_check;
	CString	m_delete;
	CString	m_insert;
	CString	m_output;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CDictDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	CToolTipCtrl m_tooltip;
	CString BuildSuggestions(const CString & strWord, bool bCaseOnly);
	HCURSOR m_hArrow;
	HCURSOR m_hHand;
	HCURSOR m_hBeam;
	HCURSOR m_hPen;
	HCURSOR m_hMove;
	// Generated message map functions
	//{{AFX_MSG(CDictDlg)
	afx_msg void OnCheck();
	afx_msg void OnInsert();
	afx_msg void OnDelete();
	afx_msg void OnInsertWordlist();
	afx_msg void OnClose();
	virtual BOOL OnInitDialog();
	afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_DICTDLG_H__5CD0AADD_8953_485A_A05F_A57CC8C6758A__INCLUDED_)

⌨️ 快捷键说明

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