Re-integrate the GPG signed commit into the unit tests
[TortoiseGit.git] / src / TortoiseProc / SendMailDlg.h
blob3a0559c34bc65c42c8bf16c7d7bf96961cb3e314
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2013, 2015-2016 - TortoiseGit
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 #pragma once
20 #include "StandAloneDlg.h"
21 #include "HyperLink.h"
22 #include "ACEdit.h"
23 #include "RegHistory.h"
24 #include "TGitPath.h"
25 #include "SerialPatch.h"
26 #include "registry.h"
27 #include "PatchListCtrl.h"
29 class CSendMailDlg : public CResizableStandAloneDialog
31 DECLARE_DYNAMIC(CSendMailDlg)
33 public:
34 CSendMailDlg(CWnd* pParent = nullptr); // standard constructor
35 virtual ~CSendMailDlg();
37 // Dialog Data
38 enum { IDD = IDD_SENDMAIL };
40 protected:
41 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
42 virtual BOOL OnInitDialog();
43 DECLARE_MESSAGE_MAP()
45 void UpdateSubject();
47 CHyperLink m_SmtpSetup;
49 CACEdit m_ctrlCC;
50 CACEdit m_ctrlTO;
51 CRegHistory m_AddressReg;
53 public:
54 CString m_To;
55 CString m_CC;
56 CString m_Subject;
57 BOOL m_bCustomSubject;
58 BOOL m_bAttachment;
59 BOOL m_bCombine;
60 CTGitPathList m_PathList;
62 private:
63 CPatchListCtrl m_ctrlList;
65 CRegDWORD m_regAttach;
66 CRegDWORD m_regCombine;
68 std::map<int, CSerialPatch> m_MapPatch;
70 afx_msg void OnBnClickedSendmailCombine();
71 afx_msg void OnBnClickedOk();
72 afx_msg void OnLvnItemchangedSendmailPatchs(NMHDR *pNMHDR, LRESULT *pResult);
73 afx_msg void OnNMDblclkSendmailPatchs(NMHDR *pNMHDR, LRESULT *pResult);
74 afx_msg void OnEnChangeSendmailSubject();
75 afx_msg void OnStnClickedSendmailSetup();