source: trunk/MFCtooling/TestProg/IpFrame.h @ 32

Last change on this file since 32 was 32, checked in by sherbold, 13 years ago
File size: 796 bytes
Line 
1// IpFrame.h : interface of the CInPlaceFrame class
2//
3
4#pragma once
5
6class CInPlaceFrame : public COleIPFrameWnd
7{
8        DECLARE_DYNCREATE(CInPlaceFrame)
9public:
10        CInPlaceFrame();
11
12// Attributes
13public:
14
15// Operations
16public:
17
18// Overrides
19        public:
20        virtual BOOL OnCreateControlBars(CFrameWnd* pWndFrame, CFrameWnd* pWndDoc);
21        virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
22
23// Implementation
24public:
25        virtual ~CInPlaceFrame();
26#ifdef _DEBUG
27        virtual void AssertValid() const;
28        virtual void Dump(CDumpContext& dc) const;
29#endif
30
31protected:
32        CToolBar    m_wndToolBar;
33        COleDropTarget  m_dropTarget;
34        COleResizeBar   m_wndResizeBar;
35
36// Generated message map functions
37protected:
38        afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
39        DECLARE_MESSAGE_MAP()
40};
41
Note: See TracBrowser for help on using the repository browser.