home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n04 / multilin.exe / MAINFRM.H < prev    next >
C/C++ Source or Header  |  1995-04-01  |  1KB  |  51 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CFrameWnd
  6. {
  7. protected: // create from serialization only
  8.     CMainFrame();
  9.     DECLARE_DYNCREATE(CMainFrame)
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Overrides
  18.     // ClassWizard generated virtual function overrides
  19.     //{{AFX_VIRTUAL(CMainFrame)
  20.     public:
  21.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  22.     //}}AFX_VIRTUAL
  23.  
  24. // Implementation
  25. public:
  26.     virtual ~CMainFrame();
  27. #ifdef _DEBUG
  28.     virtual void AssertValid() const;
  29.     virtual void Dump(CDumpContext& dc) const;
  30. #endif
  31.  
  32. protected:  // control bar embedded members
  33.     CStatusBar  m_wndStatusBar;
  34.  
  35. // Generated message map functions
  36. protected:
  37.     //{{AFX_MSG(CMainFrame)
  38.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  39.     afx_msg void OnLanguageTranslation();
  40.     afx_msg void OnLocaleCurrency();
  41.     afx_msg void OnLocaleDate();
  42.     afx_msg void OnLocaleList();
  43.     afx_msg void OnLocaleNumber();
  44.     afx_msg void OnLocaleTime();
  45.     afx_msg void OnLanguageSystem();
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.