00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #if !defined(MAINFRM_WIN_H)
00013 #define MAINFRM_WIN_H
00014
00015 #ifndef __AFXEXT_H__
00016 #include <afxext.h>
00017 #endif
00018
00019 #include "win_dialogs_2.h"
00020
00021
00022 class HaMainFrame : public CMDIFrameWnd
00023 {
00024 DECLARE_DYNAMIC(HaMainFrame)
00025 public:
00026 HaMainFrame();
00027
00028
00029 public:
00030
00031
00032 public:
00033 virtual ~HaMainFrame();
00034
00035 BOOL CreateStatusBar();
00036
00037 public:
00038
00039 CStatusBar m_StatusBar;
00040 CToolBar m_MainToolBar;
00041 CDialogBar m_BottomBar;
00042
00043 CCommandEdit m_cmd_edit;
00044
00045
00046 protected:
00047
00048 afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
00049
00050 afx_msg BOOL OnViewBar(UINT nID);
00051 afx_msg void OnEnterCommand();
00052 DECLARE_MESSAGE_MAP()
00053 };
00054
00055
00056
00057
00058 #endif // !defined(MAINFRM_WIN_H)