-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMFileWnd.H
More file actions
63 lines (50 loc) · 1.55 KB
/
Copy pathMFileWnd.H
File metadata and controls
63 lines (50 loc) · 1.55 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
// File: MFileWnd.H
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Classes Reference and related electronic
// documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft C++ Libraries products.
#if !defined(AFX_METAFILEWND_H__E1CB782F_3AB4_11D1_8E47_00C04FB68D60__INCLUDED_)
#define AFX_METAFILEWND_H__E1CB782F_3AB4_11D1_8E47_00C04FB68D60__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MetaFileWnd.H : header file
//
/////////////////////////////////////////////////////////////////////////////
// CMetaFileWnd window
class CMetaFileWnd : public CFrameWnd
{
// Construction
public:
CMetaFileWnd();
// Attributes
public:
// Operations
public:
void SetObject( IUnknown* pObject );
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMetaFileWnd)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CMetaFileWnd();
protected:
HMETAFILE m_hMetaFile;
IOleObjectPtr m_pOleObject;
IViewObjectPtr m_pViewObject;
CSize m_size;
// Generated message map functions
protected:
//{{AFX_MSG(CMetaFileWnd)
afx_msg void OnPaint();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_METAFILEWND_H__E1CB782F_3AB4_11D1_8E47_00C04FB68D60__INCLUDED_)