-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHDFPluginIpFrame.cpp
More file actions
executable file
·112 lines (88 loc) · 3.23 KB
/
Copy pathHDFPluginIpFrame.cpp
File metadata and controls
executable file
·112 lines (88 loc) · 3.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// HDFPluginIpFrame.cpp : implementation of the CHDFPluginInPlaceFrame class
//
#include "stdafx.h"
#include "HDFPlugin.h"
#include "HDFPluginIpFrame.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CHDFPluginInPlaceFrame
IMPLEMENT_DYNCREATE(CHDFPluginInPlaceFrame, COleDocIPFrameWnd)
BEGIN_MESSAGE_MAP(CHDFPluginInPlaceFrame, COleDocIPFrameWnd)
//{{AFX_MSG_MAP(CHDFPluginInPlaceFrame)
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CHDFPluginInPlaceFrame construction/destruction
CHDFPluginInPlaceFrame::CHDFPluginInPlaceFrame()
{
}
CHDFPluginInPlaceFrame::~CHDFPluginInPlaceFrame()
{
}
int CHDFPluginInPlaceFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (COleDocIPFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;
// CResizeBar implements in-place resizing.
if (!m_wndResizeBar.Create(this))
{
TRACE0("Failed to create resize bar\n");
return -1; // fail to create
}
// By default, it is a good idea to register a drop-target that does
// nothing with your frame window. This prevents drops from
// "falling through" to a container that supports drag-drop.
m_dropTarget.Register(this);
return 0;
}
// OnCreateControlBars is called by the framework to create control bars on the
// container application's windows. pWndFrame is the top level frame window of
// the container and is always non-NULL. pWndDoc is the doc level frame window
// and will be NULL when the container is an SDI application. A server
// application can place MFC control bars on either window.
BOOL CHDFPluginInPlaceFrame::OnCreateControlBars(CFrameWnd* pWndFrame, CFrameWnd* pWndDoc)
{
// Remove this if you use pWndDoc
UNREFERENCED_PARAMETER(pWndDoc);
// Set owner to this window, so messages are delivered to correct app
m_wndToolBar.SetOwner(this);
// Create toolbar on client's frame window
if (!m_wndToolBar.CreateEx(pWndFrame, TBSTYLE_FLAT,WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_SRVR_INPLACE))
{
TRACE0("Failed to create toolbar\n");
return FALSE;
}
// TODO: Delete these three lines if you don't want the toolbar to
// be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
pWndFrame->EnableDocking(CBRS_ALIGN_ANY);
pWndFrame->DockControlBar(&m_wndToolBar);
return TRUE;
}
BOOL CHDFPluginInPlaceFrame::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
return COleDocIPFrameWnd::PreCreateWindow(cs);
}
/////////////////////////////////////////////////////////////////////////////
// CHDFPluginInPlaceFrame diagnostics
#ifdef _DEBUG
void CHDFPluginInPlaceFrame::AssertValid() const
{
COleDocIPFrameWnd::AssertValid();
}
void CHDFPluginInPlaceFrame::Dump(CDumpContext& dc) const
{
COleDocIPFrameWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CHDFPluginInPlaceFrame commands