1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2013 - TortoiseGit
4 // Copyright (C) 2011-2013 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 "PropertiesWnd.h"
27 #include "TortoiseGitBlame.h"
29 #include "StringUtils.h"
33 static char THIS_FILE
[]=__FILE__
;
37 /////////////////////////////////////////////////////////////////////////////
40 CPropertiesWnd::CPropertiesWnd()
45 CPropertiesWnd::~CPropertiesWnd()
49 BEGIN_MESSAGE_MAP(CPropertiesWnd
, CDockablePane
)
57 /////////////////////////////////////////////////////////////////////////////
58 // CResourceViewBar message handlers
60 void CPropertiesWnd::AdjustLayout()
62 if (GetSafeHwnd() == NULL
)
67 CRect rectClient
,rectCombo
;
68 GetClientRect(rectClient
);
70 m_wndPropList
.SetWindowPos(NULL
, rectClient
.left
, rectClient
.top
, rectClient
.Width(), rectClient
.Height(), SWP_NOACTIVATE
| SWP_NOZORDER
);
73 int CPropertiesWnd::OnCreate(LPCREATESTRUCT lpCreateStruct
)
75 if (CDockablePane::OnCreate(lpCreateStruct
) == -1)
79 rectDummy
.SetRectEmpty();
81 if (!m_wndPropList
.Create(WS_VISIBLE
| WS_CHILD
, rectDummy
, this, 2))
83 TRACE0("Failed to create Properties Grid \n");
84 return -1; // fail to create
93 void CPropertiesWnd::OnSize(UINT nType
, int cx
, int cy
)
95 CDockablePane::OnSize(nType
, cx
, cy
);
99 void CPropertiesWnd::InitPropList()
103 m_wndPropList
.EnableHeaderCtrl(FALSE
);
104 m_wndPropList
.EnableDescriptionArea();
105 m_wndPropList
.SetVSDotNetLook();
106 m_wndPropList
.MarkModifiedProperties();
108 CMFCPropertyGridProperty
* pGroup1
= new CMFCPropertyGridProperty(CString(MAKEINTRESOURCE(IDS_PROPERTIES_BASICINFO
)));
111 m_CommitHash
= new CMFCPropertyGridProperty(
112 CString(MAKEINTRESOURCE(IDS_LOG_HASH
)),
114 CString(MAKEINTRESOURCE(IDS_LOG_HASH
))
116 pGroup1
->AddSubItem(m_CommitHash
);
118 m_AuthorName
= new CMFCPropertyGridProperty(
119 CString(MAKEINTRESOURCE(IDS_LOG_AUTHOR
)),
121 CString(MAKEINTRESOURCE(IDS_LOG_AUTHOR
))
123 pGroup1
->AddSubItem(m_AuthorName
);
125 m_AuthorDate
= new CMFCPropertyGridProperty(
126 CString(MAKEINTRESOURCE(IDS_LOG_DATE
)),
128 CString(MAKEINTRESOURCE(IDS_LOG_DATE
))
130 pGroup1
->AddSubItem(m_AuthorDate
);
132 m_AuthorEmail
= new CMFCPropertyGridProperty(
133 CString(MAKEINTRESOURCE(IDS_LOG_EMAIL
)),
135 CString(MAKEINTRESOURCE(IDS_LOG_EMAIL
))
137 pGroup1
->AddSubItem(m_AuthorEmail
);
139 m_CommitterName
= new CMFCPropertyGridProperty(
140 CString(MAKEINTRESOURCE(IDS_LOG_COMMIT_NAME
)),
142 CString(MAKEINTRESOURCE(IDS_LOG_COMMIT_NAME
))
144 pGroup1
->AddSubItem(m_CommitterName
);
146 m_CommitterEmail
=new CMFCPropertyGridProperty(
147 CString(MAKEINTRESOURCE(IDS_LOG_COMMIT_EMAIL
)),
149 CString(MAKEINTRESOURCE(IDS_LOG_COMMIT_EMAIL
))
151 pGroup1
->AddSubItem(m_CommitterEmail
);
153 m_CommitterDate
= new CMFCPropertyGridProperty(
154 CString(MAKEINTRESOURCE(IDS_LOG_COMMIT_DATE
)),
156 CString(MAKEINTRESOURCE(IDS_LOG_COMMIT_DATE
))
158 pGroup1
->AddSubItem(m_CommitterDate
);
160 m_Subject
= new CMFCPropertyGridProperty(
161 CString(MAKEINTRESOURCE(IDS_SUBJECT
)),
163 CString(MAKEINTRESOURCE(IDS_SUBJECT
))
165 pGroup1
->AddSubItem(m_Subject
);
167 m_Body
= new CMFCPropertyGridProperty(
168 CString(MAKEINTRESOURCE(IDS_BODY
)),
170 CString(MAKEINTRESOURCE(IDS_BODY
))
172 pGroup1
->AddSubItem(m_Body
);
174 for (int i
= 0; i
< pGroup1
->GetSubItemsCount(); ++i
)
176 pGroup1
->GetSubItem(i
)->AllowEdit(FALSE
);
179 m_wndPropList
.AddProperty(pGroup1
);
180 m_BaseInfoGroup
=pGroup1
;
182 m_ParentGroup
=new CMFCPropertyGridProperty(CString(MAKEINTRESOURCE(IDS_PARENTS
)));
184 m_wndPropList
.AddProperty(m_ParentGroup
);
187 void CPropertiesWnd::OnSetFocus(CWnd
* pOldWnd
)
189 CDockablePane::OnSetFocus(pOldWnd
);
190 m_wndPropList
.SetFocus();
193 void CPropertiesWnd::OnSettingChange(UINT uFlags
, LPCTSTR lpszSection
)
195 CDockablePane::OnSettingChange(uFlags
, lpszSection
);
199 void CPropertiesWnd::SetPropListFont()
201 ::DeleteObject(m_fntPropList
.Detach());
204 afxGlobalData
.fontRegular
.GetLogFont(&lf
);
206 NONCLIENTMETRICS info
;
207 info
.cbSize
= sizeof(info
);
209 afxGlobalData
.GetNonClientMetrics(info
);
211 lf
.lfHeight
= info
.lfMenuFont
.lfHeight
;
212 lf
.lfWeight
= info
.lfMenuFont
.lfWeight
;
213 lf
.lfItalic
= info
.lfMenuFont
.lfItalic
;
215 m_fntPropList
.CreateFontIndirect(&lf
);
217 m_wndPropList
.SetFont(&m_fntPropList
);
219 void CPropertiesWnd::RemoveParent()
221 m_ParentGroup
->Expand(false);
222 for (int i
= 0; i
< m_ParentGroup
->GetSubItemsCount(); ++i
)
224 CMFCPropertyGridProperty
* p
=m_ParentGroup
->GetSubItem(0);
225 m_ParentGroup
->RemoveSubItem(p
);
229 void CPropertiesWnd::UpdateProperties(GitRev
*rev
)
233 CString hash
= rev
->m_CommitHash
.ToString();
234 m_CommitHash
->SetValue(hash
);
235 m_AuthorName
->SetValue(rev
->GetAuthorName());
236 CString authorDate
= rev
->GetAuthorDate().Format(_T("%Y-%m-%d %H:%M"));
237 m_AuthorDate
->SetValue(authorDate
);
238 m_AuthorEmail
->SetValue(rev
->GetAuthorEmail());
240 m_CommitterName
->SetValue(rev
->GetAuthorName());
241 m_CommitterEmail
->SetValue(rev
->GetCommitterEmail());
242 CString committerDate
= rev
->GetCommitterDate().Format(_T("%Y-%m-%d %H:%M"));
243 m_CommitterDate
->SetValue(committerDate
);
245 m_Subject
->SetValue(rev
->GetSubject());
246 m_Body
->SetValue(rev
->GetBody().Trim());
252 CLogDataVector
*pLogEntry
= &((CMainFrame
*)AfxGetApp()->GetMainWnd())->m_wndOutput
.m_LogList
.m_logEntries
;
254 for (unsigned int i
= 0; i
< rev
->m_ParentHash
.size(); ++i
)
257 CString parentsubject
;
261 if( pLogEntry
->m_pLogCache
->m_HashMap
.find(rev
->m_ParentHash
[i
]) == pLogEntry
->m_pLogCache
->m_HashMap
.end())
267 p
= &pLogEntry
->m_pLogCache
->m_HashMap
[rev
->m_ParentHash
[i
]] ;
270 parentsubject
=p
->GetSubject();
272 str
.Format(_T("%d - %s \n %s"),i
,rev
->m_ParentHash
[i
].ToString(),parentsubject
);
274 CMFCPropertyGridProperty
*pProtery
=new CMFCPropertyGridProperty(
275 rev
->m_ParentHash
[i
].ToString().Left(8),
279 pProtery
->AllowEdit(FALSE
);
280 m_ParentGroup
->AddSubItem(pProtery
);
282 m_ParentGroup
->Expand();
283 for (int i
= 0; i
< m_BaseInfoGroup
->GetSubItemsCount(); ++i
)
284 m_BaseInfoGroup
->GetSubItem(i
)->SetDescription(m_BaseInfoGroup
->GetSubItem(i
)->GetValue());
289 m_CommitHash
->SetValue(_T(""));
290 m_AuthorName
->SetValue(_T(""));
291 m_AuthorDate
->SetValue(_T(""));
292 m_AuthorEmail
->SetValue(_T(""));
294 m_CommitterName
->SetValue(_T(""));
295 m_CommitterEmail
->SetValue(_T(""));
296 m_CommitterDate
->SetValue(_T(""));
298 m_Subject
->SetValue(_T(""));
299 m_Body
->SetValue(_T(""));
303 for (int i
= 0; i
< m_BaseInfoGroup
->GetSubItemsCount(); ++i
)
304 m_BaseInfoGroup
->GetSubItem(i
)->SetDescription(_T(""));
307 m_wndPropList
.Invalidate();
310 void CPropertiesWnd::OnContextMenu(CWnd
* /*pWnd*/, CPoint point
)
312 CMFCPropertyGridProperty
* pProtery
= m_wndPropList
.GetCurSel();
314 CString sMenuItemText
;
316 if (pProtery
&& !pProtery
->IsGroup() && popup
.CreatePopupMenu())
318 sMenuItemText
.LoadString(IDS_SCIEDIT_COPY
);
319 popup
.AppendMenu(MF_STRING
| MF_ENABLED
, WM_COPY
, sMenuItemText
);
321 int cmd
= popup
.TrackPopupMenu(TPM_RETURNCMD
| TPM_LEFTALIGN
| TPM_NONOTIFY
, point
.x
, point
.y
, this, 0);
325 break; // no command selected
327 CStringUtils::WriteAsciiStringToClipboard(pProtery
->GetValue(), GetSafeHwnd());