1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2009-2012 - TortoiseGit
4 // Copyright (C) 2012 - Sven Strickroth <email@cs-ware.de>
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.
24 #include "StandAloneDlg.h"
26 #define REPOBROWSER_CTRL_MIN_WIDTH 20
28 class CShadowFilesTree
;
30 typedef std::map
<CString
, CShadowFilesTree
> TShadowFilesTreeMap
;
32 class CShadowFilesTree
48 TShadowFilesTreeMap m_ShadowTree
;
49 CShadowFilesTree
* m_pParent
;
51 CString
GetFullName() const
53 if (m_pParent
== NULL
)
56 CString parentPath
= m_pParent
->GetFullName();
57 if (parentPath
.IsEmpty())
60 return m_pParent
->GetFullName() + _T("/") + m_sName
;
63 typedef std::vector
<CShadowFilesTree
*> TShadowFilesTreeList
;
65 class CRepositoryBrowser
: public CResizableStandAloneDialog
67 DECLARE_DYNAMIC(CRepositoryBrowser
)
70 CRepositoryBrowser(CString rev
, CWnd
* pParent
= NULL
); // standard constructor
71 virtual ~CRepositoryBrowser();
74 enum { IDD
= IDD_REPOSITORY_BROWSER
};
76 static bool s_bSortLogical
;
82 eCmd_OpenWithAlternativeEditor
,
113 virtual void DoDataExchange(CDataExchange
* pDX
); // DDX/DDV support
115 DECLARE_MESSAGE_MAP()
118 afx_msg
void OnCancel();
119 virtual BOOL
OnInitDialog();
121 CTreeCtrl m_RepoTree
;
122 CListCtrl m_RepoList
;
124 afx_msg
void OnLvnColumnclickRepoList(NMHDR
*pNMHDR
, LRESULT
*pResult
);
128 CShadowFilesTree m_TreeRoot
;
129 int ReadTreeRecursive(git_repository
&repo
, git_tree
* tree
, CShadowFilesTree
* treeroot
);
130 int ReadTree(CShadowFilesTree
* treeroot
);
132 int m_nOpenIconFolder
;
138 void FillListCtrlForTreeNode(HTREEITEM treeNode
);
139 void FillListCtrlForShadowTree(CShadowFilesTree
* pTree
);
140 afx_msg
void OnTvnSelchangedRepoTree(NMHDR
*pNMHDR
, LRESULT
*pResult
);
142 afx_msg
void OnNMDblclk_RepoList(NMHDR
*pNMHDR
, LRESULT
*pResult
);
143 afx_msg
void OnContextMenu(CWnd
* pWndFrom
, CPoint point
);
144 void OnContextMenu_RepoList(CPoint point
);
145 void OnContextMenu_RepoTree(CPoint point
);
146 void ShowContextMenu(CPoint point
, TShadowFilesTreeList
&selectedLeafs
, eSelectionType selType
);
148 void FileSaveAs(const CString path
);
149 void OpenFile(const CString path
, eOpenType mode
);
150 bool RevertItemToVersion(const CString
&path
);
152 afx_msg
void OnBnClickedButtonRevision();
154 virtual BOOL
PreTranslateMessage(MSG
* pMsg
);
156 /// resizes the control so that the divider is at position 'point'
157 void HandleDividerMove(CPoint point
, bool bDraw
);
159 void SaveDividerPosition();
161 /// draws the bar when the tree and list control are resized
162 void DrawXorBar(CDC
* pDC
, int x1
, int y1
, int width
, int height
);
163 afx_msg BOOL
OnSetCursor(CWnd
* pWnd
, UINT nHitTest
, UINT message
);
164 afx_msg
void OnMouseMove(UINT nFlags
, CPoint point
);
165 afx_msg
void OnCaptureChanged(CWnd
*pWnd
);
166 afx_msg
void OnLButtonDown(UINT nFlags
, CPoint point
);
167 afx_msg
void OnLButtonUp(UINT nFlags
, CPoint point
);