MainFrm.h
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__33B79F58_355D_11D3_9922_00500487D199__INCLUDED_)
  5. #define AFX_MAINFRM_H__33B79F58_355D_11D3_9922_00500487D199__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9.  
  10. #define CFrameWnd CCJFrameWnd
  11. #define CToolBar CCJToolBar
  12. #define CToolBarCtrl CCJToolBarCtrl
  13. class CTaxExpertView;
  14. class CMainFrame : public CFrameWnd
  15. {
  16. protected: 
  17. CMainFrame();
  18. DECLARE_DYNCREATE(CMainFrame)
  19. public:
  20. //关键词输入框 
  21. CCJFlatComboBox* m_pComboBox;
  22. BOOL m_bPreview;
  23. //枚举出六个快捷方式等常量
  24. enum { FOLDER_0, FOLDER_1, FOLDER_2, FOLDER_3, FOLDER_4, FOLDER_5,FOLDER_6};
  25. enum { CMD_00, CMD_01, CMD_02, CMD_03, CMD_04, CMD_05, CMD_06, CMD_07 };
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CMainFrame)
  29. public:
  30. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  31. protected:
  32. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. void UserDefine();
  37. void update();
  38. void InputIntoWord();
  39. void PrintDoc();
  40. void OnComboTextChanged();
  41. CTaxExpertView* GetMainView();
  42. virtual ~CMainFrame();
  43. #ifdef _DEBUG
  44. virtual void AssertValid() const;
  45. virtual void Dump(CDumpContext& dc) const;
  46. #endif
  47. protected:  
  48. CStatusBar m_wndStatusBar;
  49. CToolBar m_wndToolBar;
  50. CGfxSplitterWnd m_wndSplitter;
  51. //快捷方式列表框
  52. CGfxOutBarCtrl m_wndOutlookBar;
  53. //快捷方式列表框对应的图像列表控件
  54. CImageList m_ImageLarge, m_ImageSmall;
  55. // Generated message map functions
  56. protected:
  57. //{{AFX_MSG(CMainFrame)
  58. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  59. afx_msg void OnPreviewPane();
  60. afx_msg void InteractiveWithViews(WPARAM FromWhere,LPARAM detail);
  61. afx_msg void OnUpdatePreviewPane(CCmdUI* pCmdUI);
  62. //}}AFX_MSG
  63. afx_msg void OnGfxLargeicon();
  64. afx_msg void OnDestroy();
  65. afx_msg void OnUpdateGfxLargeicon(CCmdUI* pCmdUI);
  66. afx_msg void OnGfxSmallicon();
  67. afx_msg void OnUpdateGfxSmallicon(CCmdUI* pCmdUI);
  68. afx_msg long OnOutbarNotify(WPARAM wParam, LPARAM lParam);
  69. DECLARE_MESSAGE_MAP()
  70. };
  71. /////////////////////////////////////////////////////////////////////////////
  72. //{{AFX_INSERT_LOCATION}}
  73. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  74. #endif // !defined(AFX_MAINFRM_H__33B79F58_355D_11D3_9922_00500487D199__INCLUDED_)