OSDN Git Service

Fix merge miss branch info
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / SimplePrompt.cpp
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2006 - Stefan Kueng\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #include "stdafx.h"\r
20 #include "TortoiseProc.h"\r
21 #include "SimplePrompt.h"\r
22 \r
23 IMPLEMENT_DYNAMIC(CSimplePrompt, CDialog)\r
24 CSimplePrompt::CSimplePrompt(CWnd* pParent /*=NULL*/)\r
25         : CDialog(CSimplePrompt::IDD, pParent)\r
26         , m_sUsername(_T(""))\r
27         , m_sPassword(_T(""))\r
28         , m_bSaveAuthentication(FALSE)\r
29         , m_sRealm(_T(""))\r
30 {\r
31 }\r
32 \r
33 CSimplePrompt::~CSimplePrompt()\r
34 {\r
35 }\r
36 \r
37 void CSimplePrompt::DoDataExchange(CDataExchange* pDX)\r
38 {\r
39         CDialog::DoDataExchange(pDX);\r
40         DDX_Text(pDX, IDC_USEREDIT, m_sUsername);\r
41         DDX_Text(pDX, IDC_PASSEDIT, m_sPassword);\r
42         DDX_Check(pDX, IDC_SAVECHECK, m_bSaveAuthentication);\r
43         DDX_Text(pDX, IDC_REALM, m_sRealm);\r
44 }\r
45 \r
46 \r
47 BEGIN_MESSAGE_MAP(CSimplePrompt, CDialog)\r
48 END_MESSAGE_MAP()\r
49 \r
50 BOOL CSimplePrompt::OnInitDialog()\r
51 {\r
52         CDialog::OnInitDialog();\r
53 \r
54         GetDlgItem(IDC_USEREDIT)->SetFocus();\r
55         if ((m_hParentWnd==NULL)&&(hWndExplorer))\r
56                 CenterWindow(CWnd::FromHandle(m_hParentWnd));\r
57         return FALSE;\r
58 }\r
59 \r