Fix typos
[TortoiseGit.git] / src / TortoiseProc / PromptDlg.h
blob0aad1a00befa0c408fc388269b013ba281ed98fb
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2020, 2023 - TortoiseGit
4 // Copyright (C) 2003-2006 - Stefan Kueng
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #pragma once
22 #include "resource.h"
23 #include "StandAloneDlg.h"
25 /**
26 * \ingroup TortoiseProc
28 * A dialog box which is used by git authentication callback
29 * to prompt the user for authentication data.
31 class CPromptDlg : public CStandAloneDialog
33 DECLARE_DYNAMIC(CPromptDlg)
35 public:
36 CPromptDlg(CWnd* pParent = nullptr);
37 virtual ~CPromptDlg();
39 void SetHide(BOOL hide);
41 enum { IDD = IDD_PROMPT };
42 protected:
43 void DoDataExchange(CDataExchange* pDX) override; // DDX/DDV support
44 BOOL OnInitDialog() override;
46 DECLARE_MESSAGE_MAP()
47 public:
48 CString m_info;
49 CString m_sPass;
50 CEdit m_pass;
51 BOOL m_hide;
52 BOOL m_saveCheck;
53 HWND m_hParentWnd;