Modify position of filter and date at log dialog
[TortoiseGit.git] / src / TortoiseProc / RevisionGraph / RemoveDeletedBranches.cpp
blob311d5e3539a0de73d956dc2f93aa01f1cdd7ac3e
1 // TortoiseSVN - a Windows shell extension for easy version control
3 // Copyright (C) 2003-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 "RemoveDeletedBranches.h"
21 #include "FullGraphNode.h"
22 #include "VisibleGraphNode.h"
24 // construction
26 CRemoveDeletedBranches::CRemoveDeletedBranches (CRevisionGraphOptionList& list)
27 : inherited (list)
31 // implement ICopyFilterOption
33 ICopyFilterOption::EResult
34 CRemoveDeletedBranches::ShallRemove (const CFullGraphNode* node) const
36 // "M", not a branch point, not the HEAD
38 return node->GetClassification().Is (CNodeClassification::ALL_COPIES_DELETED)
39 ? ICopyFilterOption::REMOVE_SUBTREE
40 : ICopyFilterOption::KEEP_NODE;
43 /// implement IModificationOption (post-filter deleted non-tagged branches)
45 void CRemoveDeletedBranches::Apply (CVisibleGraph* graph, CVisibleGraphNode* node)
47 if ( (node->GetNext() == NULL)
48 && (node->GetFirstCopyTarget() == NULL)
49 && (node->GetFirstTag() == NULL)
50 && (node->GetClassification().Is (CNodeClassification::PATH_ONLY_DELETED)))
52 node->DropNode (graph, true);