findpage.h

来自「对文件进行处理。 包括文件复制、分割、连接、查看等。」· C头文件 代码 · 共 73 行

H
73
字号
#if !defined(AFX_FINDPAGE_H__C213D3D7_9765_11D8_8B0A_000AEB127BF2__INCLUDED_)
#define AFX_FINDPAGE_H__C213D3D7_9765_11D8_8B0A_000AEB127BF2__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// FindPage.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CFindPage dialog

class CFindPage : public CPropertyPage
{
	DECLARE_DYNCREATE(CFindPage)

// Construction
public:
	BOOL DoFind(char * pstr, int count, _iobuf * pfile);
	BOOL m_BreakFlag;
	void Find();
	CFindPage();
	~CFindPage();

// Dialog Data
	//{{AFX_DATA(CFindPage)
	enum { IDD = IDD_FIND };
	CProgressCtrl	m_Progress;
	CButton	m_Pause;
	CMyEdit	m_File;
	int		m_Findflag;
	CString	m_AscStr;
	CString	m_FindStr;
	CString	m_Sit;
	//}}AFX_DATA


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

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(CFindPage)
	afx_msg void OnFineWord();
	afx_msg void OnFindRascii();
	afx_msg void OnChangeFindStr();
	afx_msg void OnFind();
	afx_msg void OnChangeFindEascii();
	afx_msg void OnFindLook();
	afx_msg void OnFindPause();
	afx_msg void OnFindStop();
	afx_msg void OnKillfocusFindEascii();
	afx_msg void OnChangeFindSit();
	virtual BOOL OnInitDialog();
	afx_msg void OnTimer(UINT nIDEvent);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

private:
	CWinThread * pThread;
	FILE * pfile;
};

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

#endif // !defined(AFX_FINDPAGE_H__C213D3D7_9765_11D8_8B0A_000AEB127BF2__INCLUDED_)

⌨️ 快捷键说明

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