Leaked source code of windows server 2003
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.
|
|
/*++
Copyright (c) 1994-2002 Microsoft Corporation
Module Name : defws.h
Abstract: Default Web Site Dialog
Author: Ronald Meijer (ronaldm) Sergei Antonov (sergeia)
Project: Internet Services Manager
Revision History: --*/ #ifndef __DEFWS_H__
#define __DEFWS_H__
class CDefWebSitePage : public CInetPropertyPage /*++
Class Description:
WWW Errors property page
Public Interface:
CDefWebSitePage : Constructor CDefWebSitePage : Destructor
--*/ { DECLARE_DYNCREATE(CDefWebSitePage)
//
// Construction
//
public: CDefWebSitePage(CInetPropertySheet * pSheet = NULL); ~CDefWebSitePage();
int BrowseForFolderCallback(HWND hwnd, UINT uMsg, LPARAM lParam); //
// Dialog Data
//
protected: enum { RADIO_UNLIMITED, RADIO_LIMITED, };
//{{AFX_DATA(CDefWebSitePage)
enum { IDD = IDD_DEFAULT_SITE }; int m_nUnlimited; BOOL m_fEnableDynamic; BOOL m_fEnableStatic; BOOL m_fCompatMode; CString m_strDirectory; CEdit m_edit_DirectorySize; CEdit m_edit_Directory; CButton m_button_Browse; //}}AFX_DATA
BOOL m_fEnableLimiting; BOOL m_fCompressionDirectoryChanged; BOOL m_fInitCompatMode; CILong m_ilSize;
//
// Overrides
//
protected: virtual HRESULT FetchLoadedValues(); virtual HRESULT SaveInfo();
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(CDefWebSitePage)
protected: virtual void DoDataExchange(CDataExchange * pDX); //}}AFX_VIRTUAL
//
// Implementation
//
protected: // Generated message map functions
//{{AFX_MSG(CDefWebSitePage)
virtual BOOL OnInitDialog(); afx_msg void OnButtonBrowse(); afx_msg void OnRadioLimited(); afx_msg void OnRadioUnlimited(); afx_msg void OnCheckDynamicCompression(); afx_msg void OnCheckStaticCompression(); afx_msg void OnCheckCompatMode(); afx_msg void OnChangeEditCompressDirectory(); afx_msg void OnDestroy(); //}}AFX_MSG
afx_msg void OnItemChanged();
DECLARE_MESSAGE_MAP()
// HRESULT BuildInstanceList();
// DWORD FetchInstanceSelected();
void SetControlStates(); BOOL HasCompression() const;
private: CIISCompressionProps * m_ppropCompression; BOOL m_fFilterPathFound; LPTSTR m_pPathTemp; };
//
// Inline Expansion
//
// <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
inline BOOL CDefWebSitePage::HasCompression() const { return m_fFilterPathFound && CInetPropertyPage::IsCompressionConfigurable() && CInetPropertyPage::HasCompression(); }
#endif // __DEFWS_H__
|