Update RevisionGraph to 15570
[TortoiseGit.git] / src / TortoiseProc / RevisionGraph / ShowWC.h
blobed9296c03af76f266af516f16c0a76781244ac54
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 #pragma once
21 // include base classes
23 #include "CopyFilterOptions.h"
24 #include "ModificationOptions.h"
25 #include "revisiongraphoptionsimpl.h"
26 #include "Resource.h"
28 /**
29 * "Pin" current working copy revision,
30 * i.e. keep it from being removed by other rules.
33 class CShowWC
34 : public CModificationOptionImpl
35 < CCombineInterface
36 < ICopyFilterOption
37 , IModificationOption>
38 , 100
39 , ID_VIEW_SHOWWCREV
40 , true // crawl branches first
41 , false // root last
42 , false> // no need to execute this more than once
44 public:
46 /// construction
48 CShowWC (CRevisionGraphOptionList& list);
50 /// implement IRevisionGraphOption:
51 /// this one must always be executed
52 /// (ICopyFilterOption, if selected; IModificationOption is not)
54 virtual bool IsActive() const;
56 /// implement ICopyFilterOption (pre-filter most nodes)
58 virtual EResult ShallRemove (const CFullGraphNode* node) const;
60 /// implement IModificationOption (post-filter deleted non-tagged branches)
62 virtual void Apply (CVisibleGraph*, CVisibleGraphNode* node);