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