MainFrm.h
上传用户:st5609838
上传日期:2013-03-29
资源大小:66k
文件大小:3k
源码类别:

搜索引擎

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__26AC1028_E049_11D1_8F58_B6D09489096E__INCLUDED_)
  5. #define AFX_MAINFRM_H__26AC1028_E049_11D1_8F58_B6D09489096E__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. class CMainFrame : public CMDIFrameWnd
  10. {
  11. DECLARE_DYNAMIC(CMainFrame)
  12. public:
  13. CMainFrame();
  14. // Attributes
  15. public:
  16. CTypedPtrList<CObList,CSpiderThread*>     m_threadList;  
  17.     long           m_lMaxThreads;
  18. long           m_lCurThreads;
  19.     
  20. // Operations
  21. public:
  22. BOOL GetURL(LPCTSTR lpString,HWND lphwndNotifyView = NULL,
  23. int lptype= 0, BOOL lpRoot = FALSE);
  24. void GetConnected();
  25. BOOL RobotCheck(LPCTSTR pszURL);
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CMainFrame)
  29. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CMainFrame();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:  // control bar embedded members
  39. CStatusBar  m_wndStatusBar;
  40. CToolBar    m_wndToolBar;
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CMainFrame)
  44. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  45. afx_msg void OnWindowsCloseall();
  46. afx_msg void OnClose();
  47. afx_msg void OnToolsGetURL();
  48. afx_msg void OnToolsKillthread();
  49. afx_msg void OnDestroy();
  50. afx_msg void OnToolCheckURLs();
  51. afx_msg void OnToolsGetServerHeader();
  52. afx_msg void OnToolsViewURLList();
  53. afx_msg void OnToolsURLsNotFound();
  54. afx_msg void OnToolsThreadsStop();
  55. afx_msg void OnUpdateToolsKillthread(CCmdUI* pCmdUI);
  56. afx_msg void OnUpdateToolsThreadsStop(CCmdUI* pCmdUI);
  57. //}}AFX_MSG
  58. LRESULT OnDocNew(WPARAM wParam,LPARAM lParam);
  59. LRESULT OnDocUpdate(WPARAM wParam,LPARAM lParam);
  60. LRESULT OnThreadDone(WPARAM wParam,LPARAM lParam);
  61. LRESULT OnThreadStatus(WPARAM wParam,LPARAM lParam);
  62. LRESULT OnNewThread(WPARAM wParam,LPARAM lParam);
  63. LRESULT OnGetNewFiles(WPARAM wParam,LPARAM lParam);
  64. LRESULT OnServerStatus(WPARAM wParam,LPARAM lParam);
  65. LRESULT OnURLStatus(WPARAM wParam,LPARAM lParam);
  66. DECLARE_MESSAGE_MAP()
  67. private:
  68. CRITICAL_SECTION m_CritSect; 
  69. };
  70. /////////////////////////////////////////////////////////////////////////////
  71. //{{AFX_INSERT_LOCATION}}
  72. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  73. #endif // !defined(AFX_MAINFRM_H__26AC1028_E049_11D1_8F58_B6D09489096E__INCLUDED_)