Fixed issue #2495: "Show Reflog" dialog shows empty action for "push" entries
[TortoiseGit.git] / src / TortoiseProc / MassiveGitTask.h
blob32e0ffda4eb0980b9870716b5067f21039231e66
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2011-2013 - Sven Strickroth <email@cs-ware.de>
4 // Copyright (C) 2013-2014 - TortoiseGit
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.
21 #pragma once
22 #include "MassiveGitTaskBase.h"
23 #include "GitProgressList.h"
25 class CMassiveGitTask : public CMassiveGitTaskBase
27 public:
28 CMassiveGitTask(CString params, BOOL isPath = TRUE, bool ignoreErrors = false);
29 ~CMassiveGitTask(void);
31 bool ExecuteWithNotify(CTGitPathList* pathList, volatile BOOL& cancel, CGitProgressList::WC_File_NotificationData::git_wc_notify_action_t action, CGitProgressList* instance);
33 private:
34 void ReportError(const CString& out);
35 void ReportProgress(const CTGitPath& path, int index);
36 void ReportUserCanceled();
37 CGitProgressList * m_NotifyCallbackInstance;
38 CGitProgressList::WC_File_NotificationData::git_wc_notify_action_t m_NotifyCallbackAction;