Extend static functions in CAppUtils with a window handle parameter
[TortoiseGit.git] / src / TortoiseProc / Commands / IgnoreCommand.cpp
blob67c3bd2b483e752686319b1124a01628962d8578
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2009-2013, 2015-2016, 2018 - TortoiseGit
4 // Copyright (C) 2007-2008 - TortoiseSVN
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 #include "stdafx.h"
21 #include "IgnoreCommand.h"
23 #include "MessageBox.h"
24 #include "AppUtils.h"
25 #include "ShellUpdater.h"
27 bool IgnoreCommand::Execute()
29 bool bmask=false;
31 if (parser.HasKey(L"onlymask"))
32 bmask=true;
34 bool ret = CAppUtils::IgnoreFile(hwndExplorer, pathList, bmask);
35 if (!ret)
36 return false;
38 if (parser.HasKey(L"delete"))
40 int key;
42 CString format;
44 if(CMessageBox::Show(hwndExplorer, IDS_PROC_KEEPFILELOCAL, IDS_APPNAME, MB_ICONERROR|MB_YESNO) == IDYES)
45 format = L"git.exe rm --cache -r -f -- \"%s\"";
46 else
47 format = L"git.exe rm -r -f -- \"%s\"";
49 CString output;
50 CString cmd;
51 int nPath;
52 for (nPath = 0; nPath < pathList.GetCount(); ++nPath)
54 cmd.Format(format, (LPCTSTR)pathList[nPath].GetGitPathString());
55 if (g_Git.Run(cmd, &output, CP_UTF8))
57 key = MessageBox(hwndExplorer, output, L"TortoiseGit", MB_ICONERROR | MB_OKCANCEL);
58 if(key == IDCANCEL)
59 return FALSE;
63 output.Format(IDS_PROC_FILESREMOVED, nPath);
65 CShellUpdater::Instance().AddPathsForUpdate(pathList);
67 MessageBox(hwndExplorer, output, L"TortoiseGit", MB_ICONINFORMATION | MB_OK);
70 CShellUpdater::Instance().AddPathsForUpdate(orgPathList);
71 CShellUpdater::Instance().Flush();
73 return ret;