You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.4 KiB
81 lines
2.4 KiB
//+--------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1994 - 1998.
|
|
//
|
|
// File: Xforms.h
|
|
//
|
|
// Contents: modifications (transforms) property sheet
|
|
//
|
|
// Classes: XForms
|
|
//
|
|
// History: 03-14-1998 stevebl Commented
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#if !defined(AFX_XFORMS_H__7AC6D087_9383_11D1_984E_00C04FB9603F__INCLUDED_)
|
|
#define AFX_XFORMS_H__7AC6D087_9383_11D1_984E_00C04FB9603F__INCLUDED_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CXforms dialog
|
|
|
|
class CXforms : public CPropertyPage
|
|
{
|
|
DECLARE_DYNCREATE(CXforms)
|
|
|
|
// Construction
|
|
public:
|
|
CXforms();
|
|
~CXforms();
|
|
|
|
CXforms ** m_ppThis;
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CXforms)
|
|
enum { IDD = IDD_MODIFICATIONS };
|
|
// NOTE - ClassWizard will add data members here.
|
|
// DO NOT EDIT what you see in these blocks of generated code !
|
|
//}}AFX_DATA
|
|
CAppData * m_pData;
|
|
IClassAdmin * m_pIClassAdmin;
|
|
LONG_PTR m_hConsoleHandle;
|
|
MMC_COOKIE m_cookie;
|
|
BOOL m_fModified;
|
|
CScopePane * m_pScopePane;
|
|
BOOL m_fPreDeploy;
|
|
CString m_szInitialPackageName;
|
|
|
|
// Overrides
|
|
// ClassWizard generate virtual function overrides
|
|
//{{AFX_VIRTUAL(CXforms)
|
|
public:
|
|
virtual BOOL OnApply();
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
void RefreshData();
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CXforms)
|
|
afx_msg void OnMoveUp();
|
|
afx_msg void OnMoveDown();
|
|
afx_msg void OnAdd();
|
|
afx_msg void OnRemove();
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_XFORMS_H__7AC6D087_9383_11D1_984E_00C04FB9603F__INCLUDED_)
|