]>
git.saurik.com Git - apple/mdnsresponder.git/blob - mDNSWindows/DNSServiceBrowser/Windows/Sources/LoginDialog.cpp
2 * Copyright (c) 2003-2004 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
23 Change History (most recent first):
25 $Log: LoginDialog.cpp,v $
26 Revision 1.1 2004/06/18 04:04:36 rpantos
29 Revision 1.2 2004/01/30 02:56:32 bradley
30 Updated to support full Unicode display. Added support for all services on www.dns-sd.org.
32 Revision 1.1 2003/12/25 03:47:28 bradley
33 Login dialog to get the username/password from the user.
42 #include "LoginDialog.h"
47 static char THIS_FILE
[] = __FILE__
;
50 //===========================================================================================================================
52 //===========================================================================================================================
54 BEGIN_MESSAGE_MAP( LoginDialog
, CDialog
)
57 //===========================================================================================================================
59 //===========================================================================================================================
61 LoginDialog::LoginDialog( CWnd
*inParent
)
62 : CDialog( LoginDialog::IDD
, inParent
)
67 //===========================================================================================================================
69 //===========================================================================================================================
71 BOOL
LoginDialog::OnInitDialog( void )
73 CDialog::OnInitDialog();
77 //===========================================================================================================================
79 //===========================================================================================================================
81 void LoginDialog::DoDataExchange( CDataExchange
*inDX
)
83 CDialog::DoDataExchange( inDX
);
86 //===========================================================================================================================
88 //===========================================================================================================================
90 void LoginDialog::OnOK( void )
96 control
= GetDlgItem( IDC_LOGIN_USERNAME_TEXT
);
100 control
->GetWindowText( mUsername
);
105 control
= GetDlgItem( IDC_LOGIN_PASSWORD_TEXT
);
109 control
->GetWindowText( mPassword
);
115 //===========================================================================================================================
117 //===========================================================================================================================
119 BOOL
LoginDialog::GetLogin( CString
&outUsername
, CString
&outPassword
)
121 if( DoModal() == IDOK
)
123 outUsername
= mUsername
;
124 outPassword
= mPassword
;