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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
// PropPageHolder.cpp : implementation file
//
#include "stdafx.h"
#include "PropPageHolder.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPropPageHolder
CPropPageHolder::CPropPageHolder()
{
m_pSite = NULL;
m_pPropPage = NULL;
m_bActivated = false;
memset(&m_PageInfo, 0, sizeof(PROPPAGEINFO));
}
/*CPropPageHolder::CPropPageHolder(IPropertyPage* pPage, IUnknown* pSite)
{
m_pSite = NULL;
m_pPropPage = NULL;
m_bActivated = false;
memset(&m_PageInfo, 0, sizeof(PROPPAGEINFO));
// We were passed a IUnknown, so Initialize from there
Initialize(pPage, pSite);
}
*/
CPropPageHolder::~CPropPageHolder()
{
// Just in case
if(m_pPropPage != NULL)
Destroy();
if(m_PageInfo.cb != 0)
{
CoTaskMemFree(m_PageInfo.pszDocString);
CoTaskMemFree(m_PageInfo.pszHelpFile);
CoTaskMemFree(m_PageInfo.pszTitle);
}
}
/////////////////////////////////////////////////////////////////////////////
// CPropPageHolder message handlers
//////////////////////////////////////////////////////////////////
// Loads Prop Page if it has one
HRESULT CPropPageHolder::Initialize(IPropertyPage* pPage, IUnknown* pSite)
{
// Can't Reinitialize
ASSERT(!m_pPropPage);
ASSERT(pSite);
ASSERT(pPage);
// This is the Container site
// (Returned from IPropertyPageSite::GetPageContainer)
m_pSite = pSite;
m_pPropPage = pPage;
pPage->AddRef();
// Get a IPropertyPageSite Pointer to ourselves
// for the new Proppage
IPropertyPageSite* pPageSite = NULL;
QueryInterface(IID_IPropertyPageSite, (void**)&pPageSite);
ASSERT(pPageSite);
// Set Page Site
HRESULT hr = m_pPropPage->SetPageSite(pPageSite);
// Make sure to reset to null if failed
if(FAILED(hr))
{
m_pPropPage->Release();
m_pPropPage = NULL;
}
else
{
// Property page should have AddRef'ed,
// So release our pointer
Release();
}
return hr;
}
//////////////////////////////////////////////////////////////////
// Creates and shows PropPage
HRESULT CPropPageHolder::Create(HWND hwndParent, const RECT& rect, bool bModalParent /*= true*/)
{
// Need to Initialize First
ASSERT(m_pPropPage);
// If we're already activated then just
// move to new coordinates
if(m_bActivated)
return Move(rect);
HRESULT hr;
// Activate the Page
hr = m_pPropPage->Activate(hwndParent, &rect, true);
if(!FAILED(hr))
{
m_bActivated = true;
// Make sure it's visible
m_pPropPage->Show(SW_SHOW);
}
return hr;
}
//////////////////////////////////////////////////////////////////
// Destroys and Releases PropPage
HRESULT CPropPageHolder::Destroy()
{
// Can't destroy NULL object
if(m_pPropPage == NULL)
return S_OK;
Close();
// Make it let go of our IPropertyPageSite Pointer
HRESULT hr = m_pPropPage->SetPageSite(NULL);
// Then release it
m_pPropPage->Release();
m_pPropPage = NULL;
return hr;
}
HRESULT CPropPageHolder::Close()
{
// Need to Initialize
// and create first
ASSERT(m_pPropPage);
if(m_bActivated)
{
m_bActivated = false;
// Deactivate page
return m_pPropPage->Deactivate();
}
// It went okay but didn't do anything so...
return S_FALSE;
}
//////////////////////////////////////////////////////////////////
// Calls IPropPage Show
HRESULT CPropPageHolder::Show(UINT nCmdShow)
{
// Need to Initialize
// and create first
ASSERT(m_pPropPage);
ASSERT(m_bActivated);
return m_pPropPage->Show(nCmdShow);
}
//////////////////////////////////////////////////////////////////
// Calls IPropPage Move
HRESULT CPropPageHolder::Move(const RECT& rect)
{
// Need to Initialize
// and create first
ASSERT(m_pPropPage);
ASSERT(m_bActivated);
return m_pPropPage->Move(&rect);
}
//////////////////////////////////////////////////////////////////
// PropPage is inited properly if pointer not null
bool CPropPageHolder::IsInitialized()
{
return !(m_pPropPage == NULL);
}
//////////////////////////////////////////////////////////////////
// Calls IPropPage Apply (results in a call to OnStatusChanged
// in our IPropPageSite)
HRESULT CPropPageHolder::Apply()
{
// Need to Initialize First
ASSERT(m_pPropPage);
return m_pPropPage->Apply();
}
//////////////////////////////////////////////////////////////////
// Is it Created?
bool CPropPageHolder::IsActivated()
{ return m_bActivated; }
/////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
// PropertyPageSite
STDMETHODIMP CPropPageHolder::OnStatusChange(DWORD dwFlags)
{
TRACE("CPropPageHolder::XPropertyPageSite::OnStatusChange\n");
// We don't need to implement any of this
// as we use delayed saving
return S_OK;
}
STDMETHODIMP CPropPageHolder::GetLocaleID(LCID* pLocaleID)
{
TRACE("CPropPageHolder::XPropertyPageSite::GetLocaleID\n");
// Just give'm a default language
*pLocaleID = LOCALE_SYSTEM_DEFAULT;
return S_OK;
}
STDMETHODIMP CPropPageHolder::GetPageContainer(IUnknown** ppUnk)
{
TRACE("CPropPageHolder::XPropertyPageSite::GetPageContainer\n");
// If Error we need to set to NULL
// This takes care of that cuz NULL is the only error around
*ppUnk = m_pSite;
if(!m_pSite)
return E_UNEXPECTED;
m_pSite->AddRef();
// Sorry
return S_OK;
}
STDMETHODIMP CPropPageHolder::TranslateAccelerator(LPMSG pMsg)
{
TRACE("CPropPageHolder::XPropertyPageSite::TranslateAccelerator\n");
// Sorry
return E_NOTIMPL;
}
string CPropPageHolder::GetTitle()
{
USES_CONVERSION;
LoadInfo();
if(m_PageInfo.pszTitle)
return OLE2T(m_PageInfo.pszTitle);
return _T("");
}
string CPropPageHolder::GetHelpFile()
{
USES_CONVERSION;
LoadInfo();
if(m_PageInfo.pszHelpFile)
return OLE2T(m_PageInfo.pszHelpFile);
return _T("");
}
DWORD CPropPageHolder::GetHelpContext()
{
LoadInfo();
return m_PageInfo.dwHelpContext;
}
HRESULT CPropPageHolder::LoadInfo()
{
if(m_PageInfo.cb != 0)
return S_OK;
ASSERT(m_pPropPage);
m_PageInfo.cb = sizeof(PROPPAGEINFO);
return m_pPropPage->GetPageInfo(&m_PageInfo);
}
|