OSDN Git Service

Show Ignore Sub Menu
[tortoisegit/TortoiseGitJp.git] / TortoiseProc / RevisionGraph / RevisionInRange.cpp
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2008 - TortoiseSVN\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #include "StdAfx.h"\r
20 #include "RevisionInRange.h"\r
21 #include "FullGraphNode.h"\r
22 \r
23 // construction\r
24 \r
25 CRevisionInRange::CRevisionInRange (CRevisionGraphOptionList& list)\r
26     : inherited (list)\r
27     , lowerLimit (static_cast<revision_t>(NO_REVISION))\r
28     , upperLimit (static_cast<revision_t>(NO_REVISION))\r
29 {\r
30 }\r
31 \r
32 // get / set limits\r
33 \r
34 revision_t CRevisionInRange::GetLowerLimit() const\r
35 {\r
36     return lowerLimit;\r
37 }\r
38 \r
39 void CRevisionInRange::SetLowerLimit (revision_t limit)\r
40 {\r
41     lowerLimit = limit;\r
42 }\r
43 \r
44 revision_t CRevisionInRange::GetUpperLimit() const\r
45 {\r
46     return upperLimit;\r
47 }\r
48 \r
49 void CRevisionInRange::SetUpperLimit (revision_t limit)\r
50 {\r
51     upperLimit = limit;\r
52 }\r
53 \r
54 // implement ICopyFilterOption\r
55 \r
56 ICopyFilterOption::EResult \r
57 CRevisionInRange::ShallRemove (const CFullGraphNode* node) const\r
58 {\r
59     // out of revision range?\r
60 \r
61     if ((lowerLimit != NO_REVISION) && (node->GetRevision() < lowerLimit))\r
62         return ICopyFilterOption::REMOVE_NODE;\r
63 \r
64     if ((upperLimit != NO_REVISION) && (node->GetRevision() > upperLimit))\r
65         return ICopyFilterOption::REMOVE_NODE;\r
66 \r
67     return ICopyFilterOption::KEEP_NODE;\r
68 }\r