home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Shareware / Programare / skincraft / SkinCrafter_v1.4.12_Demo.msi / _49E29CB9A65AABBF653C1037E1AA74B6 / _956F9DE6942A4664A5D4FF767D110E82 < prev    next >
Encoding:
Text File  |  2003-09-06  |  1.8 KB  |  67 lines

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_MAINFRM_H__B7EFF240_0562_4A22_9811_04FE85B230FD__INCLUDED_)
  6. #define AFX_MAINFRM_H__B7EFF240_0562_4A22_9811_04FE85B230FD__INCLUDED_
  7.  
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11.  
  12. class CMainFrame : public CMDIFrameWnd
  13. {
  14.     DECLARE_DYNAMIC(CMainFrame)
  15. public:
  16.     CMainFrame();
  17.  
  18.     void FillMenu();
  19.  
  20. // Attributes
  21. public:
  22.     CTypedPtrMap <CMapStringToString,CString,CString> m_MenuMap;
  23.  
  24. // Operations
  25. public:
  26.  
  27. // Overrides
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CMainFrame)
  30.     public:
  31.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  32.     virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  33.     protected:
  34.     virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38. public:
  39.     virtual ~CMainFrame();
  40. #ifdef _DEBUG
  41.     virtual void AssertValid() const;
  42.     virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44.  
  45. protected:  // control bar embedded members
  46.     CStatusBar  m_wndStatusBar;
  47.     CToolBar    m_wndToolBar;
  48.  
  49. // Generated message map functions
  50. protected:
  51.     //{{AFX_MSG(CMainFrame)
  52.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  53.     afx_msg void OnFileOpen();
  54.     afx_msg void OnToolsRemoveskin();
  55.     afx_msg void OnToolsApplyskin();
  56.     afx_msg void OnSkinSetskindir();
  57.     //}}AFX_MSG
  58.     DECLARE_MESSAGE_MAP()
  59. };
  60.  
  61. /////////////////////////////////////////////////////////////////////////////
  62.  
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  65.  
  66. #endif // !defined(AFX_MAINFRM_H__B7EFF240_0562_4A22_9811_04FE85B230FD__INCLUDED_)
  67.