summaryrefslogtreecommitdiffstats
path: root/src/windows/leash/KrbProperties.h
blob: f476ac1a26721a7aa60a922ef2b986138b9e0c04 (plain)
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
//	**************************************************************************************
//	File:			KrbProperties.h
//	By:				Arthur David Leather
//	Created:		12/02/98
//	Copyright		@1998 Massachusetts Institute of Technology - All rights reserved.
//	Description:	H file for KrbProperties.cpp. Contains variables and functions
//					for Kerberos Four Properties
//
//	History:
//
//	MM/DD/YY	Inits	Description of Change
//	02/01/98	ADL		Original
//	**************************************************************************************


#if !defined(AFX_KRB_PROPERTY_H__CD702F99_7495_11D0_8FDC_00C04FC2A0C2__INCLUDED_)
#define AFX_KRB_PROPERTY_H__CD702F99_7495_11D0_8FDC_00C04FC2A0C2__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// KrbProperties.h : header file
//

#include "KrbConfigOptions.h"
#include "KrbRealmHostMaintenance.h"
#include "KrbDomainRealmMaintenance.h"
#ifndef NO_KRB4
#include "Krb4DomainRealmMaintenance.h"
#include "Krb4RealmHostMaintenance.h"
#endif
#include "KrbMiscConfigOpt.h"

//////////////////////////////////////////////////////////////////////
// CKrbProperties

class CKrbProperties : public CPropertySheet
{
private:
	DECLARE_DYNAMIC(CKrbProperties)

public:
	//CKrbConfigFileLocation m_fileLocation;
	CKrbConfigOptions m_configOptions;
#ifndef NO_KRB4
	CKrb4RealmHostMaintenance m_krb4RealmHostMaintenance;
#endif
	CKrbRealmHostMaintenance m_realmHostMaintenance;
#ifndef NO_KRB4
	CKrb4DomainRealmMaintenance m_krb4DomainRealmMaintenance;
#endif
	CKrbDomainRealmMaintenance m_domainRealmMaintenance;
    CKrbMiscConfigOpt m_miscConfigOpt;

	static BOOL KrbPropertiesOn;
	static BOOL applyButtonEnabled;
	static CHAR m_krbPath[MAX_PATH];
	static CHAR m_krbrealmPath[MAX_PATH];

// Construction
public:
	CKrbProperties(UINT nIDCaption, CWnd* pParentWnd = NULL,
	           UINT iSelectPage = 0);
	CKrbProperties(LPCTSTR pszCaption, CWnd* pParentWnd = NULL,
	           UINT iSelectPage = 0);

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CKrbProperties)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CKrbProperties();

	// Generated message map functions
protected:
	//{{AFX_MSG(CKrbProperties)
		// NOTE - the ClassWizard will add and remove member functions here.
    afx_msg void OnHelp();
    //}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_KRB_PROPERTY_H__CD702F99_7495_11D0_8FDC_00C04FC2A0C2__INCLUDED_)