Modify position of filter and date at log dialog
[TortoiseGit.git] / src / TortoiseProc / RevisionGraph / CutTrees.cpp
blobda1efde395abe5322cdf66a04cbab5f5ed9f0e88
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 "CutTrees.h"
21 #include "VisibleGraphNode.h"
22 #include "GraphNodeState.h"
24 // construction
26 CCutTrees::CCutTrees
27 ( CRevisionGraphOptionList& list
28 , const CGraphNodeStates* nodeStates)
29 : inherited (list)
30 , nodeStates (nodeStates)
34 // implement IModificationOption
36 void CCutTrees::Apply (CVisibleGraph* graph, CVisibleGraphNode* node)
38 // short-cut: most nodes won't have a state info
40 DWORD state = nodeStates->GetFlags (node, true);
41 if (state == 0)
42 return;
44 // cut at this tree node, if requested by the node state
46 if (state & CGraphNodeStates::SPLIT_ABOVE)
48 node->MakeRoot (graph, false);
51 if (state & CGraphNodeStates::SPLIT_BELOW)
53 CVisibleGraphNode* next = node->GetNext();
54 if (next)
55 next->MakeRoot (graph, false);