OSDN Git Service

Add Show Whole Project Checkbox at commitdlg.
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / LogDlgHelper.h
1 // TortoiseGit - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2007 - TortoiseGit\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 #include "Git.h"\r
21 #include "GitRev.h"\r
22 #include "GitStatus.h"\r
23 #include "ILogReceiver.h"\r
24 #include "lanes.h"\r
25 #include <set> \r
26 \r
27 class CLogDlg;\r
28 \r
29 /**\r
30  * \ingroup TortoiseProc\r
31  * Instances of CStoreSelection save the selection of the CLogDlg. When the instance\r
32  * is deleted the destructor restores the selection.\r
33  */\r
34 typedef std::map<CString, int> MAP_HASH_REV;\r
35 \r
36 class CStoreSelection\r
37 {\r
38 public:\r
39         CStoreSelection(CLogDlg* dlg);\r
40         ~CStoreSelection();\r
41 protected:\r
42         CLogDlg* m_logdlg;\r
43         std::set<LONG> m_SetSelectedRevisions;\r
44 };\r
45 \r
46 \r
47 /**\r
48  * \ingroup TortoiseProc\r
49  * Helper class for the log dialog, handles all the log entries, including\r
50  * sorting.\r
51  */\r
52 class CLogDataVector :  public std::vector<GitRev>\r
53 {\r
54 public:\r
55         /// De-allocates log items.\r
56         CLogDataVector()\r
57         {\r
58                 m_FirstFreeLane=0;\r
59         }\r
60         void ClearAll();\r
61         int  ParserFromLog(CTGitPath *path =NULL,int count = -1,int infomask=CGit::LOG_INFO_STAT|CGit::LOG_INFO_FILESTATE,\r
62                                                                                          CString *from=NULL,CString *to=NULL);\r
63         int  ParserShortLog(CTGitPath *path ,CString &hash,int count=-1 ,int mask=CGit::LOG_INFO_ONLY_HASH );\r
64         int FetchFullInfo(int i);\r
65 //      void AddFullInfo(\r
66 \r
67         Lanes m_Lns;\r
68         int      m_FirstFreeLane;\r
69         MAP_HASH_REV m_HashMap;\r
70         void updateLanes(GitRev& c, Lanes& lns, CString &sha) ;\r
71         void setLane(CString& sha) ;\r
72         \r
73         \r
74 \r
75 \r
76 #if 0\r
77         /// Ascending date sorting.\r
78         struct AscDateSort\r
79         {\r
80                 bool operator()(GitRev& pStart, GitRev& pEnd)\r
81                 {\r
82                         return pStart->tmDate < pEnd->tmDate;\r
83                 }\r
84         };\r
85         /// Descending date sorting.\r
86         struct DescDateSort\r
87         {\r
88                 bool operator()(GitRev& pStart, GitRev& pEnd)\r
89                 {\r
90                         return pStart->tmDate > pEnd->tmDate;\r
91                 }\r
92         };\r
93         /// Ascending revision sorting.\r
94         struct AscRevSort\r
95         {\r
96                 bool operator()(GitRev& pStart, GitRev& pEnd)\r
97                 {\r
98                         return pStart->Rev < pEnd->Rev;\r
99                 }\r
100         };\r
101         /// Descending revision sorting.\r
102         struct DescRevSort\r
103         {\r
104                 bool operator()(GitRev& pStart, GitRev& pEnd)\r
105                 {\r
106                         return pStart->Rev > pEnd->Rev;\r
107                 }\r
108         };\r
109         /// Ascending author sorting.\r
110         struct AscAuthorSort\r
111         {\r
112                 bool operator()(GitRev& pStart, GitRev& pEnd)\r
113                 {\r
114                         int ret = pStart->sAuthor.CompareNoCase(pEnd->sAuthor);\r
115                         if (ret == 0)\r
116                                 return pStart->Rev < pEnd->Rev;\r
117                         return ret<0;\r
118                 }\r
119         };\r
120         /// Descending author sorting.\r
121         struct DescAuthorSort\r
122         {\r
123                 bool operator()(GitRev& pStart, GitRev& pEnd)\r
124                 {\r
125                         int ret = pStart->sAuthor.CompareNoCase(pEnd->sAuthor);\r
126                         if (ret == 0)\r
127                                 return pStart->Rev > pEnd->Rev;\r
128                         return ret>0;\r
129                 }\r
130         };\r
131         /// Ascending bugID sorting.\r
132         struct AscBugIDSort\r
133         {\r
134                 bool operator()(GitRev& pStart, GitRev& pEnd)\r
135                 {\r
136                         int ret = pStart->sBugIDs.CompareNoCase(pEnd->sBugIDs);\r
137                         if (ret == 0)\r
138                                 return pStart->Rev < pEnd->Rev;\r
139                         return ret<0;\r
140                 }\r
141         };\r
142         /// Descending bugID sorting.\r
143         struct DescBugIDSort\r
144         {\r
145                 bool operator()(GitRev& pStart, GitRev& pEnd)\r
146                 {\r
147                         int ret = pStart->sBugIDs.CompareNoCase(pEnd->sBugIDs);\r
148                         if (ret == 0)\r
149                                 return pStart->Rev > pEnd->Rev;\r
150                         return ret>0;\r
151                 }\r
152         };\r
153         /// Ascending message sorting.\r
154         struct AscMessageSort\r
155         {\r
156                 bool operator()(GitRev& pStart, GitRev& pEnd)\r
157                 {\r
158                         return pStart->sShortMessage.CompareNoCase(pEnd->sShortMessage)<0;\r
159                 }\r
160         };\r
161         /// Descending message sorting.\r
162         struct DescMessageSort\r
163         {\r
164                 bool operator()(GitRev& pStart, GitRev& pEnd)\r
165                 {\r
166                         return pStart->sShortMessage.CompareNoCase(pEnd->sShortMessage)>0;\r
167                 }\r
168         };\r
169         /// Ascending action sorting\r
170         struct AscActionSort\r
171         {\r
172                 bool operator() (GitRev& pStart, GitRev& pEnd)\r
173                 {\r
174                         if (pStart->actions == pEnd->actions)\r
175                                 return pStart->Rev < pEnd->Rev;\r
176                         return pStart->actions < pEnd->actions;\r
177                 }\r
178         };\r
179         /// Descending action sorting\r
180         struct DescActionSort\r
181         {\r
182                 bool operator() (GitRev& pStart, GitRev& pEnd)\r
183                 {\r
184                         if (pStart->actions == pEnd->actions)\r
185                                 return pStart->Rev > pEnd->Rev;\r
186                         return pStart->actions > pEnd->actions;\r
187                 }\r
188         };\r
189 #endif\r
190 };\r