OSDN Git Service

Change Dir Structure to be same as TortoiseSVN'
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / RevisionGraph / StandardNodePositioning.h
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 #pragma once\r
20 \r
21 #include "Resource.h"\r
22 #include "LayoutOptions.h"\r
23 #include "RevisionGraphOptionsImpl.h"\r
24 \r
25 class IRevisionGraphLayout;\r
26 class CStandardLayoutNodeInfo;\r
27 \r
28 class CStandardNodePositioning \r
29     : public CRevisionGraphOptionImpl<ILayoutOption, 200, ID_VIEW_GROUPBRANCHES>\r
30 {\r
31 private:\r
32 \r
33     // additional options that modify the behavior of this one\r
34 \r
35     IRevisionGraphOption* reduceCrossLines;\r
36 \r
37     /// the individual placement stages\r
38 \r
39     void StackSubTree \r
40         ( CStandardLayoutNodeInfo* node\r
41         , std::vector<long>& branchColumnStarts\r
42         , std::vector<long>& branchColumnEnds\r
43         , std::vector<long>& localColumnStarts\r
44         , std::vector<long>& localColumnEnds);\r
45     void AppendBranch \r
46         ( CStandardLayoutNodeInfo* start\r
47         , std::vector<long>& columnStarts\r
48         , std::vector<long>& columnEnds\r
49         , std::vector<long>& localColumnStarts\r
50         , std::vector<long>& localColumnEnds);\r
51     void PlaceBranch \r
52         ( CStandardLayoutNodeInfo* start\r
53         , std::vector<long>& columnStarts\r
54         , std::vector<long>& columnEnds);\r
55 \r
56     void ShiftNodes \r
57         ( CStandardLayoutNodeInfo* node\r
58         , CSize delta);\r
59     CRect BoundingRect \r
60         (const CStandardLayoutNodeInfo* node);\r
61 \r
62 public:\r
63 \r
64     /// construction\r
65 \r
66     CStandardNodePositioning (CRevisionGraphOptionList& list);\r
67 \r
68     /// link to sub-option\r
69 \r
70     void SetReduceCrossLines (IRevisionGraphOption* reduceCrossLines);\r
71 \r
72     /// cast @a layout pointer to the respective modification\r
73     /// interface and write the data.\r
74 \r
75     virtual void ApplyTo (IRevisionGraphLayout* layout);\r
76 };\r