00001 // MainFrm.h : Schnittstelle der Klasse CMainFrame 00002 // 00003 #include "UsefulSplitterWnd.h" 00004 00005 #pragma once 00006 00011 class CMainFrame : public CFrameWnd 00012 { 00013 00014 protected: // Nur aus Serialisierung erstellen 00015 CMainFrame(); 00016 DECLARE_DYNCREATE(CMainFrame) 00017 00018 // Attribute 00019 public: 00020 CUsefulSplitterWnd m_mainSplitter; 00021 BOOL m_bInitSplitter; 00022 // Operationen 00023 public: 00024 CCreateContext* m_pContext; 00025 // Überschreibungen 00026 public: 00027 virtual BOOL PreCreateWindow(CREATESTRUCT& cs); 00028 00029 // Implementierung 00030 public: 00031 virtual ~CMainFrame(); 00032 #ifdef _DEBUG 00033 virtual void AssertValid() const; 00034 virtual void Dump(CDumpContext& dc) const; 00035 #endif 00036 00037 // Generierte Funktionen für die Meldungstabellen 00038 protected: 00039 DECLARE_MESSAGE_MAP() 00040 virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext); 00041 public: 00042 afx_msg void OnSize(UINT nType, int cx, int cy); 00043 }; 00044 00045
1.5.1-p1