75 lines
2.1 KiB
C++
75 lines
2.1 KiB
C++
//+--------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1994 - 1998.
|
|
//
|
|
// File: ToolDefs.h
|
|
//
|
|
// Contents: tool-wide default settings property page
|
|
//
|
|
// Classes: CToolDefs
|
|
//
|
|
// History: 03-14-1998 stevebl Commented
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#if !defined(AFX_TOOLDEFS_H__B6FBC88D_8B7B_11D1_984D_00C04FB9603F__INCLUDED_)
|
|
#define AFX_TOOLDEFS_H__B6FBC88D_8B7B_11D1_984D_00C04FB9603F__INCLUDED_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CToolDefs dialog
|
|
|
|
class CToolDefs : public CPropertyPage
|
|
{
|
|
// Construction
|
|
public:
|
|
CToolDefs(CWnd* pParent = NULL); // standard constructor
|
|
~CToolDefs();
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CToolDefs)
|
|
enum { IDD = IDD_TOOL_DEFAULTS };
|
|
CString m_szStartPath;
|
|
int m_iUI;
|
|
int m_iDeployment;
|
|
//}}AFX_DATA
|
|
TOOL_DEFAULTS * m_pToolDefaults;
|
|
LONG_PTR m_hConsoleHandle;
|
|
MMC_COOKIE m_cookie;
|
|
BOOL m_fMachine;
|
|
|
|
CToolDefs ** m_ppThis;
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CToolDefs)
|
|
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:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CToolDefs)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnBrowse();
|
|
afx_msg void OnChanged();
|
|
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_TOOLDEFS_H__B6FBC88D_8B7B_11D1_984D_00C04FB9603F__INCLUDED_)
|
|
|