MainFrm.h
上传用户:tianjwyx
上传日期:2007-01-13
资源大小:813k
文件大小:2k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__AFDB7904_4474_496C_8B6A_47D3DF83F491__INCLUDED_)
  5. #define AFX_MAINFRM_H__AFDB7904_4474_496C_8B6A_47D3DF83F491__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "SkinMagicLib.h"
  10. #include "TabSheet.h"
  11. class CMainFrame : public CFrameWnd
  12. {
  13. protected: // create from serialization only
  14. CMainFrame();
  15. DECLARE_DYNCREATE(CMainFrame)
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CMainFrame)
  23. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. //int m_nIndex;
  28. virtual ~CMainFrame();
  29. #ifdef _DEBUG
  30. virtual void AssertValid() const;
  31. virtual void Dump(CDumpContext& dc) const;
  32. #endif
  33. protected:  // control bar embedded members
  34. CStatusBar  m_wndStatusBar;
  35. CToolBar    m_wndToolBar;
  36.     CImageList m_ilTB;
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CMainFrame)
  40. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  41. afx_msg void OnMenuExer1();
  42. afx_msg void OnMenuExer2();
  43. afx_msg void OnMenuExer3();
  44. afx_msg void OnMenuExer4();
  45. afx_msg void OnMnuNoshell();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. private:
  49. void ApplySkin(int n);
  50. void ShowJob(int n);
  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__AFDB7904_4474_496C_8B6A_47D3DF83F491__INCLUDED_)