blob: 4527e4bccc23c43ff96a824b04ef7469819377b0 (
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
|
// File: KrbAddRealm.cpp
// By: Arthur David Leather
// Created: 12/02/98
// Copyright @1998 Massachusetts Institute of Technology - All rights reserved.
// Description: CPP file for KrbAddRealm.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 "KrbAddRealm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CKrbAddRealm dialog
CKrbAddRealm::CKrbAddRealm(CWnd* pParent /*=NULL*/)
: CDialog(CKrbAddRealm::IDD, pParent)
{
m_newRealm = _T("");
m_startup = TRUE;
//{{AFX_DATA_INIT(CKrbAddRealm)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CKrbAddRealm::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CKrbAddRealm)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CKrbAddRealm, CDialog)
//{{AFX_MSG_MAP(CKrbAddRealm)
ON_WM_SHOWWINDOW()
ON_EN_CHANGE(IDC_EDIT_REALM, OnChangeEditRealm)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CKrbAddRealm message handlers
void CKrbAddRealm::OnShowWindow(BOOL bShow, UINT nStatus)
{
CDialog::OnShowWindow(bShow, nStatus);
m_startup = FALSE;
}
void CKrbAddRealm::OnChangeEditRealm()
{
if (!m_startup)
GetDlgItemText(IDC_EDIT_REALM, m_newRealm);
}
void CKrbAddRealm::OnOK()
{
m_newRealm.TrimLeft();
m_newRealm.TrimRight();
if (m_newRealm.IsEmpty())
{ // stay
MessageBox("OnOK:: Kerberos Realm must be filled in!",
"Leash", MB_OK);
}
else if (-1 != m_newRealm.Find(' '))
{ // stay
MessageBox("OnOK::Illegal space found!", "Leash", MB_OK);
}
else
CDialog::OnOK(); // exit
}
|