1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2016 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include "StandAloneDlg.h"
22 #include "GitStatusListCtrl.h"
24 #include "SplitterControl.h"
25 #include "HistoryCombo.h"
26 #include "GitLogList.h"
27 #include "MenuButton.h"
29 #include "ProjectProperties.h"
32 #define IDC_REBASE_TAB 0x1000000
34 #define REBASE_TAB_CONFLICT 0
35 #define REBASE_TAB_MESSAGE 1
36 #define REBASE_TAB_LOG 2
38 #define MSG_REBASE_UPDATE_UI (WM_USER+151)
40 class CRebaseDlg
: public CResizableStandAloneDialog
42 DECLARE_DYNAMIC(CRebaseDlg
)
45 CRebaseDlg(CWnd
* pParent
= nullptr); // standard constructor
46 virtual ~CRebaseDlg();
49 enum { IDD
= IDD_REBASE
};
54 CHOOSE_COMMIT_PICK_MODE
,
62 REBASE_SQUASH_CONFLICT
,
68 virtual void DoDataExchange(CDataExchange
* pDX
); // DDX/DDV support
69 virtual BOOL
OnInitDialog();
71 virtual LRESULT
DefWindowProc(UINT message
, WPARAM wParam
, LPARAM lParam
);
72 virtual HBRUSH
OnCtlColor(CDC
* pDC
, CWnd
* pWnd
, UINT nCtlColor
);
73 LRESULT
OnRebaseUpdateUI(WPARAM wParam
, LPARAM lParam
);
74 void DoSize(int delta
);
75 void AddRebaseAnchor();
78 void SetSplitterRange();
79 void SaveSplitterPos();
81 void LoadBranchInfo();
83 void SetAllRebaseAction(int action
);
87 CRect m_CommitListOrigRect
;
88 CString m_sStatusText
;
89 bool m_bStatusWarning
;
90 BOOL
PreTranslateMessage(MSG
* pMsg
);
91 bool LogListHasFocus(HWND hwnd
);
92 bool LogListHasMenuItem(int i
);
94 CSciEdit m_wndOutputRebase
;
95 void SetContinueButtonText();
96 void SetControlEnable();
97 void UpdateProgress();
98 void UpdateCurrentStatus();
99 void ListConflictFile();
100 int RunGitCmdRetryOrAbort(const CString
& cmd
);
102 afx_msg LRESULT
OnGitStatusListCtrlNeedsRefresh(WPARAM
, LPARAM
);
104 volatile LONG m_bThreadRunning
;
106 static UINT
RebaseThreadEntry(LPVOID pVoid
){return ((CRebaseDlg
*)pVoid
)->RebaseThread();};
109 int IsCommitEmpty(const CGitHash
& hash
);
111 BOOL m_IsFastForward
;
113 CGitHash m_OrigBranchHash
;
114 CGitHash m_OrigUpstreamHash
;
115 CString m_OrigHEADBranch
;
116 CGitHash m_OrigHEADHash
;
118 ProjectProperties m_ProjectProperties
;
120 int VerifyNoConflict();
121 CString
GetRebaseModeName(int rebasemode
);
123 CString m_SquashMessage
;
124 struct SquashFirstMetaData
131 SquashFirstMetaData()
136 SquashFirstMetaData(GitRev
* rev
)
139 name
= rev
->GetAuthorName();
140 email
= rev
->GetAuthorEmail();
141 time
= rev
->GetAuthorDate();
152 CString
GetAuthor() const
157 temp
.Format(L
"%s <%s>", (LPCTSTR
)name
, (LPCTSTR
)email
);
161 CString
GetAsParam() const
166 temp
.Format(_T("--date=%s --author=\"%s\" "), (LPCTSTR
)time
.Format(_T("%Y-%m-%dT%H:%M:%S")), (LPCTSTR
)GetAuthor());
169 } m_SquashFirstMetaData
;
171 int CheckNextCommitIsSquash();
172 int GetCurrentCommitID();
176 CMenuButton m_PostButton
;
178 afx_msg
void OnBnClickedPickAll();
179 afx_msg
void OnBnClickedSquashAll();
180 afx_msg
void OnBnClickedEditAll();
181 afx_msg
void OnBnClickedRebaseSplit();
182 afx_msg
void OnSize(UINT nType
, int cx
, int cy
);
183 afx_msg
void OnCbnSelchangeBranch();
184 afx_msg
void OnCbnSelchangeUpstream();
185 afx_msg
void OnBnClickedContinue();
186 afx_msg
void OnBnClickedAbort();
187 afx_msg
void OnLvnItemchangedLoglist(NMHDR
*pNMHDR
, LRESULT
*pResult
);
188 void FillLogMessageCtrl();
190 CProgressCtrl m_ProgressBar
;
191 CStatic m_CtrlStatusText
;
194 BOOL m_bAddCherryPickedFrom
;
195 BOOL m_bAutoSkipFailedCommit
;
196 bool m_bRebaseAutoEnd
;
199 CStringArray m_PostButtonTexts
;
200 CGitLogList m_CommitList
;
207 bool m_bRebaseAutoStart
;
208 BOOL m_bPreserveMerges
;
210 CSplitterControl m_wndSplitter
;
211 CMFCTabCtrl m_ctrlTabCtrl
;
212 CGitStatusListCtrl m_FileListCtrl
;
213 CSciEdit m_LogMessageCtrl
;
215 CHistoryCombo m_BranchCtrl
;
216 CHistoryCombo m_UpstreamCtrl
;
218 CMenuButton m_SplitAllOptions
;
222 REBASE_STAGE m_RebaseStage
;
223 bool m_bFinishedRebase
;
226 std::map
<CGitHash
, CGitHash
> m_rewrittenCommitsMap
;
227 std::vector
<CGitHash
> m_forRewrite
;
228 std::map
<CGitHash
, GIT_REV_LIST
> m_droppedCommitsMap
;
229 std::vector
<CGitHash
> m_currentCommits
;
231 void AddBranchToolTips(CHistoryCombo
*pBranch
);
232 void AddLogString(CString str
);
234 int CheckRebaseCondition();
235 void CheckRestoreStash();
236 int m_CurrentRebaseIndex
;
239 void ResetParentForSquash(const CString
& commitMessage
);
240 void CleanUpRebaseActiveFolder();
241 afx_msg
void OnBnClickedButtonReverse();
242 afx_msg
void OnBnClickedButtonBrowse();
243 afx_msg
void OnBnClickedRebaseCheckForce();
244 afx_msg
void OnBnClickedCheckCherryPickedFrom();
245 afx_msg
void OnBnClickedRebasePostButton();
246 afx_msg
void OnBnClickedSplitAllOptions();
247 afx_msg
void OnBnClickedButtonUp2();
248 afx_msg
void OnBnClickedButtonDown2();
249 afx_msg
void OnHelp();
251 afx_msg LRESULT
OnTaskbarBtnCreated(WPARAM wParam
, LPARAM lParam
);
252 CComPtr
<ITaskbarList3
> m_pTaskbarList
;
254 afx_msg LRESULT
OnRebaseActionMessage(WPARAM wParam
, LPARAM lParam
);
255 afx_msg
void OnBnClickedRebaseSplitCommit();
256 afx_msg
void OnBnClickedButtonOnto();