📄 finddlg.h
字号:
#if !defined(AFX_FINDDLG_H__D63D8AE1_8908_401A_8770_CBA6AC9F3D84__INCLUDED_)#define AFX_FINDDLG_H__D63D8AE1_8908_401A_8770_CBA6AC9F3D84__INCLUDED_#if _MSC_VER > 1000#pragma once#endif // _MSC_VER > 1000// FindDlg.h : header file//#include "corelib/PwsPlatform.h"#if defined(POCKET_PC) #include "pocketpc/PwsPopupDialog.h" #define SUPERCLASS CPwsPopupDialog#else #define SUPERCLASS CDialog#endif/////////////////////////////////////////////////////////////////////////////// CFindDlg dialogclass CFindDlg : public SUPERCLASS{ // Construction public: typedef SUPERCLASS super; static void Doit(CWnd* pParent = NULL); // implement Singleton pattern ~CFindDlg(); // Dialog Data //{{AFX_DATA(CFindDlg) enum { IDD = IDD_FIND }; BOOL m_cs_search; CString m_search_text; CString m_status; //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CFindDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: // Generated message map functions //{{AFX_MSG(CFindDlg) afx_msg void OnFind();#if defined(POCKET_PC) afx_msg void OnCancel();#else afx_msg void OnClose();#endif //}}AFX_MSG DECLARE_MESSAGE_MAP() private: CFindDlg(CWnd* pParent = NULL); // standard constructor static CFindDlg *self; int *m_indices; // array of found items int m_lastshown; // last index selected, -1 indicates no search done yet int m_numFound; // number of items that matched, as returned by DboxMain::FindAll CString m_last_search_text; BOOL m_last_cs_search;};#undef SUPERCLASS//{{AFX_INSERT_LOCATION}}// Microsoft Visual C++ will insert additional declarations immediately before the previous line.#endif // !defined(AFX_FINDDLG_H__D63D8AE1_8908_401A_8770_CBA6AC9F3D84__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -