Allow to use libgit2 for unified diff
[TortoiseGit.git] / src / TortoiseProc / PromptDlg.cpp
blob9f750ed24759598d70ed62d133419d7393acf8da
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2006 - Stefan Kueng
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include "stdafx.h"
20 #include "TortoiseProc.h"
21 #include "PromptDlg.h"
24 IMPLEMENT_DYNAMIC(CPromptDlg, CDialog)
25 CPromptDlg::CPromptDlg(CWnd* pParent /*=NULL*/)
26 : CDialog(CPromptDlg::IDD, pParent)
27 , m_info(_T(""))
28 , m_sPass(_T(""))
29 , m_saveCheck(FALSE)
30 , m_hide(FALSE)
31 , m_hParentWnd(NULL)
35 CPromptDlg::~CPromptDlg()
39 void CPromptDlg::DoDataExchange(CDataExchange* pDX)
41 CDialog::DoDataExchange(pDX);
42 DDX_Text(pDX, IDC_INFOTEXT, m_info);
43 DDX_Text(pDX, IDC_PASSEDIT, m_sPass);
44 DDX_Control(pDX, IDC_PASSEDIT, m_pass);
45 DDX_Check(pDX, IDC_SAVECHECK, m_saveCheck);
48 void CPromptDlg::SetHide(BOOL hide)
50 m_hide = hide;
53 BEGIN_MESSAGE_MAP(CPromptDlg, CDialog)
54 END_MESSAGE_MAP()
57 BOOL CPromptDlg::OnInitDialog()
59 CDialog::OnInitDialog();
61 if (m_hide)
63 m_pass.SetPasswordChar('*');
64 GetDlgItem(IDC_SAVECHECK)->ShowWindow(SW_SHOW);
66 else
68 m_pass.SetPasswordChar('\0');
69 GetDlgItem(IDC_SAVECHECK)->ShowWindow(SW_HIDE);
72 m_pass.SetFocus();
73 if ((m_hParentWnd==NULL)&&(hWndExplorer))
74 CenterWindow(CWnd::FromHandle(m_hParentWnd));
75 return FALSE;