SearchThread.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #if !defined(AFX_SEARCHTHREAD_H__76911A8F_3028_4045_9702_016A2C49950A__INCLUDED_)
  2. #define AFX_SEARCHTHREAD_H__76911A8F_3028_4045_9702_016A2C49950A__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SearchThread.h : header file
  7. //
  8. class CMainFrame;
  9. #define WM_SEARCHFINISHED (WM_USER + 100)
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CSearchThread thread
  12. class CSearchThread : public CWinThread
  13. {
  14. struct SEARCH_RESULT
  15. {
  16. int nMatchingLines;
  17. int nMatchingFiles;
  18. int nTotalFiles;
  19. } m_searchResult;
  20. DECLARE_DYNCREATE(CSearchThread)
  21. protected:
  22. CSearchThread();           // protected constructor used by dynamic creation
  23. public:
  24. virtual ~CSearchThread();
  25. // Attributes
  26. public:
  27. // Operations
  28. public:
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CSearchThread)
  32. public:
  33. virtual BOOL InitInstance();
  34. virtual int ExitInstance();
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. BOOL ProcessPath(CString strPath);
  39. BOOL ProcessFile(CString strPath, CFileFind& finder);
  40. void SetMessageText();
  41. void AddRecord(CXTPReportControl& wndControl, TCHAR* lpszFileBuffer, TCHAR* lpszEndBuffer, long nIndex, long nLength,
  42. CString strMatch, CString strReplace, CString strPath, CFileFind& finder);
  43. public:
  44. CMainFrame* m_pMainFrame;
  45. CXTPReportControl* m_pReportControl;
  46. BOOL m_bCancel;
  47. // Generated message map functions
  48. //{{AFX_MSG(CSearchThread)
  49. // NOTE - the ClassWizard will add and remove member functions here.
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_SEARCHTHREAD_H__76911A8F_3028_4045_9702_016A2C49950A__INCLUDED_)