LogDlg: Propagate selected branch to newly started logs
[TortoiseGit.git] / src / Git / GitStatusListCtrl.h
blob16a775d814503bc9a4dedcef82d4b5fa12b8cb4d
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2014 - TortoiseGit
4 // Copyright (C) 2003-2008, 2014 - TortoiseSVN
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #pragma once
21 #include "TGitPath.h"
22 #include "GitStatus.h"
23 #include "GitRev.h"
24 #include "Colors.h"
25 #include "LoglistCommonResource.h"
26 #include "HintListCtrl.h"
28 #define GIT_WC_ENTRY_WORKING_SIZE_UNKNOWN (-1)
30 // these defines must be in the order the columns are inserted!
31 #define GITSLC_COLFILENAME 0x000000002
32 #define GITSLC_COLEXT 0x000000004
33 #define GITSLC_COLSTATUS 0x000000008
34 //#define SVNSLC_COLAUTHOR 0x000000040
35 //#define SVNSLC_COLREVISION 0x000000080
36 //#define SVNSLC_COLDATE 0x000000100
37 #define GITSLC_COLADD 0x000000010
38 #define GITSLC_COLDEL 0x000000020
39 #define GITSLC_COLMODIFICATIONDATE 0x000000040
40 #define GITSLC_COLSIZE 0x000000080
41 #define GITSLC_NUMCOLUMNS 8
43 //#define SVNSLC_COLURL 0x000000200
44 //#define SVNSLC_COLCOPYFROM 0x000020000
46 #define GITSLC_SHOWUNVERSIONED CTGitPath::LOGACTIONS_UNVER
47 #define GITSLC_SHOWNORMAL 0x00000000
48 #define GITSLC_SHOWMODIFIED (CTGitPath::LOGACTIONS_MODIFIED)
49 #define GITSLC_SHOWADDED (CTGitPath::LOGACTIONS_ADDED|CTGitPath::LOGACTIONS_COPY)
50 #define GITSLC_SHOWREMOVED CTGitPath::LOGACTIONS_DELETED
51 #define GITSLC_SHOWCONFLICTED CTGitPath::LOGACTIONS_UNMERGED
52 #define GITSLC_SHOWMISSING 0x00000000
53 #define GITSLC_SHOWREPLACED CTGitPath::LOGACTIONS_REPLACED
54 #define GITSLC_SHOWMERGED CTGitPath::LOGACTIONS_MERGED
55 #define GITSLC_SHOWIGNORED CTGitPath::LOGACTIONS_IGNORE
56 #define GITSLC_SHOWOBSTRUCTED 0x00000000
57 #define GITSLC_SHOWEXTERNAL 0x00000000
58 #define GITSLC_SHOWINCOMPLETE 0x00000000
59 #define GITSLC_SHOWINEXTERNALS 0x00000000
60 #define GITSLC_SHOWREMOVEDANDPRESENT 0x00000000
61 #define GITSLC_SHOWLOCKS 0x00000000
62 #define GITSLC_SHOWDIRECTFILES 0x04000000
63 #define GITSLC_SHOWDIRECTFOLDER 0x00000000
64 #define GITSLC_SHOWEXTERNALFROMDIFFERENTREPO 0x00000000
65 #define GITSLC_SHOWSWITCHED 0x00000000
66 #define GITSLC_SHOWINCHANGELIST 0x00000000
67 #define GITSLC_SHOWASSUMEVALID CTGitPath::LOGACTIONS_ASSUMEVALID
68 #define GITSLC_SHOWSKIPWORKTREE CTGitPath::LOGACTIONS_SKIPWORKTREE
70 #define GITSLC_SHOWDIRECTS (GITSLC_SHOWDIRECTFILES | GITSLC_SHOWDIRECTFOLDER)
72 #define GITSLC_SHOWFILES 0x01000000
73 #define GITSLC_SHOWSUBMODULES 0x02000000
74 #define GITSLC_SHOWEVERYTHING 0xffffffff
76 #define GITSLC_SHOWVERSIONED (CTGitPath::LOGACTIONS_FORWORD|GITSLC_SHOWNORMAL|GITSLC_SHOWMODIFIED|\
77 GITSLC_SHOWADDED|GITSLC_SHOWREMOVED|GITSLC_SHOWCONFLICTED|GITSLC_SHOWMISSING|\
78 GITSLC_SHOWREPLACED|GITSLC_SHOWMERGED|GITSLC_SHOWIGNORED|GITSLC_SHOWOBSTRUCTED|\
79 GITSLC_SHOWEXTERNAL|GITSLC_SHOWINCOMPLETE|GITSLC_SHOWINEXTERNALS|\
80 GITSLC_SHOWEXTERNALFROMDIFFERENTREPO)
82 #define GITSLC_SHOWVERSIONEDBUTNORMAL (GITSLC_SHOWMODIFIED|GITSLC_SHOWADDED|\
83 GITSLC_SHOWREMOVED|GITSLC_SHOWCONFLICTED|GITSLC_SHOWMISSING|\
84 GITSLC_SHOWREPLACED|GITSLC_SHOWMERGED|GITSLC_SHOWIGNORED|GITSLC_SHOWOBSTRUCTED|\
85 GITSLC_SHOWEXTERNAL|GITSLC_SHOWINCOMPLETE|GITSLC_SHOWINEXTERNALS|\
86 GITSLC_SHOWEXTERNALFROMDIFFERENTREPO)
88 #define GITSLC_SHOWVERSIONEDBUTNORMALANDEXTERNALSFROMDIFFERENTREPOS (GITSLC_SHOWMODIFIED|\
89 GITSLC_SHOWADDED|GITSLC_SHOWREMOVED|GITSLC_SHOWCONFLICTED|GITSLC_SHOWMISSING|\
90 GITSLC_SHOWREPLACED|GITSLC_SHOWMERGED|GITSLC_SHOWIGNORED|GITSLC_SHOWOBSTRUCTED|\
91 GITSLC_SHOWINCOMPLETE|GITSLC_SHOWEXTERNAL|GITSLC_SHOWINEXTERNALS)
93 #define GITSLC_SHOWVERSIONEDBUTNORMALANDEXTERNALS (GITSLC_SHOWMODIFIED|\
94 GITSLC_SHOWADDED|GITSLC_SHOWREMOVED|GITSLC_SHOWCONFLICTED|GITSLC_SHOWMISSING|\
95 GITSLC_SHOWREPLACED|GITSLC_SHOWMERGED|GITSLC_SHOWIGNORED|GITSLC_SHOWOBSTRUCTED|\
96 GITSLC_SHOWINCOMPLETE)
98 #define GITSLC_SHOWALL (GITSLC_SHOWVERSIONED|GITSLC_SHOWUNVERSIONED)
100 #define GITSLC_POPALL 0xFFFFFFFFFFFFFFFF
101 #define GITSLC_POPCOMPAREWITHBASE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_COMPARE)
102 #define GITSLC_POPCOMPARE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_COMPAREWC)
103 #define GITSLC_POPGNUDIFF CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_GNUDIFF1)
104 #define GITSLC_POPREVERT CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_REVERT)
105 #define GITSLC_POPSHOWLOG CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_LOG)
106 #define GITSLC_POPSHOWLOGSUBMODULE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_LOGSUBMODULE)
107 #define GITSLC_POPSHOWLOGOLDNAME CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_LOGOLDNAME)
108 #define GITSLC_POPOPEN CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_OPEN)
109 #define GITSLC_POPDELETE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_DELETE)
110 #define GITSLC_POPADD CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_ADD)
111 #define GITSLC_POPIGNORE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_IGNORE)
112 #define GITSLC_POPCONFLICT CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_EDITCONFLICT)
113 #define GITSLC_POPRESOLVE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_RESOLVECONFLICT)
114 #define GITSLC_POPEXPLORE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_EXPLORE)
115 #define GITSLC_POPCOMMIT CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_COMMIT)
116 #define GITSLC_POPCHANGELISTS CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_CHECKGROUP)
117 #define GITSLC_POPBLAME CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_BLAME)
118 #define GITSLC_POPSAVEAS CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_SAVEAS)
119 #define GITSLC_POPCOMPARETWOFILES CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_COMPARETWOFILES)
120 #define GITSLC_POPRESTORE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_POPRESTORE)
121 #define GITSLC_POPASSUMEVALID CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_ASSUMEVALID)
122 #define GITSLC_POPSKIPWORKTREE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_SKIPWORKTREE)
123 #define GITSLC_POPEXPORT CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_EXPORT)
124 #define GITLC_POPUNSETIGNORELOCALCHANGES CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_UNSETIGNORELOCALCHANGES)
126 #define GITSLC_IGNORECHANGELIST _T("ignore-on-commit")
128 // This gives up to 64 standard properties and menu entries
129 #define GITSLC_MAXCOLUMNCOUNT 0xff
131 #define OVL_RESTORE 1
133 typedef int (__cdecl *GENERICCOMPAREFN)(const void * elem1, const void * elem2);
134 typedef CComCritSecLock<CComCriticalSection> Locker;
136 class CGitStatusListCtrlDropTarget;
139 * \ingroup TortoiseProc
140 * Helper class for CGitStatusListCtrl that represents
141 * the columns visible and their order as well as
142 * persisting that data in the registry.
144 * It assigns logical index values to the (potential) columns:
145 * 0 .. GitSLC_NUMCOLUMNS-1 contain the standard attributes
147 * The column vector contains the columns that are actually
148 * available in the control.
151 class ColumnManager
153 public:
155 /// construction / destruction
157 ColumnManager (CListCtrl* control) : control (control), m_dwDefaultColumns(0) {};
158 ~ColumnManager() {};
160 DWORD m_dwDefaultColumns;
161 /// registry access
163 void ReadSettings (DWORD defaultColumns, DWORD hideColumns, const CString& containerName, int ReadSettings, int *withlist=NULL);
164 void WriteSettings() const;
166 /// read column definitions
168 int GetColumnCount() const; ///< total number of columns
169 bool IsVisible (int column) const;
170 int GetInvisibleCount() const;
171 bool IsRelevant (int column) const;
172 CString GetName (int column) const;
173 int SetNames(UINT * buff, int size);
174 int GetWidth (int column, bool useDefaults = false) const;
175 int GetVisibleWidth (int column, bool useDefaults) const;
177 /// switch columns on and off
179 void SetVisible (int column, bool visible);
181 /// tracking column modifications
183 void ColumnMoved (int column, int position);
184 void ColumnResized (int column);
186 /// call these to update the user-prop list
187 /// (will also auto-insert /-remove new list columns)
189 /// don't clutter the context menu with irrelevant prop info
191 void RemoveUnusedProps();
193 /// bring everything back to its "natural" order
195 void ResetColumns (DWORD defaultColumns);
197 void OnColumnResized(NMHDR *pNMHDR, LRESULT *pResult)
199 LPNMHEADER header = reinterpret_cast<LPNMHEADER>(pNMHDR);
200 if ( (header != NULL)
201 && (header->iItem >= 0)
202 && (header->iItem < GetColumnCount()))
204 ColumnResized (header->iItem);
206 *pResult = 0;
209 void OnColumnMoved(NMHDR *pNMHDR, LRESULT *pResult)
211 LPNMHEADER header = reinterpret_cast<LPNMHEADER>(pNMHDR);
212 *pResult = TRUE;
213 if ( (header != NULL)
214 && (header->iItem >= 0)
215 && (header->iItem < GetColumnCount())
216 // only allow the reordering if the column was not moved left of the first
217 // visible item - otherwise the 'invisible' columns are not at the far left
218 // anymore and we get all kinds of redrawing problems.
219 && (header->pitem)
220 && (header->pitem->iOrder >= GetInvisibleCount()))
222 ColumnMoved (header->iItem, header->pitem->iOrder);
226 void OnHdnBegintrack(NMHDR *pNMHDR, LRESULT *pResult)
228 LPNMHEADER phdr = reinterpret_cast<LPNMHEADER>(pNMHDR);
229 *pResult = 0;
230 if ((phdr->iItem < 0)||(phdr->iItem >= (int)itemName.size()))
231 return;
233 if (IsVisible (phdr->iItem))
235 return;
237 *pResult = 1;
240 int OnHdnItemchanging(NMHDR *pNMHDR, LRESULT *pResult)
242 LPNMHEADER phdr = reinterpret_cast<LPNMHEADER>(pNMHDR);
243 *pResult = 0;
244 if ((phdr->iItem < 0)||(phdr->iItem >= (int)itemName.size()))
246 return 0;
249 // visible columns may be modified
251 if (IsVisible (phdr->iItem))
253 return 0;
256 // columns already marked as "invisible" internally may be (re-)sized to 0
258 if ( (phdr->pitem != NULL)
259 && (phdr->pitem->mask == HDI_WIDTH)
260 && (phdr->pitem->cxy == 0))
262 return 0;
265 if ( (phdr->pitem != NULL)
266 && (phdr->pitem->mask != HDI_WIDTH))
268 return 0;
271 *pResult = 1;
272 return 1;
274 void OnContextMenuHeader(CWnd * pWnd, CPoint point, bool isGroundEnable=false)
276 CHeaderCtrl * pHeaderCtrl = (CHeaderCtrl *)pWnd;
277 if ((point.x == -1) && (point.y == -1))
279 CRect rect;
280 pHeaderCtrl->GetItemRect(0, &rect);
281 pHeaderCtrl->ClientToScreen(&rect);
282 point = rect.CenterPoint();
285 CMenu popup;
286 if (popup.CreatePopupMenu())
288 int columnCount = GetColumnCount();
290 CString temp;
291 UINT uCheckedFlags = MF_STRING | MF_ENABLED | MF_CHECKED;
292 UINT uUnCheckedFlags = MF_STRING | MF_ENABLED;
294 // build control menu
296 //temp.LoadString(IDS_STATUSLIST_SHOWGROUPS);
297 //popup.AppendMenu(isGroundEnable? uCheckedFlags : uUnCheckedFlags, columnCount, temp);
299 temp.LoadString(IDS_STATUSLIST_RESETCOLUMNORDER);
300 popup.AppendMenu(uUnCheckedFlags, columnCount+2, temp);
301 popup.AppendMenu(MF_SEPARATOR);
303 // standard columns
304 AddMenuItem(&popup);
306 // user-prop columns:
307 // find relevant ones and sort 'em
309 std::map<CString, int> sortedProps;
310 for (int i = (int)itemName.size(); i < columnCount; ++i)
311 if (IsRelevant(i))
312 sortedProps[GetName(i)] = i;
314 if (!sortedProps.empty())
316 // add 'em to the menu
318 popup.AppendMenu(MF_SEPARATOR);
320 typedef std::map<CString, int>::const_iterator CIT;
321 for ( CIT iter = sortedProps.begin(), end = sortedProps.end()
322 ; iter != end
323 ; ++iter)
325 popup.AppendMenu ( IsVisible(iter->second)
326 ? uCheckedFlags
327 : uUnCheckedFlags
328 , iter->second
329 , iter->first);
333 // show menu & let user pick an entry
335 int cmd = popup.TrackPopupMenu(TPM_RETURNCMD | TPM_LEFTALIGN | TPM_NONOTIFY, point.x, point.y, pWnd, 0);
336 if ((cmd >= 1)&&(cmd < columnCount))
338 SetVisible (cmd, !IsVisible(cmd));
340 else if (cmd == columnCount)
342 pWnd->GetParent()->SendMessage(LVM_ENABLEGROUPVIEW, !isGroundEnable, NULL);
343 //EnableGroupView(!isGroundEnable);
345 else if (cmd == columnCount+1)
347 RemoveUnusedProps();
349 else if (cmd == columnCount+2)
351 ResetColumns (m_dwDefaultColumns);
356 void AddMenuItem(CMenu *pop)
358 UINT uCheckedFlags = MF_STRING | MF_ENABLED | MF_CHECKED;
359 UINT uUnCheckedFlags = MF_STRING | MF_ENABLED;
361 for (int i = 1; i < (int)itemName.size(); ++i)
363 if(IsRelevant(i))
364 pop->AppendMenu ( IsVisible(i)
365 ? uCheckedFlags
366 : uUnCheckedFlags
368 , GetName(i));
371 private:
373 /// initialization utilities
375 void ParseWidths (const CString& widths);
376 void SetStandardColumnVisibility (DWORD visibility);
377 void ParseColumnOrder (const CString& widths);
379 /// map internal column order onto visible column order
380 /// (all invisibles in front)
382 std::vector<int> GetGridColumnOrder() const;
383 void ApplyColumnOrder();
385 /// utilities used when writing data to the registry
387 DWORD GetSelectedStandardColumns() const;
388 CString GetWidthString() const;
389 CString GetColumnOrderString() const;
391 /// our parent control and its data
393 CListCtrl* control;
395 /// where to store in the registry
397 CString registryPrefix;
399 /// all columns in their "natural" order
401 struct ColumnInfo
403 int index; ///< is a user prop when < GitSLC_USERPROPCOLOFFSET
404 int width;
405 bool visible;
406 bool relevant; ///< set to @a visible, if no *shown* item has that property
409 std::vector<ColumnInfo> columns;
411 /// user-defined properties
413 std::set<CString> itemProps;
415 /// global column ordering including unused user props
417 std::vector<int> columnOrder;
419 std::vector<int> itemName;
424 * \ingroup TortoiseProc
425 * Simple utility class that defines the sort column order.
427 class CSorter
429 public:
431 CSorter ( ColumnManager* columnManager
432 , int sortedColumn
433 , bool ascending);
435 bool operator() ( const CTGitPath* entry1
436 , const CTGitPath* entry2) const;
438 static int A2L(const CString &str)
440 if(str==_T("-"))
441 return -1;
442 else
443 return _ttol(str);
446 private:
448 ColumnManager* columnManager;
449 int sortedColumn;
450 bool ascending;
454 * \ingroup SVN
455 * A List control, based on the MFC CListCtrl which shows a list of
456 * files with their git status. The control also provides a context
457 * menu to do some git tasks on the selected files.
459 * This is the main control used in many dialogs to show a list of files to
460 * work on.
462 class CGitStatusListCtrl :
463 public CListCtrl
465 public:
466 enum
468 IDGITLC_REVERT = 1,
469 /** Compare with base version. when current version is zero (i.e. working tree changes), compare working tree and HEAD */
470 IDGITLC_COMPARE,
471 IDGITLC_OPEN,
472 IDGITLC_DELETE,
473 IDGITLC_IGNORE,
474 /** Compare with base version and generate unified diff. when current version is zero (i.e. working tree changes), compare working tree and HEAD */
475 IDGITLC_GNUDIFF1 ,
476 IDGITLC_LOG ,
477 IDGITLC_LOGOLDNAME,
478 IDGITLC_LOGSUBMODULE,
479 IDGITLC_EDITCONFLICT ,
480 IDGITLC_IGNOREMASK ,
481 IDGITLC_IGNOREFOLDER ,
482 IDGITLC_ADD ,
483 IDGITLC_RESOLVECONFLICT ,
484 IDGITLC_OPENWITH ,
485 IDGITLC_EXPLORE ,
486 IDGITLC_RESOLVETHEIRS ,
487 IDGITLC_RESOLVEMINE ,
488 IDGITLC_REMOVE ,
489 IDGITLC_COMMIT ,
490 IDGITLC_COPY ,
491 IDGITLC_COPYEXT ,
492 IDGITLC_REMOVEFROMCS ,
493 IDGITLC_CREATECS ,
494 IDGITLC_CREATEIGNORECS ,
495 IDGITLC_CHECKGROUP ,
496 IDGITLC_UNCHECKGROUP ,
497 /** Compare current version and working tree */
498 IDGITLC_COMPAREWC ,
499 IDGITLC_BLAME ,
500 IDGITLC_SAVEAS ,
501 IDGITLC_REVERTTOREV ,
502 IDGITLC_REVERTTOPARENT ,
503 IDGITLC_VIEWREV ,
504 IDGITLC_FINDENTRY ,
505 /** used in sync dlg, compare in/out file changes; in combination with m_Rev1 and m_Rev2 */
506 IDGITLC_COMPARETWOREVISIONS,
507 /** used in sync dlg, compare in/out file changes; in combination with m_Rev1 and m_Rev2 */
508 IDGITLC_GNUDIFF2REVISIONS,
509 /** Compare two selected files */
510 IDGITLC_COMPARETWOFILES ,
511 IDGITLC_POPRESTORE ,
512 IDGITLC_CREATERESTORE ,
513 IDGITLC_RESTOREPATH ,
514 IDGITLC_ASSUMEVALID ,
515 IDGITLC_SKIPWORKTREE ,
516 IDGITLC_EXPORT ,
517 IDGITLC_UNSETIGNORELOCALCHANGES,
518 // the IDSVNLC_MOVETOCS *must* be the last index, because it contains a dynamic submenu where
519 // the submenu items get command ID's sequent to this number
520 IDGITLC_MOVETOCS ,
522 int GetColumnIndex(int colmask);
523 static inline unsigned __int64 GetContextMenuBit(int i){ return ((unsigned __int64 )0x1)<<i ;}
525 * Sent to the parent window (using ::SendMessage) after a context menu
526 * command has finished if the item count has changed.
528 static const UINT GITSLNM_ITEMCOUNTCHANGED;
530 * Sent to the parent window (using ::SendMessage) when the control needs
531 * to be refreshed. Since this is done usually in the parent window using
532 * a thread, this message is used to tell the parent to do exactly that.
534 static const UINT GITSLNM_NEEDSREFRESH;
537 * Sent to the parent window (using ::SendMessage) when the user drops
538 * files on the control. The LPARAM is a pointer to a TCHAR string
539 * containing the dropped path.
541 static const UINT GITSLNM_ADDFILE;
544 * Sent to the parent window (using ::SendMessage) when the user checks/unchecks
545 * one or more items in the control. The WPARAM contains the number of
546 * checked items in the control.
548 static const UINT GITSLNM_CHECKCHANGED;
550 static const UINT GITSLNM_ITEMCHANGED;
552 CGitStatusListCtrl(void);
553 ~CGitStatusListCtrl(void);
555 CString m_Rev1;
556 CString m_Rev2;
559 * \ingroup TortoiseProc
560 * Helper class for CGitStatusListCtrl which represents
561 * the data for each file shown.
563 #if 0
564 class FileEntry
566 public:
567 FileEntry() : status(git_wc_status_unversioned)
568 // , copyfrom_rev(GIT_REV_ZERO)
569 , last_commit_date(0)
570 , last_commit_rev(GIT_REV_ZERO)
571 // , remoterev(GIT_REV_ZERO)
572 , textstatus(git_wc_status_unversioned)
573 , propstatus(git_wc_status_unversioned)
574 // , remotestatus(git_wc_status_unversioned)
575 // , remotetextstatus(git_wc_status_unversioned)
576 // , remotepropstatus(git_wc_status_unversioned)
577 , copied(false)
578 , switched(false)
579 , checked(false)
580 , inunversionedfolder(false)
581 , inexternal(false)
582 , differentrepo(false)
583 , direct(false)
584 , isfolder(false)
585 , isNested(false)
586 , Revision(GIT_REV_ZERO)
587 , isConflicted(false)
588 // , present_props()
589 , needslock(false)
590 /// , working_size(SVN_WC_ENTRY_WORKING_SIZE_UNKNOWN)
591 , keeplocal(false)
592 // , depth(git_depth_unknown)
595 const CTGitPath& GetPath() const
597 return path;
599 const bool IsChecked() const
601 return checked;
603 CString GetRelativeGitPath() const
605 if (path.IsEquivalentTo(basepath))
606 return path.GetGitPathString();
607 return path.GetGitPathString().Mid(basepath.GetGitPathString().GetLength()+1);
609 // const bool IsLocked() const
610 // {
611 // return !(lock_token.IsEmpty() && lock_remotetoken.IsEmpty());
612 // }
613 // const bool HasNeedsLock() const
614 // {
615 // return needslock;
616 // }
617 const bool IsFolder() const
619 return isfolder;
621 const bool IsInExternal() const
623 return inexternal;
625 const bool IsNested() const
627 return isNested;
629 const bool IsFromDifferentRepository() const
631 return differentrepo;
633 CString GetDisplayName() const
635 CString const& chopped = path.GetDisplayString(&basepath);
636 if (!chopped.IsEmpty())
638 return chopped;
640 else
642 // "Display name" must not be empty.
643 return path.GetFileOrDirectoryName();
646 CString GetChangeList() const
648 return changelist;
650 // CString GetURL() const
651 // {
652 // return url;
653 // }
654 public:
655 git_wc_status_kind status; ///< local status
656 git_wc_status_kind textstatus; ///< local text status
657 git_wc_status_kind propstatus; ///< local property status
659 private:
660 CTGitPath path; ///< full path of the file
661 CTGitPath basepath; ///< common ancestor path of all files
663 CString changelist; ///< the name of the changelist the item belongs to
665 CString last_commit_author; ///< the author which last committed this item
666 CTime last_commit_date; ///< the date when this item was last committed
667 git_revnum_t last_commit_rev; ///< the revision where this item was last committed
669 git_revnum_t remoterev; ///< the revision in HEAD of the repository
670 bool copied; ///< if the file/folder is added-with-history
671 bool switched; ///< if the file/folder is switched to another url
672 bool checked; ///< if the file is checked in the list control
673 bool inunversionedfolder; ///< if the file is inside an unversioned folder
674 bool inexternal; ///< if the item is in an external folder
675 bool differentrepo; ///< if the item is from a different repository than the rest
676 bool direct; ///< directly included (TRUE) or just a child of a folder
677 bool isfolder; ///< TRUE if entry refers to a folder
678 bool isNested; ///< TRUE if the folder from a different repository and/or path
679 bool isConflicted; ///< TRUE if a file entry is conflicted, i.e. if it has the conflicted paths set
680 bool needslock; ///< TRUE if the Git:needs-lock property is set
681 git_revnum_t Revision; ///< the base revision
682 // PropertyList present_props; ///< cacheable properties present in BASE
683 bool keeplocal; ///< Whether a local copy of this entry should be kept in the working copy after a deletion has been committed
684 git_depth_t depth; ///< the depth of this entry
685 friend class CGitStatusListCtrl;
686 friend class CGitStatusListCtrlDropTarget;
687 friend class CSorter;
689 #endif
692 * Initializes the control, sets up the columns.
693 * \param dwColumns mask of columns to show. Use the GitSLC_COLxxx defines.
694 * \param sColumnInfoContainer Name of a registry key
695 * where the position and visibility of each column
696 * is saved and used from. If the registry key
697 * doesn't exist, the default order is used
698 * and dwColumns tells which columns are visible.
699 * \param dwContextMenus mask of context menus to be active, not all make sense for every use of this control.
700 * Use the GitSLC_POPxxx defines.
701 * \param bHasCheckboxes TRUE if the control should show check boxes on the left of each file entry.
702 * \param bHasWC TRUE if the reporisty is not a bare repository (hides wc related items on the contextmenu)
704 void Init(DWORD dwColumns, const CString& sColumnInfoContainer, unsigned __int64 dwContextMenus = ((GITSLC_POPALL ^ GITSLC_POPCOMMIT) ^ GITSLC_POPRESTORE), bool bHasCheckboxes = true, bool bHasWC = true, DWORD allowedColumns = 0xffffffff);
706 * Sets a background image for the list control.
707 * The image is shown in the right bottom corner.
708 * \param nID the resource ID of the bitmap to use as the background
710 bool SetBackgroundImage(UINT nID);
712 * Makes the 'ignore' context menu only ignore the files and not add the
713 * folder which gets the Git:ignore property changed to the list.
714 * This is needed e.g. for the Add-dialog, where the modified folder
715 * showing up would break the resulting "add" command.
717 void SetIgnoreRemoveOnly(bool bRemoveOnly = true) {m_bIgnoreRemoveOnly = bRemoveOnly;}
719 * The unversioned items are by default shown after all other files in the list.
720 * If that behavior should be changed, set this value to false.
722 void PutUnversionedLast(bool bLast) {m_bUnversionedLast = bLast;}
724 * Fetches the git status of all files and stores the information
725 * about them in an internal array.
726 * \param sFilePath path to a file which contains a list of files and/or folders for which to
727 * fetch the status, separated by newlines.
728 * \param bUpdate TRUE if the remote status is requested too.
729 * \return TRUE on success.
731 BOOL GetStatus ( const CTGitPathList* pathList=NULL
732 , bool bUpdate = false
733 , bool bShowIgnores = false
734 , bool bShowUnRev = false
735 , bool bShowLocalChangesIgnored = false);
738 * Populates the list control with the previously (with GetStatus) gathered status information.
739 * \param dwShow mask of file types to show. Use the GitSLC_SHOWxxx defines.
740 * \param dwCheck mask of file types to check. Use GitLC_SHOWxxx defines. Default (0) means 'use the entry's stored check status'
742 void Show(unsigned int dwShow, unsigned int dwCheck = 0, bool bShowFolders = true,BOOL updateStatusList=FALSE, bool UseStoredCheckStatus=false);
743 void Show(unsigned int dwShow, const CTGitPathList& checkedList, bool bShowFolders = true);
746 * Copies the selected entries in the control to the clipboard. The entries
747 * are separated by newlines.
748 * \param dwCols the columns to copy. Each column is separated by a tab.
750 bool CopySelectedEntriesToClipboard(DWORD dwCols);
753 * If during the call to GetStatus() some Git:externals are found from different
754 * repositories than the first one checked, then this method returns TRUE.
756 BOOL HasExternalsFromDifferentRepos() const {return m_bHasExternalsFromDifferentRepos;}
759 * If during the call to GetStatus() some Git:externals are found then this method returns TRUE.
761 BOOL HasExternals() const {return m_bHasExternals;}
764 * If unversioned files are found (but not necessarily shown) TRUE is returned.
766 BOOL HasUnversionedItems() {return m_bHasUnversionedItems;}
769 * If there are any locks in the working copy, TRUE is returned
771 BOOL HasLocks() const {return m_bHasLocks;}
774 * If there are any change lists defined in the working copy, TRUE is returned
776 BOOL HasChangeLists() const {return m_bHasChangeLists;}
779 * Returns the file entry data for the list control index.
781 //CGitStatusListCtrl::FileEntry * GetListEntry(UINT_PTR index);
784 * Returns the file entry data for the specified path.
785 * \note The entry might not be shown in the list control.
787 //CGitStatusListCtrl::FileEntry * GetListEntry(const CTGitPath& path);
790 * Returns the index of the list control entry with the specified path,
791 * or -1 if the path is not in the list control.
793 int GetIndex(const CTGitPath& path);
796 * Returns the file entry data for the specified path in the list control.
798 //CGitStatusListCtrl::FileEntry * GetVisibleListEntry(const CTGitPath& path);
801 * Returns a String containing some statistics like number of modified, normal, deleted,...
802 * files.
804 CString GetStatisticsString(bool simple=false);
807 * Set a static control which will be updated automatically with
808 * the number of selected and total files shown in the list control.
810 void SetStatLabel(CWnd * pStatLabel){m_pStatLabel = pStatLabel;};
813 * Set a tri-state checkbox which is updated automatically if the
814 * user checks/unchecks file entries in the list control to indicate
815 * if all files are checked, none are checked or some are checked.
817 void SetSelectButton(CButton * pButton) {m_pSelectButton = pButton;}
820 * Set a button which is de-/activated automatically. The button is
821 * only set active if at least one item is selected.
823 void SetConfirmButton(CButton * pButton) {m_pConfirmButton = pButton;}
826 * Select/unselect all entries in the list control.
827 * \param bSelect TRUE to check, FALSE to uncheck.
829 void SelectAll(bool bSelect, bool bIncludeNoCommits = false);
832 * Checks or unchecks all specified items
833 * \param dwCheck GITLC_SHOWxxx defines
834 * \param check if true matching items will be selected, false unchecks matching items
836 void Check(DWORD dwCheck, bool check = true);
838 /** Set a checkbox on an entry in the listbox
839 * Keeps the listctrl checked state and the FileEntry's checked flag in sync
841 void SetEntryCheck(CTGitPath* pEntry, int listboxIndex, bool bCheck);
843 /** Write a list of the checked items' paths into a path list
845 void WriteCheckedNamesToPathList(CTGitPathList& pathList);
847 /** fills in \a lMin and \a lMax with the lowest/highest revision of all
848 * files/folders in the working copy.
849 * \param bShownOnly if true, the min/max revisions are calculated only for shown items
850 * \param bCheckedOnly if true, the min/max revisions are calculated only for items
851 * which are checked.
852 * \remark Since an item can only be checked if it is visible/shown in the list control
853 * bShownOnly is automatically set to true if bCheckedOnly is true
855 void GetMinMaxRevisions(git_revnum_t& rMin, git_revnum_t& rMax, bool bShownOnly, bool bCheckedOnly);
858 * Returns the parent directory of all entries in the control.
859 * if \a bStrict is set to false, then the paths passed to the control
860 * to fetch the status (in GetStatus()) are used if possible.
862 CString GetCommonDirectory(bool bStrict);
865 * Returns the parent url of all entries in the control.
866 * if \a bStrict is set to false, then the paths passed to the control
867 * to fetch the status (in GetStatus()) are used if possible.
869 CTGitPath GetCommonURL(bool bStrict);
872 * Sets a pointer to a boolean variable which is checked periodically
873 * during the status fetching. As soon as the variable changes to true,
874 * the operations stops.
876 void SetCancelBool(bool * pbCanceled) {m_pbCanceled = pbCanceled;}
879 * Sets the string shown in the control while the status is fetched.
880 * If not set, it defaults to "please wait..."
882 void SetBusyString(const CString& str) {m_sBusy = str;}
883 void SetBusyString(UINT id) {m_sBusy.LoadString(id);}
886 * Sets the string shown in the control if no items are shown. This
887 * can happen for example if there's nothing modified and the unversioned
888 * files aren't shown either, so there's nothing to commit.
889 * If not set, it defaults to "file list is empty".
891 void SetEmptyString(const CString& str) {m_sEmpty = str;}
892 void SetEmptyString(UINT id) {m_sEmpty.LoadString(id);}
895 * Returns the number of selected items
897 LONG GetSelected(){return m_nSelected;};
900 * Enables dropping of files on the control.
902 bool EnableFileDrop();
905 * Checks if the path already exists in the list.
907 bool HasPath(const CTGitPath& path);
909 * Checks if the path is shown/visible in the list control.
911 bool IsPathShown(const CTGitPath& path);
913 * Forces the children to be checked when the parent folder is checked,
914 * and the parent folder to be unchecked if one of its children is unchecked.
916 void CheckChildrenWithParent(bool bCheck) {m_bCheckChildrenWithParent = bCheck;}
919 * Allows checking the items if change lists are present. If set to false,
920 * items are not checked if at least one changelist is available.
922 void CheckIfChangelistsArePresent(bool bCheck) {m_bCheckIfGroupsExist = bCheck;}
924 * Returns the currently used show flags passed to the Show() method.
926 DWORD GetShowFlags() {return m_dwShow;}
928 public:
929 CString GetLastErrorMessage() {return m_sLastError;}
931 void Block(BOOL block, BOOL blockUI) {m_bBlock = block; m_bBlockUI = blockUI;}
933 LONG GetUnversionedCount() { return m_nShownUnversioned; }
934 LONG GetModifiedCount() { return m_nShownModified; }
935 LONG GetAddedCount() { return m_nShownAdded; }
936 LONG GetDeletedCount() { return m_nShownDeleted; }
937 LONG GetConflictedCount() { return m_nShownConflicted; }
938 LONG GetFileCount() { return m_nShownFiles; }
939 LONG GetSubmoduleCount() { return m_nShownSubmodules; }
941 LONG m_nTargetCount; ///< number of targets in the file passed to GetStatus()
943 CString m_sURL; ///< the URL of the target or "(multiple targets)"
945 GitRev m_HeadRev; ///< the HEAD revision of the repository if bUpdate was TRUE
947 bool m_amend; ///< if true show the changes to the revision before the last commit
949 CString m_sUUID; ///< the UUID of the associated repository
951 CString m_sDisplayedBranch; ///< When on LogDialog, what is the current displayed branch
953 bool m_bIsRevertTheirMy; ///< at rebase case, Their and My version is revert.
955 CWnd *m_hwndLogicalParent;
957 DECLARE_MESSAGE_MAP()
959 public:
960 void SetBusy(bool b) {m_bBusy = b; Invalidate();}
961 void SetHasCheckboxes(bool bHasCheckboxes)
963 m_bHasCheckboxes = bHasCheckboxes;
964 DWORD exStyle = GetExtendedStyle();
965 if (bHasCheckboxes)
966 exStyle |= LVS_EX_CHECKBOXES;
967 else
968 exStyle &= ~LVS_EX_CHECKBOXES;
969 SetExtendedStyle(exStyle);
972 private:
973 void SaveColumnWidths(bool bSaveToRegistry = false);
974 //void AddEntry(FileEntry * entry, WORD langID, int listIndex); ///< add an entry to the control
975 void RemoveListEntry(int index); ///< removes an entry from the listcontrol and both arrays
976 bool BuildStatistics(); ///< build the statistics and correct the case of files/folders
977 void StartDiff(int fileindex); ///< start the external diff program
978 void StartDiffWC(int fileindex); ///< start the external diff program
979 void StartDiffTwo(int fileindex);
981 void SetGitIndexFlagsForSelectedFiles(UINT message, BOOL assumevalid, BOOL skipworktree);
983 enum
985 ALTERNATIVEEDITOR,
986 OPEN,
987 OPEN_WITH,
989 void OpenFile(CTGitPath *path,int mode);
991 /// Clear the status vector (contains custodial pointers)
992 void ClearStatusArray();
994 /// Sort predicate function - Compare the paths of two entries without regard to case
995 //static bool EntryPathCompareNoCase(const FileEntry* pEntry1, const FileEntry* pEntry2);
997 /// Predicate used to build a list of only the versioned entries of the FileEntry array
998 //static bool IsEntryVersioned(const FileEntry* pEntry1);
1000 /// Look up the relevant show flags for a particular Git status value
1001 DWORD GetShowFlagsFromGitStatus(git_wc_status_kind status);
1003 /// Adjust the checkbox-state on all descendants of a specific item
1004 //void SetCheckOnAllDescendentsOf(const FileEntry* parentEntry, bool bCheck);
1006 /// Build a path list of all the selected items in the list (NOTE - SELECTED, not CHECKED)
1007 void FillListOfSelectedItemPaths(CTGitPathList& pathList, bool bNoIgnored = false);
1009 /// Enables/Disables group view and adds all groups to the list control.
1010 /// If bForce is true, then group view is enabled and the 'null' group is added.
1011 bool PrepareGroups(bool bForce = false);
1012 /// Returns the group number to which the group header belongs
1013 /// If the point is not over a group header, -1 is returned
1014 int GetGroupFromPoint(POINT * ppt);
1015 /// Returns the number of change lists the selection has
1016 size_t GetNumberOfChangelistsInSelection();
1018 /// Puts the item to the corresponding group
1019 bool SetItemGroup(int item, int groupindex);
1021 void CheckEntry(int index, int nListItems);
1022 void UncheckEntry(int index, int nListItems);
1024 /// sends an GitSLNM_CHECKCHANGED notification to the parent
1025 void NotifyCheck();
1026 CWnd * GetLogicalParent() { return m_hwndLogicalParent != NULL ? m_hwndLogicalParent : this->GetParent(); }
1028 void OnContextMenuList(CWnd * pWnd, CPoint point);
1029 void OnContextMenuGroup(CWnd * pWnd, CPoint point);
1030 void OnContextMenuHeader(CWnd * pWnd, CPoint point);
1031 bool CheckMultipleDiffs();
1033 void DeleteSelectedFiles();
1035 virtual void PreSubclassWindow();
1036 virtual BOOL PreTranslateMessage(MSG* pMsg);
1037 afx_msg void OnBeginDrag(NMHDR* pNMHDR, LRESULT* pResult);
1038 afx_msg BOOL OnToolTipText(UINT id, NMHDR *pNMHDR, LRESULT *pResult);
1039 afx_msg void OnHdnItemclick(NMHDR *pNMHDR, LRESULT *pResult);
1040 afx_msg void OnLvnItemchanging(NMHDR *pNMHDR, LRESULT *pResult);
1041 afx_msg BOOL OnLvnItemchanged(NMHDR *pNMHDR, LRESULT *pResult);
1042 afx_msg void OnColumnResized(NMHDR *pNMHDR, LRESULT *pResult);
1043 afx_msg void OnColumnMoved(NMHDR *pNMHDR, LRESULT *pResult);
1044 afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
1046 void CreateChangeList(const CString& name);
1048 afx_msg void OnNMDblclk(NMHDR *pNMHDR, LRESULT *pResult);
1049 afx_msg void OnLvnGetInfoTip(NMHDR *pNMHDR, LRESULT *pResult);
1050 afx_msg void OnNMCustomdraw(NMHDR *pNMHDR, LRESULT *pResult);
1051 afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
1052 afx_msg UINT OnGetDlgCode();
1053 afx_msg void OnNMReturn(NMHDR *pNMHDR, LRESULT *pResult);
1054 afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
1055 afx_msg void OnPaint();
1056 afx_msg void OnHdnBegintrack(NMHDR *pNMHDR, LRESULT *pResult);
1057 afx_msg void OnHdnItemchanging(NMHDR *pNMHDR, LRESULT *pResult);
1058 afx_msg void OnDestroy();
1061 void FilesExport();
1062 void FileSaveAs(CTGitPath *path);
1063 int RevertSelectedItemToVersion(bool parent = false);
1065 private:
1066 bool * m_pbCanceled;
1067 bool m_bAscending; ///< sort direction
1068 int m_nSortedColumn; ///< which column to sort
1069 bool m_bHasCheckboxes;
1070 bool m_bHasWC;
1071 bool m_bUnversionedLast;
1072 bool m_bHasExternalsFromDifferentRepos;
1073 bool m_bHasExternals;
1074 BOOL m_bHasUnversionedItems;
1075 bool m_bHasLocks;
1076 bool m_bHasChangeLists;
1077 //typedef std::vector<FileEntry*> FileEntryVector;
1078 //FileEntryVector m_arStatusArray;
1079 std::vector<CTGitPath*> m_arStatusArray;
1080 std::vector<size_t> m_arListArray;
1081 std::map<CString, int> m_changelists;
1082 bool m_bHasIgnoreGroup;
1083 //CTGitPathList m_ConflictFileList;
1084 CTGitPathList m_StatusFileList;
1085 CTGitPathList m_UnRevFileList;
1086 CTGitPathList m_IgnoreFileList;
1087 CTGitPathList m_LocalChangesIgnoredFileList; // assume valid & skip worktree
1088 //CTGitPathList m_StatusUrlList;
1089 CString m_sLastError;
1091 LONG m_nUnversioned;
1092 LONG m_nNormal;
1093 LONG m_nModified;
1094 LONG m_nAdded;
1095 LONG m_nDeleted;
1096 LONG m_nConflicted;
1097 LONG m_nTotal;
1098 LONG m_nSelected;
1099 LONG m_nLineAdded;
1100 LONG m_nLineDeleted;
1101 LONG m_nRenamed;
1103 LONG m_nShownUnversioned;
1104 LONG m_nShownModified;
1105 LONG m_nShownAdded;
1106 LONG m_nShownDeleted;
1107 LONG m_nShownConflicted;
1108 LONG m_nShownFiles;
1109 LONG m_nShownSubmodules;
1111 DWORD m_dwDefaultColumns;
1112 DWORD m_dwShow;
1113 bool m_bShowFolders;
1114 bool m_bShowIgnores;
1115 bool m_bUpdate;
1116 unsigned __int64 m_dwContextMenus;
1117 BOOL m_bBlock;
1118 BOOL m_bBlockUI;
1119 bool m_bBusy;
1120 bool m_bEmpty;
1121 bool m_bIgnoreRemoveOnly;
1122 bool m_bCheckIfGroupsExist;
1123 bool m_bFileDropsEnabled;
1124 bool m_bOwnDrag;
1126 int m_nIconFolder;
1127 int m_nRestoreOvl;
1129 CWnd * m_pStatLabel;
1130 CButton * m_pSelectButton;
1131 CButton * m_pConfirmButton;
1132 CColors m_Colors;
1134 CString m_sEmpty;
1135 CString m_sBusy;
1136 CString m_sNoPropValueText;
1138 bool m_bCheckChildrenWithParent;
1139 CGitStatusListCtrlDropTarget * m_pDropTarget;
1141 ColumnManager m_ColumnManager;
1143 std::map<CString,bool> m_mapFilenameToChecked; ///< Remember de-/selected items
1144 std::map<CString,bool> m_mapDirectFiles;
1145 CComCriticalSection m_critSec;
1147 friend class CGitStatusListCtrlDropTarget;
1148 public:
1149 enum
1151 FILELIST_MODIFY= 0x1,
1152 FILELIST_UNVER = 0x2,
1153 FILELIST_IGNORE =0x4,
1154 FILELIST_LOCALCHANGESIGNORED = 0x8, // assume valid & skip worktree files
1156 public:
1157 int UpdateFileList(git_revnum_t hash,CTGitPathList *List=NULL);
1158 int UpdateFileList(int mask, bool once=true,CTGitPathList *List=NULL);
1159 int UpdateUnRevFileList(CTGitPathList &list);
1160 int UpdateUnRevFileList(CTGitPathList *List=NULL);
1161 int UpdateIgnoreFileList(CTGitPathList *List=NULL);
1162 int UpdateLocalChangesIgnoredFileList(CTGitPathList* list = nullptr);
1164 int UpdateWithGitPathList(CTGitPathList &list);
1166 void AddEntry(CTGitPath* path, WORD langID, int ListIndex);
1167 void Clear();
1168 int m_FileLoaded;
1169 git_revnum_t m_CurrentVersion;
1170 bool m_bDoNotAutoselectSubmodules;
1171 std::map<CString, CString> m_restorepaths;
1174 #if 0
1175 class CGitStatusListCtrlDropTarget : public CIDropTarget
1177 public:
1178 CGitStatusListCtrlDropTarget(CGitStatusListCtrl * pGitStatusListCtrl):CIDropTarget(pGitStatusListCtrl->m_hWnd){m_pGitStatusListCtrl = pGitStatusListCtrl;}
1180 virtual bool OnDrop(FORMATETC* pFmtEtc, STGMEDIUM& medium, DWORD * /*pdwEffect*/, POINTL pt);
1181 virtual HRESULT STDMETHODCALLTYPE DragOver(DWORD grfKeyState, POINTL pt, DWORD __RPC_FAR *pdwEffect);
1182 private:
1183 CGitStatusListCtrl * m_pGitStatusListCtrl;
1185 #endif