home *** CD-ROM | disk | FTP | other *** search
- /////////////////////////////////////////////////////////////////////////////
- //
- // File : MainFrm.h
- // Project : MsgTrace
- // Component : MsgTracer
- //---------------------------------------------------------------------------
- // Description : main-frame-window of MsgTracer application
- //
- /////////////////////////////////////////////////////////////////////////////
- //
- // SourceSafe Strings. Do not change.
- //---------------------------------------------------------------------------
- // $Author: jeskes $
- // $Date: $
- // $Revision: $
- //
- /////////////////////////////////////////////////////////////////////////////
-
- #ifndef MAINFRM_H
- #define MAINFRM_H
-
- /////////////////////////////////////////////////////////////////////////////
-
- #include "ExtCoolBar.h"
-
- /////////////////////////////////////////////////////////////////////////////
-
- class CMainFrame : public CFrameWnd
- {
- DECLARE_DYNCREATE( CMainFrame )
- //---------------------------------------------------------------------------
- // construction
- //---------------------------------------------------------------------------
- public:
- CMainFrame();
- virtual ~CMainFrame();
-
- //---------------------------------------------------------------------------
- // attributes
- //---------------------------------------------------------------------------
- protected:
- CStatusBar m_wndStatusBar;
- CExtCoolBar m_wndCoolBar;
-
- //---------------------------------------------------------------------------
- // overrides
- //---------------------------------------------------------------------------
- public:
- //{{AFX_VIRTUAL( CMainFrame )
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- virtual void OnUpdateFrameTitle(BOOL bAddToTitle);
- //}}AFX_VIRTUAL
-
- //---------------------------------------------------------------------------
- // diagnostics
- //---------------------------------------------------------------------------
- #ifdef _DEBUG
- public:
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- //---------------------------------------------------------------------------
- // Generated message map functions
- //---------------------------------------------------------------------------
- protected:
- //{{AFX_MSG( CMainFrame )
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnClose();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
- #endif
-