Merge branch 'master' of git://github.com/Jopie64/tortoisegit
[TortoiseGit.git] / src / TortoiseProc / FormatPatchDlg.h
blob3cdcf0a442f6c9a974e6f2578481f349a9a379fa
1 #pragma once
3 #include "StandAloneDlg.h"
4 #include "HistoryCombo.h"
5 #include "Registry.h"
7 // CFormatPatchDlg dialog
9 class CFormatPatchDlg : public CResizableStandAloneDialog
11 DECLARE_DYNAMIC(CFormatPatchDlg)
13 public:
14 CFormatPatchDlg(CWnd* pParent = NULL); // standard constructor
15 virtual ~CFormatPatchDlg();
17 // Dialog Data
18 enum { IDD = IDD_FORMAT_PATCH };
20 protected:
21 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
22 virtual BOOL OnInitDialog();
24 CHistoryCombo m_cDir;
25 CHistoryCombo m_cSince;
26 CHistoryCombo m_cFrom;
27 CHistoryCombo m_cTo;
28 CEdit m_cNum;
29 CRegDWORD m_regSendMail;
31 DECLARE_MESSAGE_MAP()
32 public:
33 int m_Num;
34 CString m_Dir;
35 CString m_From;
36 CString m_To;
37 CString m_Since;
38 int m_Radio;
39 BOOL m_bSendMail;
41 afx_msg void OnBnClickedButtonDir();
42 afx_msg void OnBnClickedButtonFrom();
43 afx_msg void OnBnClickedButtonTo();
44 afx_msg void OnBnClickedOk();
45 afx_msg void OnBnClickedRadio();
46 afx_msg void OnBnClickedButtonRef();