Right align column contents
[TortoiseGit.git] / src / Git / GitStatusListCtrl.h
blob26b97fd4d8ed7a0d62cdc342a1fd7725ce0142ad
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2016 - 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 (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)
125 #define GITSLC_PREPAREDIFF CGitStatusListCtrl::GetContextMenuBit(CGitStatusListCtrl::IDGITLC_PREPAREDIFF)
127 #define GITSLC_IGNORECHANGELIST _T("ignore-on-commit")
129 // This gives up to 64 standard properties and menu entries
130 #define GITSLC_MAXCOLUMNCOUNT 0xff
132 #define OVL_RESTORE 1
134 typedef int (__cdecl *GENERICCOMPAREFN)(const void * elem1, const void * elem2);
135 typedef CComCritSecLock<CComCriticalSection> Locker;
137 class CGitStatusListCtrlDropTarget;
140 * \ingroup TortoiseProc
141 * Helper class for CGitStatusListCtrl that represents
142 * the columns visible and their order as well as
143 * persisting that data in the registry.
145 * It assigns logical index values to the (potential) columns:
146 * 0 .. GitSLC_NUMCOLUMNS-1 contain the standard attributes
148 * The column vector contains the columns that are actually
149 * available in the control.
152 class ColumnManager
154 public:
156 /// construction / destruction
158 ColumnManager (CListCtrl* control) : control (control), m_dwDefaultColumns(0) {};
159 ~ColumnManager() {};
161 DWORD m_dwDefaultColumns;
162 /// registry access
164 void ReadSettings (DWORD defaultColumns, DWORD hideColumns, const CString& containerName, int ReadSettings, int* withlist = nullptr);
165 void WriteSettings() const;
167 /// read column definitions
169 int GetColumnCount() const; ///< total number of columns
170 bool IsVisible (int column) const;
171 int GetInvisibleCount() const;
172 bool IsRelevant (int column) const;
173 CString GetName (int column) const;
174 int SetNames(UINT * buff, int size);
175 int GetWidth (int column, bool useDefaults = false) const;
176 int GetVisibleWidth (int column, bool useDefaults) const;
177 void SetRightAlign(int column) 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
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
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))
236 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()))
245 return 0;
247 // visible columns may be modified
249 if (IsVisible (phdr->iItem))
250 return 0;
252 // columns already marked as "invisible" internally may be (re-)sized to 0
254 if (phdr->pitem
255 && (phdr->pitem->mask == HDI_WIDTH)
256 && (phdr->pitem->cxy == 0))
258 return 0;
261 if (phdr->pitem
262 && (phdr->pitem->mask != HDI_WIDTH))
264 return 0;
267 *pResult = 1;
268 return 1;
270 void OnContextMenuHeader(CWnd * pWnd, CPoint point, bool isGroundEnable=false)
272 CHeaderCtrl * pHeaderCtrl = (CHeaderCtrl *)pWnd;
273 if ((point.x == -1) && (point.y == -1))
275 CRect rect;
276 pHeaderCtrl->GetItemRect(0, &rect);
277 pHeaderCtrl->ClientToScreen(&rect);
278 point = rect.CenterPoint();
281 CMenu popup;
282 if (popup.CreatePopupMenu())
284 int columnCount = GetColumnCount();
286 CString temp;
287 UINT uCheckedFlags = MF_STRING | MF_ENABLED | MF_CHECKED;
288 UINT uUnCheckedFlags = MF_STRING | MF_ENABLED;
290 // build control menu
292 //temp.LoadString(IDS_STATUSLIST_SHOWGROUPS);
293 //popup.AppendMenu(isGroundEnable? uCheckedFlags : uUnCheckedFlags, columnCount, temp);
295 temp.LoadString(IDS_STATUSLIST_RESETCOLUMNORDER);
296 popup.AppendMenu(uUnCheckedFlags, columnCount+2, temp);
297 popup.AppendMenu(MF_SEPARATOR);
299 // standard columns
300 AddMenuItem(&popup);
302 // user-prop columns:
303 // find relevant ones and sort 'em
305 std::map<CString, int> sortedProps;
306 for (int i = (int)itemName.size(); i < columnCount; ++i)
307 if (IsRelevant(i))
308 sortedProps[GetName(i)] = i;
310 if (!sortedProps.empty())
312 // add 'em to the menu
314 popup.AppendMenu(MF_SEPARATOR);
316 for (auto iter = sortedProps.cbegin(), end = sortedProps.cend()
317 ; iter != end
318 ; ++iter)
320 popup.AppendMenu ( IsVisible(iter->second)
321 ? uCheckedFlags
322 : uUnCheckedFlags
323 , iter->second
324 , iter->first);
328 // show menu & let user pick an entry
330 int cmd = popup.TrackPopupMenu(TPM_RETURNCMD | TPM_LEFTALIGN | TPM_NONOTIFY, point.x, point.y, pWnd, 0);
331 if ((cmd >= 1)&&(cmd < columnCount))
332 SetVisible (cmd, !IsVisible(cmd));
333 else if (cmd == columnCount)
335 pWnd->GetParent()->SendMessage(LVM_ENABLEGROUPVIEW, !isGroundEnable, NULL);
336 //EnableGroupView(!isGroundEnable);
338 else if (cmd == columnCount+1)
339 RemoveUnusedProps();
340 else if (cmd == columnCount+2)
342 temp.LoadString(IDS_CONFIRMRESETCOLUMNORDER);
343 if (MessageBox(pWnd->m_hWnd, temp, _T("TortoiseGit"), MB_YESNO | MB_ICONQUESTION) == IDYES)
344 ResetColumns (m_dwDefaultColumns);
349 void AddMenuItem(CMenu *pop)
351 UINT uCheckedFlags = MF_STRING | MF_ENABLED | MF_CHECKED;
352 UINT uUnCheckedFlags = MF_STRING | MF_ENABLED;
354 for (int i = 1; i < (int)itemName.size(); ++i)
356 if(IsRelevant(i))
357 pop->AppendMenu ( IsVisible(i)
358 ? uCheckedFlags
359 : uUnCheckedFlags
361 , GetName(i));
364 private:
366 /// initialization utilities
368 void ParseWidths (const CString& widths);
369 void SetStandardColumnVisibility (DWORD visibility);
370 void ParseColumnOrder (const CString& widths);
372 /// map internal column order onto visible column order
373 /// (all invisibles in front)
375 std::vector<int> GetGridColumnOrder() const;
376 void ApplyColumnOrder();
378 /// utilities used when writing data to the registry
380 DWORD GetSelectedStandardColumns() const;
381 CString GetWidthString() const;
382 CString GetColumnOrderString() const;
384 /// our parent control and its data
386 CListCtrl* control;
388 /// where to store in the registry
390 CString registryPrefix;
392 /// all columns in their "natural" order
394 struct ColumnInfo
396 int index; ///< is a user prop when < GitSLC_USERPROPCOLOFFSET
397 int width;
398 bool visible;
399 bool relevant; ///< set to @a visible, if no *shown* item has that property
402 std::vector<ColumnInfo> columns;
404 /// user-defined properties
406 std::set<CString> itemProps;
408 /// global column ordering including unused user props
410 std::vector<int> columnOrder;
412 std::vector<int> itemName;
416 * \ingroup TortoiseProc
417 * Simple utility class that defines the sort column order.
419 class CSorter
421 public:
423 CSorter ( ColumnManager* columnManager
424 , int sortedColumn
425 , bool ascending);
427 bool operator() ( const CTGitPath* entry1
428 , const CTGitPath* entry2) const;
430 static int A2L(const CString &str)
432 if(str==_T("-"))
433 return -1;
434 else
435 return _ttol(str);
438 private:
440 ColumnManager* columnManager;
441 int sortedColumn;
442 bool ascending;
446 * \ingroup SVN
447 * A List control, based on the MFC CListCtrl which shows a list of
448 * files with their git status. The control also provides a context
449 * menu to do some git tasks on the selected files.
451 * This is the main control used in many dialogs to show a list of files to
452 * work on.
454 class CGitStatusListCtrl :
455 public CListCtrl
457 public:
458 enum
460 IDGITLC_REVERT = 1,
461 /** Compare with base version. when current version is zero (i.e. working tree changes), compare working tree and HEAD */
462 IDGITLC_COMPARE,
463 IDGITLC_OPEN,
464 IDGITLC_DELETE,
465 IDGITLC_IGNORE,
466 /** Compare with base version and generate unified diff. when current version is zero (i.e. working tree changes), compare working tree and HEAD */
467 IDGITLC_GNUDIFF1 ,
468 IDGITLC_LOG ,
469 IDGITLC_LOGOLDNAME,
470 IDGITLC_LOGSUBMODULE,
471 IDGITLC_EDITCONFLICT ,
472 IDGITLC_IGNOREMASK ,
473 IDGITLC_IGNOREFOLDER ,
474 IDGITLC_ADD ,
475 IDGITLC_RESOLVECONFLICT ,
476 IDGITLC_OPENWITH ,
477 IDGITLC_EXPLORE ,
478 IDGITLC_RESOLVETHEIRS ,
479 IDGITLC_RESOLVEMINE ,
480 IDGITLC_REMOVE ,
481 IDGITLC_COMMIT ,
482 IDGITLC_COPY ,
483 IDGITLC_COPYEXT ,
484 IDGITLC_REMOVEFROMCS ,
485 IDGITLC_CREATECS ,
486 IDGITLC_CREATEIGNORECS ,
487 IDGITLC_CHECKGROUP ,
488 IDGITLC_UNCHECKGROUP ,
489 /** Compare current version and working tree */
490 IDGITLC_COMPAREWC ,
491 IDGITLC_BLAME ,
492 IDGITLC_SAVEAS ,
493 IDGITLC_REVERTTOREV ,
494 IDGITLC_REVERTTOPARENT ,
495 IDGITLC_VIEWREV ,
496 IDGITLC_FINDENTRY ,
497 /** used in sync dlg, compare in/out file changes; in combination with m_Rev1 and m_Rev2 */
498 IDGITLC_COMPARETWOREVISIONS,
499 /** used in sync dlg, compare in/out file changes; in combination with m_Rev1 and m_Rev2 */
500 IDGITLC_GNUDIFF2REVISIONS,
501 /** Compare two selected files */
502 IDGITLC_COMPARETWOFILES ,
503 IDGITLC_POPRESTORE ,
504 IDGITLC_CREATERESTORE ,
505 IDGITLC_RESTOREPATH ,
506 IDGITLC_ASSUMEVALID ,
507 IDGITLC_SKIPWORKTREE ,
508 IDGITLC_EXPORT ,
509 IDGITLC_UNSETIGNORELOCALCHANGES,
510 IDGITLC_PREPAREDIFF ,
511 IDGITLC_PREPAREDIFF_COMPARE,
512 // the IDSVNLC_MOVETOCS *must* be the last index, because it contains a dynamic submenu where
513 // the submenu items get command ID's sequent to this number
514 IDGITLC_MOVETOCS ,
516 int GetColumnIndex(int colmask);
517 static inline unsigned __int64 GetContextMenuBit(int i){ return ((unsigned __int64 )0x1)<<i ;}
519 * Sent to the parent window (using ::SendMessage) after a context menu
520 * command has finished if the item count has changed.
522 static const UINT GITSLNM_ITEMCOUNTCHANGED;
524 * Sent to the parent window (using ::SendMessage) when the control needs
525 * to be refreshed. Since this is done usually in the parent window using
526 * a thread, this message is used to tell the parent to do exactly that.
528 static const UINT GITSLNM_NEEDSREFRESH;
531 * Sent to the parent window (using ::SendMessage) when the user drops
532 * files on the control. The LPARAM is a pointer to a TCHAR string
533 * containing the dropped path.
535 static const UINT GITSLNM_ADDFILE;
538 * Sent to the parent window (using ::SendMessage) when the user checks/unchecks
539 * one or more items in the control. The WPARAM contains the number of
540 * checked items in the control.
542 static const UINT GITSLNM_CHECKCHANGED;
544 static const UINT GITSLNM_ITEMCHANGED;
546 CGitStatusListCtrl(void);
547 ~CGitStatusListCtrl(void);
549 CString m_Rev1;
550 CString m_Rev2;
553 * \ingroup TortoiseProc
554 * Helper class for CGitStatusListCtrl which represents
555 * the data for each file shown.
557 #if 0
558 class FileEntry
560 public:
561 FileEntry() : status(git_wc_status_unversioned)
562 // , copyfrom_rev(GIT_REV_ZERO)
563 , last_commit_date(0)
564 , last_commit_rev(GIT_REV_ZERO)
565 // , remoterev(GIT_REV_ZERO)
566 , textstatus(git_wc_status_unversioned)
567 , propstatus(git_wc_status_unversioned)
568 // , remotestatus(git_wc_status_unversioned)
569 // , remotetextstatus(git_wc_status_unversioned)
570 // , remotepropstatus(git_wc_status_unversioned)
571 , copied(false)
572 , switched(false)
573 , checked(false)
574 , inunversionedfolder(false)
575 , inexternal(false)
576 , differentrepo(false)
577 , direct(false)
578 , isfolder(false)
579 , isNested(false)
580 , Revision(GIT_REV_ZERO)
581 , isConflicted(false)
582 // , present_props()
583 , needslock(false)
584 /// , working_size(SVN_WC_ENTRY_WORKING_SIZE_UNKNOWN)
585 , keeplocal(false)
586 // , depth(git_depth_unknown)
589 const CTGitPath& GetPath() const
591 return path;
593 const bool IsChecked() const
595 return checked;
597 CString GetRelativeGitPath() const
599 if (path.IsEquivalentTo(basepath))
600 return path.GetGitPathString();
601 return path.GetGitPathString().Mid(basepath.GetGitPathString().GetLength()+1);
603 // const bool IsLocked() const
604 // {
605 // return !(lock_token.IsEmpty() && lock_remotetoken.IsEmpty());
606 // }
607 // const bool HasNeedsLock() const
608 // {
609 // return needslock;
610 // }
611 const bool IsFolder() const
613 return isfolder;
615 const bool IsInExternal() const
617 return inexternal;
619 const bool IsNested() const
621 return isNested;
623 const bool IsFromDifferentRepository() const
625 return differentrepo;
627 CString GetDisplayName() const
629 CString const& chopped = path.GetDisplayString(&basepath);
630 if (!chopped.IsEmpty())
632 return chopped;
634 else
636 // "Display name" must not be empty.
637 return path.GetFileOrDirectoryName();
640 CString GetChangeList() const
642 return changelist;
644 // CString GetURL() const
645 // {
646 // return url;
647 // }
648 public:
649 git_wc_status_kind status; ///< local status
650 git_wc_status_kind textstatus; ///< local text status
651 git_wc_status_kind propstatus; ///< local property status
653 private:
654 CTGitPath path; ///< full path of the file
655 CTGitPath basepath; ///< common ancestor path of all files
657 CString changelist; ///< the name of the changelist the item belongs to
659 CString last_commit_author; ///< the author which last committed this item
660 CTime last_commit_date; ///< the date when this item was last committed
661 git_revnum_t last_commit_rev; ///< the revision where this item was last committed
663 git_revnum_t remoterev; ///< the revision in HEAD of the repository
664 bool copied; ///< if the file/folder is added-with-history
665 bool switched; ///< if the file/folder is switched to another url
666 bool checked; ///< if the file is checked in the list control
667 bool inunversionedfolder; ///< if the file is inside an unversioned folder
668 bool inexternal; ///< if the item is in an external folder
669 bool differentrepo; ///< if the item is from a different repository than the rest
670 bool direct; ///< directly included (TRUE) or just a child of a folder
671 bool isfolder; ///< TRUE if entry refers to a folder
672 bool isNested; ///< TRUE if the folder from a different repository and/or path
673 bool isConflicted; ///< TRUE if a file entry is conflicted, i.e. if it has the conflicted paths set
674 bool needslock; ///< TRUE if the Git:needs-lock property is set
675 git_revnum_t Revision; ///< the base revision
676 // PropertyList present_props; ///< cacheable properties present in BASE
677 bool keeplocal; ///< Whether a local copy of this entry should be kept in the working copy after a deletion has been committed
678 git_depth_t depth; ///< the depth of this entry
679 friend class CGitStatusListCtrl;
680 friend class CGitStatusListCtrlDropTarget;
681 friend class CSorter;
683 #endif
686 * Initializes the control, sets up the columns.
687 * \param dwColumns mask of columns to show. Use the GitSLC_COLxxx defines.
688 * \param sColumnInfoContainer Name of a registry key
689 * where the position and visibility of each column
690 * is saved and used from. If the registry key
691 * doesn't exist, the default order is used
692 * and dwColumns tells which columns are visible.
693 * \param dwContextMenus mask of context menus to be active, not all make sense for every use of this control.
694 * Use the GitSLC_POPxxx defines.
695 * \param bHasCheckboxes TRUE if the control should show check boxes on the left of each file entry.
696 * \param bHasWC TRUE if the reporisty is not a bare repository (hides wc related items on the contextmenu)
698 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);
700 * Sets a background image for the list control.
701 * The image is shown in the right bottom corner.
702 * \param nID the resource ID of the bitmap to use as the background
704 bool SetBackgroundImage(UINT nID);
706 * Makes the 'ignore' context menu only ignore the files and not add the
707 * folder which gets the Git:ignore property changed to the list.
708 * This is needed e.g. for the Add-dialog, where the modified folder
709 * showing up would break the resulting "add" command.
711 void SetIgnoreRemoveOnly(bool bRemoveOnly = true) {m_bIgnoreRemoveOnly = bRemoveOnly;}
713 * The unversioned items are by default shown after all other files in the list.
714 * If that behavior should be changed, set this value to false.
716 void PutUnversionedLast(bool bLast) {m_bUnversionedLast = bLast;}
718 * Fetches the git status of all files and stores the information
719 * about them in an internal array.
720 * \param sFilePath path to a file which contains a list of files and/or folders for which to
721 * fetch the status, separated by newlines.
722 * \param bUpdate TRUE if the remote status is requested too.
723 * \return TRUE on success.
725 BOOL GetStatus (const CTGitPathList* pathList = nullptr
726 , bool bUpdate = false
727 , bool bShowIgnores = false
728 , bool bShowUnRev = false
729 , bool bShowLocalChangesIgnored = false);
732 * Populates the list control with the previously (with GetStatus) gathered status information.
733 * \param dwShow mask of file types to show. Use the GitSLC_SHOWxxx defines.
734 * \param dwCheck mask of file types to check. Use GitLC_SHOWxxx defines. Default (0) means 'use the entry's stored check status'
736 void Show(unsigned int dwShow, unsigned int dwCheck = 0, bool bShowFolders = true,BOOL updateStatusList=FALSE, bool UseStoredCheckStatus=false);
737 void Show(unsigned int dwShow, const CTGitPathList& checkedList, bool bShowFolders = true);
740 * Copies the selected entries in the control to the clipboard. The entries
741 * are separated by newlines.
742 * \param dwCols the columns to copy. Each column is separated by a tab.
744 bool CopySelectedEntriesToClipboard(DWORD dwCols);
747 * If during the call to GetStatus() some Git:externals are found from different
748 * repositories than the first one checked, then this method returns TRUE.
750 BOOL HasExternalsFromDifferentRepos() const {return m_bHasExternalsFromDifferentRepos;}
753 * If during the call to GetStatus() some Git:externals are found then this method returns TRUE.
755 BOOL HasExternals() const {return m_bHasExternals;}
758 * If unversioned files are found (but not necessarily shown) TRUE is returned.
760 BOOL HasUnversionedItems() {return m_bHasUnversionedItems;}
763 * If there are any locks in the working copy, TRUE is returned
765 BOOL HasLocks() const {return m_bHasLocks;}
768 * If there are any change lists defined in the working copy, TRUE is returned
770 BOOL HasChangeLists() const {return m_bHasChangeLists;}
773 * Returns the file entry data for the list control index.
775 //CGitStatusListCtrl::FileEntry * GetListEntry(UINT_PTR index);
778 * Returns the file entry data for the specified path.
779 * \note The entry might not be shown in the list control.
781 //CGitStatusListCtrl::FileEntry * GetListEntry(const CTGitPath& path);
784 * Returns the index of the list control entry with the specified path,
785 * or -1 if the path is not in the list control.
787 int GetIndex(const CTGitPath& path);
790 * Returns the file entry data for the specified path in the list control.
792 //CGitStatusListCtrl::FileEntry * GetVisibleListEntry(const CTGitPath& path);
795 * Returns a String containing some statistics like number of modified, normal, deleted,...
796 * files.
798 CString GetStatisticsString(bool simple=false);
801 * Set a static control which will be updated automatically with
802 * the number of selected and total files shown in the list control.
804 void SetStatLabel(CWnd * pStatLabel){m_pStatLabel = pStatLabel;};
807 * Set a tri-state checkbox which is updated automatically if the
808 * user checks/unchecks file entries in the list control to indicate
809 * if all files are checked, none are checked or some are checked.
811 void SetSelectButton(CButton * pButton) {m_pSelectButton = pButton;}
814 * Set a button which is de-/activated automatically. The button is
815 * only set active if at least one item is selected.
817 void SetConfirmButton(CButton * pButton) {m_pConfirmButton = pButton;}
820 * Select/unselect all entries in the list control.
821 * \param bSelect TRUE to check, FALSE to uncheck.
823 void SelectAll(bool bSelect, bool bIncludeNoCommits = false);
826 * Checks or unchecks all specified items
827 * \param dwCheck GITLC_SHOWxxx defines
828 * \param check if true matching items will be selected, false unchecks matching items
830 void Check(DWORD dwCheck, bool check = true);
832 /** Set a checkbox on an entry in the listbox
833 * Keeps the listctrl checked state and the FileEntry's checked flag in sync
835 void SetEntryCheck(CTGitPath* pEntry, int listboxIndex, bool bCheck);
837 /** Write a list of the checked items' paths into a path list
839 void WriteCheckedNamesToPathList(CTGitPathList& pathList);
841 /** fills in \a lMin and \a lMax with the lowest/highest revision of all
842 * files/folders in the working copy.
843 * \param bShownOnly if true, the min/max revisions are calculated only for shown items
844 * \param bCheckedOnly if true, the min/max revisions are calculated only for items
845 * which are checked.
846 * \remark Since an item can only be checked if it is visible/shown in the list control
847 * bShownOnly is automatically set to true if bCheckedOnly is true
849 void GetMinMaxRevisions(git_revnum_t& rMin, git_revnum_t& rMax, bool bShownOnly, bool bCheckedOnly);
852 * Returns the parent directory of all entries in the control.
853 * if \a bStrict is set to false, then the paths passed to the control
854 * to fetch the status (in GetStatus()) are used if possible.
856 CString GetCommonDirectory(bool bStrict);
859 * Returns the parent url of all entries in the control.
860 * if \a bStrict is set to false, then the paths passed to the control
861 * to fetch the status (in GetStatus()) are used if possible.
863 CTGitPath GetCommonURL(bool bStrict);
866 * Sets a pointer to a boolean variable which is checked periodically
867 * during the status fetching. As soon as the variable changes to true,
868 * the operations stops.
870 void SetCancelBool(bool * pbCanceled) {m_pbCanceled = pbCanceled;}
873 * Sets the string shown in the control while the status is fetched.
874 * If not set, it defaults to "please wait..."
876 void SetBusyString(const CString& str) {m_sBusy = str;}
877 void SetBusyString(UINT id) {m_sBusy.LoadString(id);}
880 * Sets the string shown in the control if no items are shown. This
881 * can happen for example if there's nothing modified and the unversioned
882 * files aren't shown either, so there's nothing to commit.
883 * If not set, it defaults to "file list is empty".
885 void SetEmptyString(const CString& str) {m_sEmpty = str;}
886 void SetEmptyString(UINT id) {m_sEmpty.LoadString(id);}
889 * Returns the number of selected items
891 LONG GetSelected(){return m_nSelected;};
894 * Enables dropping of files on the control.
896 bool EnableFileDrop();
899 * Checks if the path already exists in the list.
901 bool HasPath(const CTGitPath& path);
903 * Checks if the path is shown/visible in the list control.
905 bool IsPathShown(const CTGitPath& path);
907 * Forces the children to be checked when the parent folder is checked,
908 * and the parent folder to be unchecked if one of its children is unchecked.
910 void CheckChildrenWithParent(bool bCheck) {m_bCheckChildrenWithParent = bCheck;}
913 * Allows checking the items if change lists are present. If set to false,
914 * items are not checked if at least one changelist is available.
916 void CheckIfChangelistsArePresent(bool bCheck) {m_bCheckIfGroupsExist = bCheck;}
918 * Returns the currently used show flags passed to the Show() method.
920 DWORD GetShowFlags() {return m_dwShow;}
922 public:
923 CString GetLastErrorMessage() {return m_sLastError;}
925 void Block(BOOL block, BOOL blockUI) {m_bBlock = block; m_bBlockUI = blockUI;}
927 LONG GetUnversionedCount() { return m_nShownUnversioned; }
928 LONG GetModifiedCount() { return m_nShownModified; }
929 LONG GetAddedCount() { return m_nShownAdded; }
930 LONG GetDeletedCount() { return m_nShownDeleted; }
931 LONG GetConflictedCount() { return m_nShownConflicted; }
932 LONG GetFileCount() { return m_nShownFiles; }
933 LONG GetSubmoduleCount() { return m_nShownSubmodules; }
935 LONG m_nTargetCount; ///< number of targets in the file passed to GetStatus()
937 CString m_sURL; ///< the URL of the target or "(multiple targets)"
939 GitRev m_HeadRev; ///< the HEAD revision of the repository if bUpdate was TRUE
941 bool m_amend; ///< if true show the changes to the revision before the last commit
943 CString m_sUUID; ///< the UUID of the associated repository
945 CString m_sDisplayedBranch; ///< When on LogDialog, what is the current displayed branch
947 CWnd *m_hwndLogicalParent;
949 DECLARE_MESSAGE_MAP()
951 public:
952 void SetBusy(bool b) {m_bBusy = b; Invalidate();}
953 bool IsBusy() const { return m_bBusy; }
954 void SetHasCheckboxes(bool bHasCheckboxes)
956 m_bHasCheckboxes = bHasCheckboxes;
957 DWORD exStyle = GetExtendedStyle();
958 if (bHasCheckboxes)
959 exStyle |= LVS_EX_CHECKBOXES;
960 else
961 exStyle &= ~LVS_EX_CHECKBOXES;
962 SetExtendedStyle(exStyle);
965 private:
966 void SaveColumnWidths(bool bSaveToRegistry = false);
967 //void AddEntry(FileEntry * entry, WORD langID, int listIndex); ///< add an entry to the control
968 void RemoveListEntry(int index); ///< removes an entry from the listcontrol and both arrays
969 bool BuildStatistics(); ///< build the statistics and correct the case of files/folders
970 void StartDiff(int fileindex); ///< start the external diff program
971 void StartDiffWC(int fileindex); ///< start the external diff program
972 void StartDiffTwo(int fileindex);
974 void SetGitIndexFlagsForSelectedFiles(UINT message, BOOL assumevalid, BOOL skipworktree);
976 CString m_sMarkForDiffFilename;
977 CString m_sMarkForDiffVersion;
979 /* while rebasing, Their and My versios are swapped. */
980 bool m_bIsRevertTheirMy;
982 enum
984 ALTERNATIVEEDITOR,
985 OPEN,
986 OPEN_WITH,
988 void OpenFile(CTGitPath *path,int mode);
990 /// Clear the status vector (contains custodial pointers)
991 void ClearStatusArray();
993 /// Sort predicate function - Compare the paths of two entries without regard to case
994 //static bool EntryPathCompareNoCase(const FileEntry* pEntry1, const FileEntry* pEntry2);
996 /// Predicate used to build a list of only the versioned entries of the FileEntry array
997 //static bool IsEntryVersioned(const FileEntry* pEntry1);
999 /// Look up the relevant show flags for a particular Git status value
1000 DWORD GetShowFlagsFromGitStatus(git_wc_status_kind status);
1002 /// Adjust the checkbox-state on all descendants of a specific item
1003 //void SetCheckOnAllDescendentsOf(const FileEntry* parentEntry, bool bCheck);
1005 /// Build a path list of all the selected items in the list (NOTE - SELECTED, not CHECKED)
1006 void FillListOfSelectedItemPaths(CTGitPathList& pathList, bool bNoIgnored = false);
1008 /// Enables/Disables group view and adds all groups to the list control.
1009 /// If bForce is true, then group view is enabled and the 'null' group is added.
1010 bool PrepareGroups(bool bForce = false);
1011 /// Returns the group number to which the group header belongs
1012 /// If the point is not over a group header, -1 is returned
1013 int GetGroupFromPoint(POINT * ppt);
1014 /// Returns the number of change lists the selection has
1015 size_t GetNumberOfChangelistsInSelection();
1017 /// Puts the item to the corresponding group
1018 bool SetItemGroup(int item, int groupindex);
1020 void CheckEntry(int index, int nListItems);
1021 void UncheckEntry(int index, int nListItems);
1023 /// sends an GitSLNM_CHECKCHANGED notification to the parent
1024 void NotifyCheck();
1025 CWnd* GetLogicalParent() { return m_hwndLogicalParent ? m_hwndLogicalParent : this->GetParent(); }
1027 void OnContextMenuList(CWnd * pWnd, CPoint point);
1028 void OnContextMenuGroup(CWnd * pWnd, CPoint point);
1029 void OnContextMenuHeader(CWnd * pWnd, CPoint point);
1030 bool CheckMultipleDiffs();
1032 void DeleteSelectedFiles();
1034 virtual void PreSubclassWindow();
1035 virtual BOOL PreTranslateMessage(MSG* pMsg);
1036 virtual BOOL OnWndMsg(UINT message, WPARAM wParam, LPARAM lParam, LRESULT* pResult);
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 private:
1157 int UpdateFileList(CTGitPathList* List = nullptr);
1158 public:
1159 int UpdateFileList(int mask, bool once = true, CTGitPathList* List = nullptr);
1160 int UpdateUnRevFileList(CTGitPathList &list);
1161 int UpdateUnRevFileList(CTGitPathList* List = nullptr);
1162 int UpdateIgnoreFileList(CTGitPathList* List = nullptr);
1163 int UpdateLocalChangesIgnoredFileList(CTGitPathList* list = nullptr);
1165 int UpdateWithGitPathList(CTGitPathList &list);
1167 void AddEntry(CTGitPath* path, WORD langID, int ListIndex);
1168 void Clear();
1169 int m_FileLoaded;
1170 git_revnum_t m_CurrentVersion;
1171 bool m_bDoNotAutoselectSubmodules;
1172 bool m_bNoAutoselectMissing;
1173 std::map<CString, CString> m_restorepaths;
1175 HMENU m_hShellMenu;
1176 LPCONTEXTMENU m_pContextMenu;
1179 #if 0
1180 class CGitStatusListCtrlDropTarget : public CIDropTarget
1182 public:
1183 CGitStatusListCtrlDropTarget(CGitStatusListCtrl * pGitStatusListCtrl):CIDropTarget(pGitStatusListCtrl->m_hWnd){m_pGitStatusListCtrl = pGitStatusListCtrl;}
1185 virtual bool OnDrop(FORMATETC* pFmtEtc, STGMEDIUM& medium, DWORD * /*pdwEffect*/, POINTL pt);
1186 virtual HRESULT STDMETHODCALLTYPE DragOver(DWORD grfKeyState, POINTL pt, DWORD __RPC_FAR *pdwEffect);
1187 private:
1188 CGitStatusListCtrl * m_pGitStatusListCtrl;
1190 #endif