Use processdlg to format patch.
[TortoiseGit.git] / src / TortoiseProc / Commands / RevertCommand.cpp
blob32827c79de8c9a25e76e1505e645773d0f0084a7
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 "RevertCommand.h"
22 #include "RevertDlg.h"
23 //#include "SVNProgressDlg.h"
24 #include "MessageBox.h"
26 bool RevertCommand::Execute()
28 CRevertDlg dlg;
29 dlg.m_pathList = pathList;
30 if (dlg.DoModal() == IDOK)
33 if (dlg.m_selectedPathList.GetCount() == 0)
34 return FALSE;
35 CString cmd;
36 CString out;
37 for(int i=0;i< dlg.m_selectedPathList.GetCount() ;i++)
39 cmd.Format(_T("git.exe checkout -f -- \"%s\""),dlg.m_selectedPathList[i].GetGitPathString());
40 if(g_Git.Run(cmd,&out,CP_ACP))
42 CMessageBox::Show(NULL,out,_T("TortoiseGit"),MB_OK);
45 #if 0
46 CSVNProgressDlg progDlg;
47 theApp.m_pMainWnd = &progDlg;
48 progDlg.SetCommand(CSVNProgressDlg::SVNProgress_Revert);
49 if (parser.HasVal(_T("closeonend")))
50 progDlg.SetAutoClose(parser.GetLongVal(_T("closeonend")));
51 progDlg.SetOptions(dlg.m_bRecursive ? ProgOptRecursive : ProgOptNonRecursive);
52 progDlg.SetPathList(dlg.m_pathList);
53 progDlg.SetItemCount(dlg.m_selectedPathList.GetCount());
54 progDlg.SetSelectedList(dlg.m_selectedPathList);
55 progDlg.DoModal();
56 #endif
57 return true;
59 return false;