Add retry button when fetch failed
[TortoiseGit.git] / src / TortoiseProc / CommitDlg.h
blobfab559295b5bc3a646351aaa047e297d8e249c12
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2008 - TortoiseSVN
4 // Copyright (C) 2008-2014 - TortoiseGit
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
22 #include "StandAloneDlg.h"
23 #include "GitStatusListCtrl.h"
24 #include "RegHistory.h"
25 #include "registry.h"
26 #include "SciEdit.h"
27 #include "SplitterControl.h"
28 #include "LinkControl.h"
29 #include "PathWatcher.h"
30 #include "BugTraqAssociations.h"
31 #include "Tooltip.h"
32 #include "..\IBugTraqProvider\IBugTraqProvider_h.h"
33 #include "Git.h"
34 #include "HyperLink.h"
35 #include "PatchViewDlg.h"
37 #include <regex>
39 #define ENDDIALOGTIMER 100
40 #define REFRESHTIMER 101
41 #define FILLPATCHVTIMER 102
43 typedef enum
45 GIT_POSTCOMMIT_CMD_NOTHING,
46 GIT_POSTCOMMIT_CMD_PUSH,
47 GIT_POSTCOMMIT_CMD_DCOMMIT,
48 GIT_POSTCOMMIT_CMD_PULL,
49 GIT_POSTCOMMIT_CMD_CREATETAG,
50 } GIT_POSTCOMMIT_CMD;
53 /**
54 * \ingroup TortoiseProc
55 * Dialog to enter log messages used in a commit.
57 class CCommitDlg : public CResizableStandAloneDialog, public CSciEditContextMenuInterface, IHasPatchView
59 DECLARE_DYNAMIC(CCommitDlg)
61 public:
62 CCommitDlg(CWnd* pParent = NULL); // standard constructor
63 virtual ~CCommitDlg();
65 protected:
66 // CSciEditContextMenuInterface
67 virtual void InsertMenuItems(CMenu& mPopup, int& nCmd);
68 virtual bool HandleMenuItemClick(int cmd, CSciEdit * pSciEdit);
70 public:
71 void ShowViewPatchText(bool b=true)
73 if(b)
74 this->m_ctrlShowPatch.SetWindowText(CString(MAKEINTRESOURCE(IDS_PROC_COMMIT_SHOWPATCH)));
75 else
76 this->m_ctrlShowPatch.SetWindowText(CString(MAKEINTRESOURCE(IDS_PROC_COMMIT_HIDEPATCH)));
78 m_ctrlShowPatch.Invalidate();
80 private:
81 static UINT StatusThreadEntry(LPVOID pVoid);
82 UINT StatusThread();
83 void FillPatchView(bool onlySetTimer = false);
84 CWnd * GetPatchViewParentWnd() { return this; }
85 virtual void TogglePatchView();
86 void SetDlgTitle();
87 CString GetSignedOffByLine();
88 CString m_sTitle;
90 // Dialog Data
91 enum { IDD = IDD_COMMITDLG };
93 protected:
94 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
96 virtual BOOL OnInitDialog();
97 virtual void OnOK();
98 virtual void OnCancel();
99 virtual BOOL PreTranslateMessage(MSG* pMsg);
100 virtual LRESULT DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam);
101 afx_msg void OnBnClickedShowunversioned();
102 afx_msg void OnBnClickedHistory();
103 afx_msg void OnBnClickedBugtraqbutton();
104 afx_msg void OnEnChangeLogmessage();
105 afx_msg void OnStnClickedExternalwarning();
106 afx_msg void OnFocusMessage();
107 afx_msg void OnFocusFileList();
108 afx_msg LRESULT OnGitStatusListCtrlItemCountChanged(WPARAM, LPARAM);
109 afx_msg LRESULT OnGitStatusListCtrlNeedsRefresh(WPARAM, LPARAM);
110 afx_msg LRESULT OnGitStatusListCtrlCheckChanged(WPARAM, LPARAM);
111 afx_msg LRESULT OnGitStatusListCtrlItemChanged(WPARAM, LPARAM);
113 afx_msg LRESULT OnCheck(WPARAM count, LPARAM);
114 afx_msg LRESULT OnAutoListReady(WPARAM, LPARAM);
115 afx_msg LRESULT OnUpdateOKButton(WPARAM, LPARAM);
116 afx_msg LRESULT OnUpdateDataFalse(WPARAM, LPARAM);
117 afx_msg LRESULT OnFileDropped(WPARAM, LPARAM lParam);
118 afx_msg void OnTimer(UINT_PTR nIDEvent);
119 afx_msg void OnSize(UINT nType, int cx, int cy);
120 void Refresh();
121 void GetAutocompletionList();
122 void ScanFile(const CString& sFilePath, const CString& sRegex, const CString& sExt);
123 void DoSize(int delta);
124 void SetSplitterRange();
125 void SaveSplitterPos();
126 void UpdateCheckLinks();
127 void ParseRegexFile(const CString& sFile, std::map<CString, CString>& mapRegex);
128 void RunStartCommitHook();
130 DECLARE_MESSAGE_MAP()
132 public:
133 CString m_sLogMessage;
134 BOOL m_bKeepChangeList;
135 BOOL m_bDoNotAutoselectSubmodules;
136 bool m_bForceCommitAmend;
137 BOOL m_bCommitAmend;
138 BOOL m_bNoPostActions;
139 bool m_bSelectFilesForCommit;
140 bool m_bAutoClose;
141 CString m_AmendStr;
142 CString m_sBugID;
143 BOOL m_bWholeProject;
144 BOOL m_bWholeProject2;
145 CTGitPathList m_pathList;
146 CTGitPathList m_checkedPathList;
147 CTGitPathList m_updatedPathList;
148 GIT_POSTCOMMIT_CMD m_PostCmd;
149 BOOL m_bAmendDiffToLastCommit;
150 BOOL m_bCommitMessageOnly;
152 protected:
153 CTGitPathList m_selectedPathList;
154 CSciEdit m_cLogMessage;
155 INT_PTR m_itemsCount;
156 CComPtr<IBugTraqProvider> m_BugTraqProvider;
157 CString m_NoAmendStr;
158 BOOL m_bCreateNewBranch;
159 CString m_sCreateNewBranch;
160 BOOL m_bSetAuthor;
161 CString m_sAuthor;
163 int CheckHeadDetach();
165 private:
166 CWinThread* m_pThread;
167 std::map<CString, int> m_autolist;
168 CGitStatusListCtrl m_ListCtrl;
169 BOOL m_bShowUnversioned;
170 volatile LONG m_bBlock;
171 volatile LONG m_bThreadRunning;
172 volatile LONG m_bRunThread;
173 CToolTips m_tooltips;
174 CRegDWORD m_regAddBeforeCommit;
175 CRegDWORD m_regKeepChangelists;
176 CRegDWORD m_regDoNotAutoselectSubmodules;
177 CRegDWORD m_regShowWholeProject;
178 ProjectProperties m_ProjectProperties;
179 CString m_sWindowTitle;
180 static UINT WM_AUTOLISTREADY;
181 static UINT WM_UPDATEOKBUTTON;
182 static UINT WM_UPDATEDATAFALSE;
183 int m_nPopupPickCommitHash;
184 int m_nPopupPickCommitMessage;
185 int m_nPopupPasteListCmd;
186 int m_nPopupPasteLastMessage;
187 int m_nPopupRecentMessage;
188 CRegHistory m_History;
189 bool m_bCancelled;
190 CSplitterControl m_wndSplitter;
191 CRect m_DlgOrigRect;
192 CRect m_LogMsgOrigRect;
193 CPathWatcher m_pathwatcher;
194 CHyperLink m_ctrlShowPatch;
195 CPatchViewDlg m_patchViewdlg;
196 BOOL m_bSetCommitDateTime;
197 CDateTimeCtrl m_CommitDate;
198 CDateTimeCtrl m_CommitTime;
199 CLinkControl m_linkControl;
200 CString m_sLogTemplate;
202 CBugTraqAssociation m_bugtraq_association;
203 HACCEL m_hAccel;
204 void RestoreFiles(bool doNotAsk = false);
206 protected:
207 afx_msg void OnBnClickedSignOff();
208 afx_msg void OnBnClickedCommitAmend();
209 afx_msg void OnBnClickedCommitMessageOnly();
210 afx_msg void OnBnClickedWholeProject();
211 afx_msg void OnScnUpdateUI(NMHDR *pNMHDR, LRESULT *pResult);
212 afx_msg void OnStnClickedViewPatch();
213 afx_msg void OnMoving(UINT fwSide, LPRECT pRect);
214 afx_msg void OnSizing(UINT fwSide, LPRECT pRect);
215 afx_msg void OnHdnItemchangedFilelist(NMHDR *pNMHDR, LRESULT *pResult);
216 afx_msg void OnBnClickedCommitAmenddiff();
217 afx_msg void OnBnClickedNoautoselectsubmodules();
218 afx_msg void OnBnClickedCommitSetDateTime();
219 afx_msg void OnBnClickedCheckNewBranch();
220 afx_msg void OnBnClickedCommitSetauthor();