MainFrm.h
上传用户:yideyibiao
上传日期:2015-08-20
资源大小:41k
文件大小:2k
源码类别:

Internet/IE编程

开发平台:

Visual C++

  1. // MainFrm.h MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__DA606ACE_764A_4F19_917A_01844F55851C__INCLUDED_)
  5. #define AFX_MAINFRM_H__DA606ACE_764A_4F19_917A_01844F55851C__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMainFrame : public CFrameWnd
  10. {
  11. protected: // create from serialization only
  12. CMainFrame();
  13. DECLARE_DYNCREATE(CMainFrame)
  14. // Attributes
  15. public:
  16. //添加一个记录收藏地址的字符串链表
  17. CStringArray m_astrFavoriteURLs;
  18. //添加地址条代码
  19. CComboBoxEx m_wndAddress;
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CMainFrame)
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. int BuildFavoritesMenu(LPCTSTR pszPath, int nStartPos, CMenu* pMenu);
  30. virtual ~CMainFrame();
  31. #ifdef _DEBUG
  32. virtual void AssertValid() const;
  33. virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35. protected:  // control bar embedded members
  36. CStatusBar  m_wndStatusBar;
  37. CToolBar    m_wndToolBar;
  38. CReBar      m_wndReBar;
  39. CDialogBar      m_wndDlgBar;
  40. // Generated message map functions
  41. protected:
  42. //{{AFX_MSG(CMainFrame)
  43. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  44. // NOTE - the ClassWizard will add and remove member functions here.
  45. //    DO NOT EDIT what you see in these blocks of generated code!
  46. //}}AFX_MSG
  47. afx_msg void OnNewAddress();
  48. afx_msg void OnNewAddressEnter();
  49. afx_msg void OnFavorite(UINT nID);
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_MAINFRM_H__DA606ACE_764A_4F19_917A_01844F55851C__INCLUDED_)