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
96
97
|
// **************************************************************************************
// File: KrbEditHostServer.cpp
// By: Arthur David Leather
// Created: 12/02/98
// Copyright @1998 Massachusetts Institute of Technology - All rights reserved.
// Description: CPP file for KrbEditHostServer.h. Contains variables and functions
// for Kerberos Four and Five Properties
//
// History:
//
// MM/DD/YY Inits Description of Change
// 12/02/98 ADL Original
// **************************************************************************************
#include "stdafx.h"
#include "leash.h"
#include "Krb4Properties.h"
#include "KrbEditHostServer.h"
#include "lglobals.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CKrbEditHostServer dialog
CKrbEditHostServer::CKrbEditHostServer(CString& editItem, CWnd* pParent)
: CDialog(CKrbEditHostServer::IDD, pParent)
{
m_startup = TRUE;
m_newHost = editItem;
//{{AFX_DATA_INIT(CKrbEditHostServer)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CKrbEditHostServer::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CKrbEditHostServer)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CKrbEditHostServer, CDialog)
//{{AFX_MSG_MAP(CKrbEditHostServer)
ON_WM_SHOWWINDOW()
ON_EN_CHANGE(IDC_EDIT_KDC_HOST, OnChangeEditKdcHost)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CKrbEditHostServer message handlers
BOOL CKrbEditHostServer::OnInitDialog()
{
CDialog::OnInitDialog();
SetDlgItemText(IDC_EDIT_KDC_HOST, m_newHost);
return TRUE;
}
void CKrbEditHostServer::OnShowWindow(BOOL bShow, UINT nStatus)
{
CDialog::OnShowWindow(bShow, nStatus);
m_startup = FALSE;
}
void CKrbEditHostServer::OnChangeEditKdcHost()
{
if (!m_startup)
GetDlgItemText(IDC_EDIT_KDC_HOST, m_newHost);
}
void CKrbEditHostServer::OnOK()
{
m_newHost.TrimLeft();
m_newHost.TrimRight();
if (m_newHost.IsEmpty())
{ // stay
MessageBox("OnOK::The Server field must be filled in!",
"Error", MB_OK);
}
else if (-1 != m_newHost.Find(' '))
{ // stay
MessageBox("OnOK::Illegal space found!", "Error", MB_OK);
}
else
CDialog::OnOK(); // exit
}
|