Fix typos
[TortoiseGit.git] / src / TortoiseProc / MassiveGitTask.h
blob5f6ca2b71390c8f42162c9fef466ea25f7bbd2be
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, 2016-2017, 2023 - 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();
31 void SetProgressList(CGitProgressList* notifyCallbackInstance) { m_NotifyCallbackInstance = notifyCallbackInstance; }
32 void SetProgressCallback(std::function<void(const CTGitPath& path, int index)> progressCallback) { m_progressCallback = progressCallback; }
33 bool ExecuteWithNotify(CTGitPathList* pathList, volatile BOOL& cancel, CGitProgressList::WC_File_NotificationData::Git_WC_Notify_Action action, CGitProgressList* instance);
35 private:
36 void ReportError(const CString& out, int exitCode) override;
37 void ReportProgress(const CTGitPath& path, int index) override;
38 void ReportUserCanceled() override;
39 CGitProgressList* m_NotifyCallbackInstance = nullptr;
40 CGitProgressList::WC_File_NotificationData::Git_WC_Notify_Action m_NotifyCallbackAction;
41 std::function<void(const CTGitPath& path, int index)> m_progressCallback = nullptr;