Fixed issue #2219: "add cherry picked from" is not applied when squashing/editing...
[TortoiseGit.git] / src / TortoiseGitBlame / GitBlameLogList.h
blobf9cdef8ae6637ca13f6429ada1584fb8ba71eec2
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2011,2013 - TortoiseGit
4 // Copyright (C) 2011 Sven Strickroth <email@cs-ware.de>
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 "GitLoglistBase.h"
23 class CGitBlameLogList : public CGitLogListBase
25 DECLARE_DYNAMIC(CGitBlameLogList)
26 public:
27 void hideUnimplementedCommands();
28 void GetParentHashes(GitRev *pRev, GIT_REV_LIST &parentHash);
29 void ContextMenuAction(int cmd,int FirstSelect, int LastSelect,CMenu * menu);
31 private:
32 void GetPaths(const CGitHash& hash, std::vector<CTGitPath>& paths);
33 void GetParentNumbers(GitRev *pRev, const std::vector<CTGitPath>& paths, std::set<int> &parentNos);
34 void GetParentHash(GitRev *pRev, int index, CGitHash &parentHash, std::vector<CString>& parentFilenames);