MainFrm.h
上传用户:wujian85
上传日期:2010-04-08
资源大小:227k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__17660EAD_0940_11D2_840B_0000B43382FE__INCLUDED_)
  5. #define AFX_MAINFRM_H__17660EAD_0940_11D2_840B_0000B43382FE__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include "PropDlg.h"
  10. #include "PapersBar.h"
  11. #include "GfxProperty.h"
  12. CPropDlg * GfxGetProp();
  13. bool GfxIsProp();
  14. CGfxProperty * GfxGetProp2();
  15. bool GfxIsProp2();
  16. CPapersBar * GfxGetPaperList();
  17. class CMainFrame : public SECWorkbook
  18. {
  19. DECLARE_DYNAMIC(CMainFrame)
  20. public:
  21. CMainFrame();
  22. // Attributes
  23. public:
  24. CPropDlg propDlg;
  25. CPapersBar paperBar;
  26. CGfxProperty gfxProp;
  27. // Operations
  28. public:
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CMainFrame)
  32. public:
  33. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. public:
  37. virtual ~CMainFrame();
  38. #ifdef _DEBUG
  39. virtual void AssertValid() const;
  40. virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42. SECToolBarManager* GetManager() const;
  43. void DoTrackMenu(const int menuId, const int iPopPos, CWnd * pSendTo, CPoint pt);
  44. protected:  // control bar embedded members
  45. SECStatusBar  m_wndStatusBar;
  46. // Generated message map functions
  47. protected:
  48. //{{AFX_MSG(CMainFrame)
  49. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  50. afx_msg void OnProperty();
  51. afx_msg void OnUpdateProperty(CCmdUI* pCmdUI);
  52. afx_msg void OnShowPagebar();
  53. afx_msg void OnUpdateShowPagebar(CCmdUI* pCmdUI);
  54. //}}AFX_MSG
  55. DECLARE_MESSAGE_MAP()
  56. };
  57. inline SECToolBarManager* CMainFrame::GetManager() const 
  58. return (SECToolBarManager*) m_pControlBarManager; 
  59. };
  60. /////////////////////////////////////////////////////////////////////////////
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  63. #endif // !defined(AFX_MAINFRM_H__17660EAD_0940_11D2_840B_0000B43382FE__INCLUDED_)