Constify iterators
[TortoiseGit.git] / src / Git / GitStatusListCtrl.h
blobbba0b35e1f0be6a32f21b24487770551a1475a2b
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2015 - 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"
27 #include "SmartHandle.h"
29 #define GIT_WC_ENTRY_WORKING_SIZE_UNKNOWN (-1)
31 // these defines must be in the order the columns are inserted!
32 #define GITSLC_COLFILENAME 0x000000002
33 #define GITSLC_COLEXT 0x000000004
34 #define GITSLC_COLSTATUS 0x000000008
35 //#define SVNSLC_COLAUTHOR 0x000000040
36 //#define SVNSLC_COLREVISION 0x000000080
37 //#define SVNSLC_COLDATE 0x000000100
38 #define GITSLC_COLADD 0x000000010
39 #define GITSLC_COLDEL 0x000000020
40 #define GITSLC_COLMODIFICATIONDATE 0x000000040
41 #define GITSLC_COLSIZE 0x000000080
42 #define GITSLC_NUMCOLUMNS 8
44 //#define SVNSLC_COLURL 0x000000200
45 //#define SVNSLC_COLCOPYFROM 0x000020000
47 #define GITSLC_SHOWUNVERSIONED CTGitPath::LOGACTIONS_UNVER
48 #define GITSLC_SHOWNORMAL 0x00000000
49 #define GITSLC_SHOWMODIFIED (CTGitPath::LOGACTIONS_MODIFIED)
50 #define GITSLC_SHOWADDED (CTGitPath::LOGACTIONS_ADDED|CTGitPath::LOGACTIONS_COPY)
51 #define GITSLC_SHOWREMOVED CTGitPath::LOGACTIONS_DELETED
52 #define GITSLC_SHOWCONFLICTED CTGitPath::LOGACTIONS_UNMERGED
53 #define GITSLC_SHOWMISSING 0x00000000
54 #define GITSLC_SHOWREPLACED CTGitPath::LOGACTIONS_REPLACED
55 #define GITSLC_SHOWMERGED CTGitPath::LOGACTIONS_MERGED
56 #define GITSLC_SHOWIGNORED CTGitPath::LOGACTIONS_IGNORE
57 #define GITSLC_SHOWOBSTRUCTED 0x00000000
58 #define GITSLC_SHOWEXTERNAL 0x00000000
59 #define GITSLC_SHOWINCOMPLETE 0x00000000
60 #define GITSLC_SHOWINEXTERNALS 0x00000000
61 #define GITSLC_SHOWREMOVEDANDPRESENT 0x00000000
62 #define GITSLC_SHOWLOCKS 0x00000000
63 #define GITSLC_SHOWDIRECTFILES 0x04000000
64 #define GITSLC_SHOWDIRECTFOLDER 0x00000000
65 #define GITSLC_SHOWEXTERNALFROMDIFFERENTREPO 0x00000000
66 #define GITSLC_SHOWSWITCHED 0x00000000
67 #define GITSLC_SHOWINCHANGELIST 0x00000000
68 #define GITSLC_SHOWASSUMEVALID CTGitPath::LOGACTIONS_ASSUMEVALID
69 #define GITSLC_SHOWSKIPWORKTREE CTGitPath::LOGACTIONS_SKIPWORKTREE
71 #define GITSLC_SHOWDIRECTS (GITSLC_SHOWDIRECTFILES | GITSLC_SHOWDIRECTFOLDER)
73 #define GITSLC_SHOWFILES 0x01000000
74 #define GITSLC_SHOWSUBMODULES 0x02000000
75 #define GITSLC_SHOWEVERYTHING 0xffffffff
77 #define GITSLC_SHOWVERSIONED (GITSLC_SHOWNORMAL|GITSLC_SHOWMODIFIED|\
78 GITSLC_SHOWADDED|GITSLC_SHOWREMOVED|GITSLC_SHOWCONFLICTED|GITSLC_SHOWMISSING|\
79 GITSLC_SHOWREPLACED|GITSLC_SHOWMERGED|GITSLC_SHOWIGNORED|GITSLC_SHOWOBSTRUCTED|\
80 GITSLC_SHOWEXTERNAL|GITSLC_SHOWINCOMPLETE|GITSLC_SHOWINEXTERNALS|\
81 GITSLC_SHOWEXTERNALFROMDIFFERENTREPO)
83 #define GITSLC_SHOWVERSIONEDBUTNORMAL (GITSLC_SHOWMODIFIED|GITSLC_SHOWADDED|\
84 GITSLC_SHOWREMOVED|GITSLC_SHOWCONFLICTED|GITSLC_SHOWMISSING|\
85 GITSLC_SHOWREPLACED|GITSLC_SHOWMERGED|GITSLC_SHOWIGNORED|GITSLC_SHOWOBSTRUCTED|\
86 GITSLC_SHOWEXTERNAL|GITSLC_SHOWINCOMPLETE|GITSLC_SHOWINEXTERNALS|\
87 GITSLC_SHOWEXTERNALFROMDIFFERENTREPO)
89 #define GITSLC_SHOWVERSIONEDBUTNORMALANDEXTERNALSFROMDIFFERENTREPOS (GITSLC_SHOWMODIFIED|\
90 GITSLC_SHOWADDED|GITSLC_SHOWREMOVED|GITSLC_SHOWCONFLICTED|GITSLC_SHOWMISSING|\
91 GITSLC_SHOWREPLACED|GITSLC_SHOWMERGED|GITSLC_SHOWIGNORED|GITSLC_SHOWOBSTRUCTED|\
92 GITSLC_SHOWINCOMPLETE|GITSLC_SHOWEXTERNAL|GITSLC_SHOWINEXTERNALS)
94 #define GITSLC_SHOWVERSIONEDBUTNORMALANDEXTERNALS (GITSLC_SHOWMODIFIED|\
95 GITSLC_SHOWADDED|GITSLC_SHOWREMOVED|GITSLC_SHOWCONFLICTED|GITSLC_SHOWMISSING|\
96 GITSLC_SHOWREPLACED|GITSLC_SHOWMERGED|GITSLC_SHOWIGNORED|GITSLC_SHOWOBSTRUCTED|\
97 GITSLC_SHOWINCOMPLETE)
99 #define GITSLC_SHOWALL (GITSLC_SHOWVERSIONED|GITSLC_SHOWUNVERSIONED)
101 #define GITSLC_POPALL 0xFFFFFFFFFFFFFFFF
102 #define GITSLC_POPCOMPAREWITHBASE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_COMPARE)
103 #define GITSLC_POPCOMPARE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_COMPAREWC)
104 #define GITSLC_POPGNUDIFF CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_GNUDIFF1)
105 #define GITSLC_POPREVERT CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_REVERT)
106 #define GITSLC_POPSHOWLOG CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_LOG)
107 #define GITSLC_POPSHOWLOGSUBMODULE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_LOGSUBMODULE)
108 #define GITSLC_POPSHOWLOGOLDNAME CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_LOGOLDNAME)
109 #define GITSLC_POPOPEN CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_OPEN)
110 #define GITSLC_POPDELETE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_DELETE)
111 #define GITSLC_POPADD CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_ADD)
112 #define GITSLC_POPIGNORE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_IGNORE)
113 #define GITSLC_POPCONFLICT CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_EDITCONFLICT)
114 #define GITSLC_POPRESOLVE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_RESOLVECONFLICT)
115 #define GITSLC_POPEXPLORE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_EXPLORE)
116 #define GITSLC_POPCOMMIT CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_COMMIT)
117 #define GITSLC_POPCHANGELISTS CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_CHECKGROUP)
118 #define GITSLC_POPBLAME CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_BLAME)
119 #define GITSLC_POPSAVEAS CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_SAVEAS)
120 #define GITSLC_POPCOMPARETWOFILES CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_COMPARETWOFILES)
121 #define GITSLC_POPRESTORE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_POPRESTORE)
122 #define GITSLC_POPASSUMEVALID CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_ASSUMEVALID)
123 #define GITSLC_POPSKIPWORKTREE CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_SKIPWORKTREE)
124 #define GITSLC_POPEXPORT CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_EXPORT)
125 #define GITLC_POPUNSETIGNORELOCALCHANGES CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_UNSETIGNORELOCALCHANGES)
126 #define GITSLC_PREPAREDIFF CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_PREPAREDIFF)
128 #define GITSLC_IGNORECHANGELIST _T("ignore-on-commit")
130 // This gives up to 64 standard properties and menu entries
131 #define GITSLC_MAXCOLUMNCOUNT 0xff
133 #define OVL_RESTORE 1
135 typedef int (__cdecl *GENERICCOMPAREFN)(const void * elem1, const void * elem2);
136 typedef CComCritSecLock<CComCriticalSection> Locker;
138 class CGitStatusListCtrlDropTarget;
141 * \ingroup TortoiseProc
142 * Helper class for CGitStatusListCtrl that represents
143 * the columns visible and their order as well as
144 * persisting that data in the registry.
146 * It assigns logical index values to the (potential) columns:
147 * 0 .. GitSLC_NUMCOLUMNS-1 contain the standard attributes
149 * The column vector contains the columns that are actually
150 * available in the control.
153 class ColumnManager
155 public:
157 /// construction / destruction
159 ColumnManager (CListCtrl* control) : control (control), m_dwDefaultColumns(0) {};
160 ~ColumnManager() {};
162 DWORD m_dwDefaultColumns;
163 /// registry access
165 void ReadSettings (DWORD defaultColumns, DWORD hideColumns, const CString& containerName, int ReadSettings, int *withlist=NULL);
166 void WriteSettings() const;
168 /// read column definitions
170 int GetColumnCount() const; ///< total number of columns
171 bool IsVisible (int column) const;
172 int GetInvisibleCount() const;
173 bool IsRelevant (int column) const;
174 CString GetName (int column) const;
175 int SetNames(UINT * buff, int size);
176 int GetWidth (int column, bool useDefaults = false) const;
177 int GetVisibleWidth (int column, bool useDefaults) const;
179 /// switch columns on and off
181 void SetVisible (int column, bool visible);
183 /// tracking column modifications
185 void ColumnMoved (int column, int position);
186 void ColumnResized (int column);
188 /// call these to update the user-prop list
189 /// (will also auto-insert /-remove new list columns)
191 /// don't clutter the context menu with irrelevant prop info
193 void RemoveUnusedProps();
195 /// bring everything back to its "natural" order
197 void ResetColumns (DWORD defaultColumns);
199 void OnColumnResized(NMHDR *pNMHDR, LRESULT *pResult)
201 LPNMHEADER header = reinterpret_cast<LPNMHEADER>(pNMHDR);
202 if ( (header != NULL)
203 && (header->iItem >= 0)
204 && (header->iItem < GetColumnCount()))
206 ColumnResized (header->iItem);
208 *pResult = 0;
211 void OnColumnMoved(NMHDR *pNMHDR, LRESULT *pResult)
213 LPNMHEADER header = reinterpret_cast<LPNMHEADER>(pNMHDR);
214 *pResult = TRUE;
215 if ( (header != NULL)
216 && (header->iItem >= 0)
217 && (header->iItem < GetColumnCount())
218 // only allow the reordering if the column was not moved left of the first
219 // visible item - otherwise the 'invisible' columns are not at the far left
220 // anymore and we get all kinds of redrawing problems.
221 && (header->pitem)
222 && (header->pitem->iOrder >= GetInvisibleCount()))
224 ColumnMoved (header->iItem, header->pitem->iOrder);
228 void OnHdnBegintrack(NMHDR *pNMHDR, LRESULT *pResult)
230 LPNMHEADER phdr = reinterpret_cast<LPNMHEADER>(pNMHDR);
231 *pResult = 0;
232 if ((phdr->iItem < 0)||(phdr->iItem >= (int)itemName.size()))
233 return;
235 if (IsVisible (phdr->iItem))
237 return;
239 *pResult = 1;
242 int OnHdnItemchanging(NMHDR *pNMHDR, LRESULT *pResult)
244 LPNMHEADER phdr = reinterpret_cast<LPNMHEADER>(pNMHDR);
245 *pResult = 0;
246 if ((phdr->iItem < 0)||(phdr->iItem >= (int)itemName.size()))
248 return 0;
251 // visible columns may be modified
253 if (IsVisible (phdr->iItem))
255 return 0;
258 // columns already marked as "invisible" internally may be (re-)sized to 0
260 if ( (phdr->pitem != NULL)
261 && (phdr->pitem->mask == HDI_WIDTH)
262 && (phdr->pitem->cxy == 0))
264 return 0;
267 if ( (phdr->pitem != NULL)
268 && (phdr->pitem->mask != HDI_WIDTH))
270 return 0;
273 *pResult = 1;
274 return 1;
276 void OnContextMenuHeader(CWnd * pWnd, CPoint point, bool isGroundEnable=false)
278 CHeaderCtrl * pHeaderCtrl = (CHeaderCtrl *)pWnd;
279 if ((point.x == -1) && (point.y == -1))
281 CRect rect;
282 pHeaderCtrl->GetItemRect(0, &rect);
283 pHeaderCtrl->ClientToScreen(&rect);
284 point = rect.CenterPoint();
287 CMenu popup;
288 if (popup.CreatePopupMenu())
290 int columnCount = GetColumnCount();
292 CString temp;
293 UINT uCheckedFlags = MF_STRING | MF_ENABLED | MF_CHECKED;
294 UINT uUnCheckedFlags = MF_STRING | MF_ENABLED;
296 // build control menu
298 //temp.LoadString(IDS_STATUSLIST_SHOWGROUPS);
299 //popup.AppendMenu(isGroundEnable? uCheckedFlags : uUnCheckedFlags, columnCount, temp);
301 temp.LoadString(IDS_STATUSLIST_RESETCOLUMNORDER);
302 popup.AppendMenu(uUnCheckedFlags, columnCount+2, temp);
303 popup.AppendMenu(MF_SEPARATOR);
305 // standard columns
306 AddMenuItem(&popup);
308 // user-prop columns:
309 // find relevant ones and sort 'em
311 std::map<CString, int> sortedProps;
312 for (int i = (int)itemName.size(); i < columnCount; ++i)
313 if (IsRelevant(i))
314 sortedProps[GetName(i)] = i;
316 if (!sortedProps.empty())
318 // add 'em to the menu
320 popup.AppendMenu(MF_SEPARATOR);
322 for (auto iter = sortedProps.cbegin(), end = sortedProps.cend()
323 ; iter != end
324 ; ++iter)
326 popup.AppendMenu ( IsVisible(iter->second)
327 ? uCheckedFlags
328 : uUnCheckedFlags
329 , iter->second
330 , iter->first);
334 // show menu & let user pick an entry
336 int cmd = popup.TrackPopupMenu(TPM_RETURNCMD | TPM_LEFTALIGN | TPM_NONOTIFY, point.x, point.y, pWnd, 0);
337 if ((cmd >= 1)&&(cmd < columnCount))
339 SetVisible (cmd, !IsVisible(cmd));
341 else if (cmd == columnCount)
343 pWnd->GetParent()->SendMessage(LVM_ENABLEGROUPVIEW, !isGroundEnable, NULL);
344 //EnableGroupView(!isGroundEnable);
346 else if (cmd == columnCount+1)
348 RemoveUnusedProps();
350 else if (cmd == columnCount+2)
352 temp.LoadString(IDS_CONFIRMRESETCOLUMNORDER);
353 if (MessageBox(pWnd->m_hWnd, temp, _T("TortoiseGit"), MB_YESNO | MB_ICONQUESTION) == IDYES)
354 ResetColumns (m_dwDefaultColumns);
359 void AddMenuItem(CMenu *pop)
361 UINT uCheckedFlags = MF_STRING | MF_ENABLED | MF_CHECKED;
362 UINT uUnCheckedFlags = MF_STRING | MF_ENABLED;
364 for (int i = 1; i < (int)itemName.size(); ++i)
366 if(IsRelevant(i))
367 pop->AppendMenu ( IsVisible(i)
368 ? uCheckedFlags
369 : uUnCheckedFlags
371 , GetName(i));
374 private:
376 /// initialization utilities
378 void ParseWidths (const CString& widths);
379 void SetStandardColumnVisibility (DWORD visibility);
380 void ParseColumnOrder (const CString& widths);
382 /// map internal column order onto visible column order
383 /// (all invisibles in front)
385 std::vector<int> GetGridColumnOrder() const;
386 void ApplyColumnOrder();
388 /// utilities used when writing data to the registry
390 DWORD GetSelectedStandardColumns() const;
391 CString GetWidthString() const;
392 CString GetColumnOrderString() const;
394 /// our parent control and its data
396 CListCtrl* control;
398 /// where to store in the registry
400 CString registryPrefix;
402 /// all columns in their "natural" order
404 struct ColumnInfo
406 int index; ///< is a user prop when < GitSLC_USERPROPCOLOFFSET
407 int width;
408 bool visible;
409 bool relevant; ///< set to @a visible, if no *shown* item has that property
412 std::vector<ColumnInfo> columns;
414 /// user-defined properties
416 std::set<CString> itemProps;
418 /// global column ordering including unused user props
420 std::vector<int> columnOrder;
422 std::vector<int> itemName;
427 * \ingroup TortoiseProc
428 * Simple utility class that defines the sort column order.
430 class CSorter
432 public:
434 CSorter ( ColumnManager* columnManager
435 , int sortedColumn
436 , bool ascending);
438 bool operator() ( const CTGitPath* entry1
439 , const CTGitPath* entry2) const;
441 static int A2L(const CString &str)
443 if(str==_T("-"))
444 return -1;
445 else
446 return _ttol(str);
449 private:
451 ColumnManager* columnManager;
452 int sortedColumn;
453 bool ascending;
457 * \ingroup SVN
458 * A List control, based on the MFC CListCtrl which shows a list of
459 * files with their git status. The control also provides a context
460 * menu to do some git tasks on the selected files.
462 * This is the main control used in many dialogs to show a list of files to
463 * work on.
465 class CGitStatusListCtrl :
466 public CListCtrl
468 public:
469 enum
471 IDGITLC_REVERT = 1,
472 /** Compare with base version. when current version is zero (i.e. working tree changes), compare working tree and HEAD */
473 IDGITLC_COMPARE,
474 IDGITLC_OPEN,
475 IDGITLC_DELETE,
476 IDGITLC_IGNORE,
477 /** Compare with base version and generate unified diff. when current version is zero (i.e. working tree changes), compare working tree and HEAD */
478 IDGITLC_GNUDIFF1 ,
479 IDGITLC_LOG ,
480 IDGITLC_LOGOLDNAME,
481 IDGITLC_LOGSUBMODULE,
482 IDGITLC_EDITCONFLICT ,
483 IDGITLC_IGNOREMASK ,
484 IDGITLC_IGNOREFOLDER ,
485 IDGITLC_ADD ,
486 IDGITLC_RESOLVECONFLICT ,
487 IDGITLC_OPENWITH ,
488 IDGITLC_EXPLORE ,
489 IDGITLC_RESOLVETHEIRS ,
490 IDGITLC_RESOLVEMINE ,
491 IDGITLC_REMOVE ,
492 IDGITLC_COMMIT ,
493 IDGITLC_COPY ,
494 IDGITLC_COPYEXT ,
495 IDGITLC_REMOVEFROMCS ,
496 IDGITLC_CREATECS ,
497 IDGITLC_CREATEIGNORECS ,
498 IDGITLC_CHECKGROUP ,
499 IDGITLC_UNCHECKGROUP ,
500 /** Compare current version and working tree */
501 IDGITLC_COMPAREWC ,
502 IDGITLC_BLAME ,
503 IDGITLC_SAVEAS ,
504 IDGITLC_REVERTTOREV ,
505 IDGITLC_REVERTTOPARENT ,
506 IDGITLC_VIEWREV ,
507 IDGITLC_FINDENTRY ,
508 /** used in sync dlg, compare in/out file changes; in combination with m_Rev1 and m_Rev2 */
509 IDGITLC_COMPARETWOREVISIONS,
510 /** used in sync dlg, compare in/out file changes; in combination with m_Rev1 and m_Rev2 */
511 IDGITLC_GNUDIFF2REVISIONS,
512 /** Compare two selected files */
513 IDGITLC_COMPARETWOFILES ,
514 IDGITLC_POPRESTORE ,
515 IDGITLC_CREATERESTORE ,
516 IDGITLC_RESTOREPATH ,
517 IDGITLC_ASSUMEVALID ,
518 IDGITLC_SKIPWORKTREE ,
519 IDGITLC_EXPORT ,
520 IDGITLC_UNSETIGNORELOCALCHANGES,
521 IDGITLC_PREPAREDIFF ,
522 IDGITLC_PREPAREDIFF_COMPARE,
523 // the IDSVNLC_MOVETOCS *must* be the last index, because it contains a dynamic submenu where
524 // the submenu items get command ID's sequent to this number
525 IDGITLC_MOVETOCS ,
527 int GetColumnIndex(int colmask);
528 static inline unsigned __int64 GetContextMenuBit(int i){ return ((unsigned __int64 )0x1)<<i ;}
530 * Sent to the parent window (using ::SendMessage) after a context menu
531 * command has finished if the item count has changed.
533 static const UINT GITSLNM_ITEMCOUNTCHANGED;
535 * Sent to the parent window (using ::SendMessage) when the control needs
536 * to be refreshed. Since this is done usually in the parent window using
537 * a thread, this message is used to tell the parent to do exactly that.
539 static const UINT GITSLNM_NEEDSREFRESH;
542 * Sent to the parent window (using ::SendMessage) when the user drops
543 * files on the control. The LPARAM is a pointer to a TCHAR string
544 * containing the dropped path.
546 static const UINT GITSLNM_ADDFILE;
549 * Sent to the parent window (using ::SendMessage) when the user checks/unchecks
550 * one or more items in the control. The WPARAM contains the number of
551 * checked items in the control.
553 static const UINT GITSLNM_CHECKCHANGED;
555 static const UINT GITSLNM_ITEMCHANGED;
557 CGitStatusListCtrl(void);
558 ~CGitStatusListCtrl(void);
560 CString m_Rev1;
561 CString m_Rev2;
564 * \ingroup TortoiseProc
565 * Helper class for CGitStatusListCtrl which represents
566 * the data for each file shown.
568 #if 0
569 class FileEntry
571 public:
572 FileEntry() : status(git_wc_status_unversioned)
573 // , copyfrom_rev(GIT_REV_ZERO)
574 , last_commit_date(0)
575 , last_commit_rev(GIT_REV_ZERO)
576 // , remoterev(GIT_REV_ZERO)
577 , textstatus(git_wc_status_unversioned)
578 , propstatus(git_wc_status_unversioned)
579 // , remotestatus(git_wc_status_unversioned)
580 // , remotetextstatus(git_wc_status_unversioned)
581 // , remotepropstatus(git_wc_status_unversioned)
582 , copied(false)
583 , switched(false)
584 , checked(false)
585 , inunversionedfolder(false)
586 , inexternal(false)
587 , differentrepo(false)
588 , direct(false)
589 , isfolder(false)
590 , isNested(false)
591 , Revision(GIT_REV_ZERO)
592 , isConflicted(false)
593 // , present_props()
594 , needslock(false)
595 /// , working_size(SVN_WC_ENTRY_WORKING_SIZE_UNKNOWN)
596 , keeplocal(false)
597 // , depth(git_depth_unknown)
600 const CTGitPath& GetPath() const
602 return path;
604 const bool IsChecked() const
606 return checked;
608 CString GetRelativeGitPath() const
610 if (path.IsEquivalentTo(basepath))
611 return path.GetGitPathString();
612 return path.GetGitPathString().Mid(basepath.GetGitPathString().GetLength()+1);
614 // const bool IsLocked() const
615 // {
616 // return !(lock_token.IsEmpty() && lock_remotetoken.IsEmpty());
617 // }
618 // const bool HasNeedsLock() const
619 // {
620 // return needslock;
621 // }
622 const bool IsFolder() const
624 return isfolder;
626 const bool IsInExternal() const
628 return inexternal;
630 const bool IsNested() const
632 return isNested;
634 const bool IsFromDifferentRepository() const
636 return differentrepo;
638 CString GetDisplayName() const
640 CString const& chopped = path.GetDisplayString(&basepath);
641 if (!chopped.IsEmpty())
643 return chopped;
645 else
647 // "Display name" must not be empty.
648 return path.GetFileOrDirectoryName();
651 CString GetChangeList() const
653 return changelist;
655 // CString GetURL() const
656 // {
657 // return url;
658 // }
659 public:
660 git_wc_status_kind status; ///< local status
661 git_wc_status_kind textstatus; ///< local text status
662 git_wc_status_kind propstatus; ///< local property status
664 private:
665 CTGitPath path; ///< full path of the file
666 CTGitPath basepath; ///< common ancestor path of all files
668 CString changelist; ///< the name of the changelist the item belongs to
670 CString last_commit_author; ///< the author which last committed this item
671 CTime last_commit_date; ///< the date when this item was last committed
672 git_revnum_t last_commit_rev; ///< the revision where this item was last committed
674 git_revnum_t remoterev; ///< the revision in HEAD of the repository
675 bool copied; ///< if the file/folder is added-with-history
676 bool switched; ///< if the file/folder is switched to another url
677 bool checked; ///< if the file is checked in the list control
678 bool inunversionedfolder; ///< if the file is inside an unversioned folder
679 bool inexternal; ///< if the item is in an external folder
680 bool differentrepo; ///< if the item is from a different repository than the rest
681 bool direct; ///< directly included (TRUE) or just a child of a folder
682 bool isfolder; ///< TRUE if entry refers to a folder
683 bool isNested; ///< TRUE if the folder from a different repository and/or path
684 bool isConflicted; ///< TRUE if a file entry is conflicted, i.e. if it has the conflicted paths set
685 bool needslock; ///< TRUE if the Git:needs-lock property is set
686 git_revnum_t Revision; ///< the base revision
687 // PropertyList present_props; ///< cacheable properties present in BASE
688 bool keeplocal; ///< Whether a local copy of this entry should be kept in the working copy after a deletion has been committed
689 git_depth_t depth; ///< the depth of this entry
690 friend class CGitStatusListCtrl;
691 friend class CGitStatusListCtrlDropTarget;
692 friend class CSorter;
694 #endif
697 * Initializes the control, sets up the columns.
698 * \param dwColumns mask of columns to show. Use the GitSLC_COLxxx defines.
699 * \param sColumnInfoContainer Name of a registry key
700 * where the position and visibility of each column
701 * is saved and used from. If the registry key
702 * doesn't exist, the default order is used
703 * and dwColumns tells which columns are visible.
704 * \param dwContextMenus mask of context menus to be active, not all make sense for every use of this control.
705 * Use the GitSLC_POPxxx defines.
706 * \param bHasCheckboxes TRUE if the control should show check boxes on the left of each file entry.
707 * \param bHasWC TRUE if the reporisty is not a bare repository (hides wc related items on the contextmenu)
709 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);
711 * Sets a background image for the list control.
712 * The image is shown in the right bottom corner.
713 * \param nID the resource ID of the bitmap to use as the background
715 bool SetBackgroundImage(UINT nID);
717 * Makes the 'ignore' context menu only ignore the files and not add the
718 * folder which gets the Git:ignore property changed to the list.
719 * This is needed e.g. for the Add-dialog, where the modified folder
720 * showing up would break the resulting "add" command.
722 void SetIgnoreRemoveOnly(bool bRemoveOnly = true) {m_bIgnoreRemoveOnly = bRemoveOnly;}
724 * The unversioned items are by default shown after all other files in the list.
725 * If that behavior should be changed, set this value to false.
727 void PutUnversionedLast(bool bLast) {m_bUnversionedLast = bLast;}
729 * Fetches the git status of all files and stores the information
730 * about them in an internal array.
731 * \param sFilePath path to a file which contains a list of files and/or folders for which to
732 * fetch the status, separated by newlines.
733 * \param bUpdate TRUE if the remote status is requested too.
734 * \return TRUE on success.
736 BOOL GetStatus ( const CTGitPathList* pathList=NULL
737 , bool bUpdate = false
738 , bool bShowIgnores = false
739 , bool bShowUnRev = false
740 , bool bShowLocalChangesIgnored = false);
743 * Populates the list control with the previously (with GetStatus) gathered status information.
744 * \param dwShow mask of file types to show. Use the GitSLC_SHOWxxx defines.
745 * \param dwCheck mask of file types to check. Use GitLC_SHOWxxx defines. Default (0) means 'use the entry's stored check status'
747 void Show(unsigned int dwShow, unsigned int dwCheck = 0, bool bShowFolders = true,BOOL updateStatusList=FALSE, bool UseStoredCheckStatus=false);
748 void Show(unsigned int dwShow, const CTGitPathList& checkedList, bool bShowFolders = true);
751 * Copies the selected entries in the control to the clipboard. The entries
752 * are separated by newlines.
753 * \param dwCols the columns to copy. Each column is separated by a tab.
755 bool CopySelectedEntriesToClipboard(DWORD dwCols);
758 * If during the call to GetStatus() some Git:externals are found from different
759 * repositories than the first one checked, then this method returns TRUE.
761 BOOL HasExternalsFromDifferentRepos() const {return m_bHasExternalsFromDifferentRepos;}
764 * If during the call to GetStatus() some Git:externals are found then this method returns TRUE.
766 BOOL HasExternals() const {return m_bHasExternals;}
769 * If unversioned files are found (but not necessarily shown) TRUE is returned.
771 BOOL HasUnversionedItems() {return m_bHasUnversionedItems;}
774 * If there are any locks in the working copy, TRUE is returned
776 BOOL HasLocks() const {return m_bHasLocks;}
779 * If there are any change lists defined in the working copy, TRUE is returned
781 BOOL HasChangeLists() const {return m_bHasChangeLists;}
784 * Returns the file entry data for the list control index.
786 //CGitStatusListCtrl::FileEntry * GetListEntry(UINT_PTR index);
789 * Returns the file entry data for the specified path.
790 * \note The entry might not be shown in the list control.
792 //CGitStatusListCtrl::FileEntry * GetListEntry(const CTGitPath& path);
795 * Returns the index of the list control entry with the specified path,
796 * or -1 if the path is not in the list control.
798 int GetIndex(const CTGitPath& path);
801 * Returns the file entry data for the specified path in the list control.
803 //CGitStatusListCtrl::FileEntry * GetVisibleListEntry(const CTGitPath& path);
806 * Returns a String containing some statistics like number of modified, normal, deleted,...
807 * files.
809 CString GetStatisticsString(bool simple=false);
812 * Set a static control which will be updated automatically with
813 * the number of selected and total files shown in the list control.
815 void SetStatLabel(CWnd * pStatLabel){m_pStatLabel = pStatLabel;};
818 * Set a tri-state checkbox which is updated automatically if the
819 * user checks/unchecks file entries in the list control to indicate
820 * if all files are checked, none are checked or some are checked.
822 void SetSelectButton(CButton * pButton) {m_pSelectButton = pButton;}
825 * Set a button which is de-/activated automatically. The button is
826 * only set active if at least one item is selected.
828 void SetConfirmButton(CButton * pButton) {m_pConfirmButton = pButton;}
831 * Select/unselect all entries in the list control.
832 * \param bSelect TRUE to check, FALSE to uncheck.
834 void SelectAll(bool bSelect, bool bIncludeNoCommits = false);
837 * Checks or unchecks all specified items
838 * \param dwCheck GITLC_SHOWxxx defines
839 * \param check if true matching items will be selected, false unchecks matching items
841 void Check(DWORD dwCheck, bool check = true);
843 /** Set a checkbox on an entry in the listbox
844 * Keeps the listctrl checked state and the FileEntry's checked flag in sync
846 void SetEntryCheck(CTGitPath* pEntry, int listboxIndex, bool bCheck);
848 /** Write a list of the checked items' paths into a path list
850 void WriteCheckedNamesToPathList(CTGitPathList& pathList);
852 /** fills in \a lMin and \a lMax with the lowest/highest revision of all
853 * files/folders in the working copy.
854 * \param bShownOnly if true, the min/max revisions are calculated only for shown items
855 * \param bCheckedOnly if true, the min/max revisions are calculated only for items
856 * which are checked.
857 * \remark Since an item can only be checked if it is visible/shown in the list control
858 * bShownOnly is automatically set to true if bCheckedOnly is true
860 void GetMinMaxRevisions(git_revnum_t& rMin, git_revnum_t& rMax, bool bShownOnly, bool bCheckedOnly);
863 * Returns the parent directory of all entries in the control.
864 * if \a bStrict is set to false, then the paths passed to the control
865 * to fetch the status (in GetStatus()) are used if possible.
867 CString GetCommonDirectory(bool bStrict);
870 * Returns the parent url of all entries in the control.
871 * if \a bStrict is set to false, then the paths passed to the control
872 * to fetch the status (in GetStatus()) are used if possible.
874 CTGitPath GetCommonURL(bool bStrict);
877 * Sets a pointer to a boolean variable which is checked periodically
878 * during the status fetching. As soon as the variable changes to true,
879 * the operations stops.
881 void SetCancelBool(bool * pbCanceled) {m_pbCanceled = pbCanceled;}
884 * Sets the string shown in the control while the status is fetched.
885 * If not set, it defaults to "please wait..."
887 void SetBusyString(const CString& str) {m_sBusy = str;}
888 void SetBusyString(UINT id) {m_sBusy.LoadString(id);}
891 * Sets the string shown in the control if no items are shown. This
892 * can happen for example if there's nothing modified and the unversioned
893 * files aren't shown either, so there's nothing to commit.
894 * If not set, it defaults to "file list is empty".
896 void SetEmptyString(const CString& str) {m_sEmpty = str;}
897 void SetEmptyString(UINT id) {m_sEmpty.LoadString(id);}
900 * Returns the number of selected items
902 LONG GetSelected(){return m_nSelected;};
905 * Enables dropping of files on the control.
907 bool EnableFileDrop();
910 * Checks if the path already exists in the list.
912 bool HasPath(const CTGitPath& path);
914 * Checks if the path is shown/visible in the list control.
916 bool IsPathShown(const CTGitPath& path);
918 * Forces the children to be checked when the parent folder is checked,
919 * and the parent folder to be unchecked if one of its children is unchecked.
921 void CheckChildrenWithParent(bool bCheck) {m_bCheckChildrenWithParent = bCheck;}
924 * Allows checking the items if change lists are present. If set to false,
925 * items are not checked if at least one changelist is available.
927 void CheckIfChangelistsArePresent(bool bCheck) {m_bCheckIfGroupsExist = bCheck;}
929 * Returns the currently used show flags passed to the Show() method.
931 DWORD GetShowFlags() {return m_dwShow;}
933 public:
934 CString GetLastErrorMessage() {return m_sLastError;}
936 void Block(BOOL block, BOOL blockUI) {m_bBlock = block; m_bBlockUI = blockUI;}
938 LONG GetUnversionedCount() { return m_nShownUnversioned; }
939 LONG GetModifiedCount() { return m_nShownModified; }
940 LONG GetAddedCount() { return m_nShownAdded; }
941 LONG GetDeletedCount() { return m_nShownDeleted; }
942 LONG GetConflictedCount() { return m_nShownConflicted; }
943 LONG GetFileCount() { return m_nShownFiles; }
944 LONG GetSubmoduleCount() { return m_nShownSubmodules; }
946 LONG m_nTargetCount; ///< number of targets in the file passed to GetStatus()
948 CString m_sURL; ///< the URL of the target or "(multiple targets)"
950 GitRev m_HeadRev; ///< the HEAD revision of the repository if bUpdate was TRUE
952 bool m_amend; ///< if true show the changes to the revision before the last commit
954 CString m_sUUID; ///< the UUID of the associated repository
956 CString m_sDisplayedBranch; ///< When on LogDialog, what is the current displayed branch
958 bool m_bIsRevertTheirMy; ///< at rebase case, Their and My version is revert.
960 CWnd *m_hwndLogicalParent;
962 DECLARE_MESSAGE_MAP()
964 public:
965 void SetBusy(bool b) {m_bBusy = b; Invalidate();}
966 void SetHasCheckboxes(bool bHasCheckboxes)
968 m_bHasCheckboxes = bHasCheckboxes;
969 DWORD exStyle = GetExtendedStyle();
970 if (bHasCheckboxes)
971 exStyle |= LVS_EX_CHECKBOXES;
972 else
973 exStyle &= ~LVS_EX_CHECKBOXES;
974 SetExtendedStyle(exStyle);
977 private:
978 void SaveColumnWidths(bool bSaveToRegistry = false);
979 //void AddEntry(FileEntry * entry, WORD langID, int listIndex); ///< add an entry to the control
980 void RemoveListEntry(int index); ///< removes an entry from the listcontrol and both arrays
981 bool BuildStatistics(); ///< build the statistics and correct the case of files/folders
982 void StartDiff(int fileindex); ///< start the external diff program
983 void StartDiffWC(int fileindex); ///< start the external diff program
984 void StartDiffTwo(int fileindex);
986 void SetGitIndexFlagsForSelectedFiles(UINT message, BOOL assumevalid, BOOL skipworktree);
988 CString m_sMarkForDiffFilename;
989 CString m_sMarkForDiffVersion;
991 enum
993 ALTERNATIVEEDITOR,
994 OPEN,
995 OPEN_WITH,
997 void OpenFile(CTGitPath *path,int mode);
999 /// Clear the status vector (contains custodial pointers)
1000 void ClearStatusArray();
1002 /// Sort predicate function - Compare the paths of two entries without regard to case
1003 //static bool EntryPathCompareNoCase(const FileEntry* pEntry1, const FileEntry* pEntry2);
1005 /// Predicate used to build a list of only the versioned entries of the FileEntry array
1006 //static bool IsEntryVersioned(const FileEntry* pEntry1);
1008 /// Look up the relevant show flags for a particular Git status value
1009 DWORD GetShowFlagsFromGitStatus(git_wc_status_kind status);
1011 /// Adjust the checkbox-state on all descendants of a specific item
1012 //void SetCheckOnAllDescendentsOf(const FileEntry* parentEntry, bool bCheck);
1014 /// Build a path list of all the selected items in the list (NOTE - SELECTED, not CHECKED)
1015 void FillListOfSelectedItemPaths(CTGitPathList& pathList, bool bNoIgnored = false);
1017 /// Enables/Disables group view and adds all groups to the list control.
1018 /// If bForce is true, then group view is enabled and the 'null' group is added.
1019 bool PrepareGroups(bool bForce = false);
1020 /// Returns the group number to which the group header belongs
1021 /// If the point is not over a group header, -1 is returned
1022 int GetGroupFromPoint(POINT * ppt);
1023 /// Returns the number of change lists the selection has
1024 size_t GetNumberOfChangelistsInSelection();
1026 /// Puts the item to the corresponding group
1027 bool SetItemGroup(int item, int groupindex);
1029 void CheckEntry(int index, int nListItems);
1030 void UncheckEntry(int index, int nListItems);
1032 /// sends an GitSLNM_CHECKCHANGED notification to the parent
1033 void NotifyCheck();
1034 CWnd * GetLogicalParent() { return m_hwndLogicalParent != NULL ? m_hwndLogicalParent : this->GetParent(); }
1036 void OnContextMenuList(CWnd * pWnd, CPoint point);
1037 void OnContextMenuGroup(CWnd * pWnd, CPoint point);
1038 void OnContextMenuHeader(CWnd * pWnd, CPoint point);
1039 bool CheckMultipleDiffs();
1041 void DeleteSelectedFiles();
1043 virtual void PreSubclassWindow();
1044 virtual BOOL PreTranslateMessage(MSG* pMsg);
1045 virtual BOOL OnWndMsg(UINT message, WPARAM wParam, LPARAM lParam, LRESULT* pResult);
1046 afx_msg void OnBeginDrag(NMHDR* pNMHDR, LRESULT* pResult);
1047 afx_msg BOOL OnToolTipText(UINT id, NMHDR *pNMHDR, LRESULT *pResult);
1048 afx_msg void OnHdnItemclick(NMHDR *pNMHDR, LRESULT *pResult);
1049 afx_msg void OnLvnItemchanging(NMHDR *pNMHDR, LRESULT *pResult);
1050 afx_msg BOOL OnLvnItemchanged(NMHDR *pNMHDR, LRESULT *pResult);
1051 afx_msg void OnColumnResized(NMHDR *pNMHDR, LRESULT *pResult);
1052 afx_msg void OnColumnMoved(NMHDR *pNMHDR, LRESULT *pResult);
1053 afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
1055 void CreateChangeList(const CString& name);
1057 afx_msg void OnNMDblclk(NMHDR *pNMHDR, LRESULT *pResult);
1058 afx_msg void OnLvnGetInfoTip(NMHDR *pNMHDR, LRESULT *pResult);
1059 afx_msg void OnNMCustomdraw(NMHDR *pNMHDR, LRESULT *pResult);
1060 afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
1061 afx_msg UINT OnGetDlgCode();
1062 afx_msg void OnNMReturn(NMHDR *pNMHDR, LRESULT *pResult);
1063 afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
1064 afx_msg void OnPaint();
1065 afx_msg void OnHdnBegintrack(NMHDR *pNMHDR, LRESULT *pResult);
1066 afx_msg void OnHdnItemchanging(NMHDR *pNMHDR, LRESULT *pResult);
1067 afx_msg void OnDestroy();
1070 void FilesExport();
1071 void FileSaveAs(CTGitPath *path);
1072 int RevertSelectedItemToVersion(bool parent = false);
1074 private:
1075 bool * m_pbCanceled;
1076 bool m_bAscending; ///< sort direction
1077 int m_nSortedColumn; ///< which column to sort
1078 bool m_bHasCheckboxes;
1079 bool m_bHasWC;
1080 bool m_bUnversionedLast;
1081 bool m_bHasExternalsFromDifferentRepos;
1082 bool m_bHasExternals;
1083 BOOL m_bHasUnversionedItems;
1084 bool m_bHasLocks;
1085 bool m_bHasChangeLists;
1086 //typedef std::vector<FileEntry*> FileEntryVector;
1087 //FileEntryVector m_arStatusArray;
1088 std::vector<CTGitPath*> m_arStatusArray;
1089 std::vector<size_t> m_arListArray;
1090 std::map<CString, int> m_changelists;
1091 bool m_bHasIgnoreGroup;
1092 //CTGitPathList m_ConflictFileList;
1093 CTGitPathList m_StatusFileList;
1094 CTGitPathList m_UnRevFileList;
1095 CTGitPathList m_IgnoreFileList;
1096 CTGitPathList m_LocalChangesIgnoredFileList; // assume valid & skip worktree
1097 //CTGitPathList m_StatusUrlList;
1098 CString m_sLastError;
1100 LONG m_nUnversioned;
1101 LONG m_nNormal;
1102 LONG m_nModified;
1103 LONG m_nAdded;
1104 LONG m_nDeleted;
1105 LONG m_nConflicted;
1106 LONG m_nTotal;
1107 LONG m_nSelected;
1108 LONG m_nLineAdded;
1109 LONG m_nLineDeleted;
1110 LONG m_nRenamed;
1112 LONG m_nShownUnversioned;
1113 LONG m_nShownModified;
1114 LONG m_nShownAdded;
1115 LONG m_nShownDeleted;
1116 LONG m_nShownConflicted;
1117 LONG m_nShownFiles;
1118 LONG m_nShownSubmodules;
1120 DWORD m_dwDefaultColumns;
1121 DWORD m_dwShow;
1122 bool m_bShowFolders;
1123 bool m_bShowIgnores;
1124 bool m_bUpdate;
1125 unsigned __int64 m_dwContextMenus;
1126 BOOL m_bBlock;
1127 BOOL m_bBlockUI;
1128 bool m_bBusy;
1129 bool m_bEmpty;
1130 bool m_bIgnoreRemoveOnly;
1131 bool m_bCheckIfGroupsExist;
1132 bool m_bFileDropsEnabled;
1133 bool m_bOwnDrag;
1135 int m_nIconFolder;
1136 int m_nRestoreOvl;
1138 CWnd * m_pStatLabel;
1139 CButton * m_pSelectButton;
1140 CButton * m_pConfirmButton;
1141 CColors m_Colors;
1143 CString m_sEmpty;
1144 CString m_sBusy;
1145 CString m_sNoPropValueText;
1147 bool m_bCheckChildrenWithParent;
1148 CGitStatusListCtrlDropTarget * m_pDropTarget;
1150 ColumnManager m_ColumnManager;
1152 std::map<CString,bool> m_mapFilenameToChecked; ///< Remember de-/selected items
1153 std::map<CString,bool> m_mapDirectFiles;
1154 CComCriticalSection m_critSec;
1156 CAutoLibrary m_ShellDll;
1157 typedef HRESULT(WINAPI* FNSHCreateDefaultContextMenu) (const DEFCONTEXTMENU *pdcm, REFIID riid, void **ppv);
1158 FNSHCreateDefaultContextMenu pfnSHCreateDefaultContextMenu;
1159 typedef HRESULT(WINAPI* FNAssocCreateForClasses) (const ASSOCIATIONELEMENT *rgClasses, ULONG cClasses, REFIID riid, void **ppv);
1160 FNAssocCreateForClasses pfnAssocCreateForClasses;
1162 friend class CGitStatusListCtrlDropTarget;
1163 public:
1164 enum
1166 FILELIST_MODIFY= 0x1,
1167 FILELIST_UNVER = 0x2,
1168 FILELIST_IGNORE =0x4,
1169 FILELIST_LOCALCHANGESIGNORED = 0x8, // assume valid & skip worktree files
1171 private:
1172 int UpdateFileList(CTGitPathList *List = NULL);
1173 public:
1174 int UpdateFileList(int mask, bool once=true,CTGitPathList *List=NULL);
1175 int UpdateUnRevFileList(CTGitPathList &list);
1176 int UpdateUnRevFileList(CTGitPathList *List=NULL);
1177 int UpdateIgnoreFileList(CTGitPathList *List=NULL);
1178 int UpdateLocalChangesIgnoredFileList(CTGitPathList* list = nullptr);
1180 int UpdateWithGitPathList(CTGitPathList &list);
1182 void AddEntry(CTGitPath* path, WORD langID, int ListIndex);
1183 void Clear();
1184 int m_FileLoaded;
1185 git_revnum_t m_CurrentVersion;
1186 bool m_bDoNotAutoselectSubmodules;
1187 bool m_bNoAutoselectMissing;
1188 std::map<CString, CString> m_restorepaths;
1190 HMENU m_hShellMenu;
1191 LPCONTEXTMENU m_pContextMenu;
1194 #if 0
1195 class CGitStatusListCtrlDropTarget : public CIDropTarget
1197 public:
1198 CGitStatusListCtrlDropTarget(CGitStatusListCtrl * pGitStatusListCtrl):CIDropTarget(pGitStatusListCtrl->m_hWnd){m_pGitStatusListCtrl = pGitStatusListCtrl;}
1200 virtual bool OnDrop(FORMATETC* pFmtEtc, STGMEDIUM& medium, DWORD * /*pdwEffect*/, POINTL pt);
1201 virtual HRESULT STDMETHODCALLTYPE DragOver(DWORD grfKeyState, POINTL pt, DWORD __RPC_FAR *pdwEffect);
1202 private:
1203 CGitStatusListCtrl * m_pGitStatusListCtrl;
1205 #endif