Use processdlg to format patch.
[TortoiseGit.git] / src / TortoiseProc / Commands / FormatPatchCommand.cpp
blob56a5a65d8c37336bcdd661940dd7830dd8de85ae
1 // TortoiseSVN - a Windows shell extension for easy version control
3 // Copyright (C) 2007-2008 - TortoiseSVN
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 "FormatPatchCommand.h"
22 #include "MessageBox.h"
23 #include "FormatPatchDlg.h"
24 #include "InputLogDlg.h"
25 #include "Git.h"
26 #include "DirFileEnum.h"
27 #include "ShellUpdater.h"
29 #include "ProgressDlg.h"
31 bool FormatPatchCommand::Execute()
33 CFormatPatchDlg dlg;
34 // dlg.m_bIsTag=TRUE;
36 if(dlg.DoModal()==IDOK)
38 CString cmd;
39 CString range;
41 switch(dlg.m_Radio)
43 case IDC_RADIO_SINCE:
44 range=dlg.m_Since;
45 break;
46 case IDC_RADIO_NUM:
47 range.Format(_T("-n%d"),dlg.m_Num);
48 break;
49 case IDC_RADIO_RANGE:
50 range.Format(_T("%s..%s"),dlg.m_From,dlg.m_To);
51 break;
53 cmd.Format(_T("git.exe format-patch -o \"%s\" %s"),
54 dlg.m_Dir,
55 range
58 CProgressDlg progress;
59 progress.m_GitCmd=cmd;
60 if(progress.DoModal()==IDOK)
61 return TRUE;
63 return TRUE;
66 return FALSE;