Pass HWND to CGitDiff
[TortoiseGit.git] / src / TortoiseProc / Commands / CommitCommand.cpp
blob4b47099a6ba013e01de24e0179d7655e8fe48a1f
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2018 - TortoiseGit
4 // Copyright (C) 2007-2008 - 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 #include "stdafx.h"
21 #include "CommitCommand.h"
22 #include "CommitDlg.h"
23 #include "StringUtils.h"
24 #include "MessageBox.h"
25 #include "AppUtils.h"
27 CString CommitCommand::LoadLogMessage()
29 CString msg;
30 if (parser.HasKey(L"logmsg"))
31 msg = parser.GetVal(L"logmsg");
32 if (parser.HasKey(L"logmsgfile"))
34 CString logmsgfile = parser.GetVal(L"logmsgfile");
35 CStringUtils::ReadStringFromTextFile(logmsgfile, msg);
37 return msg;
40 bool CommitCommand::Execute()
42 if (parser.HasKey(L"logmsg") && parser.HasKey(L"logmsgfile"))
44 CMessageBox::Show(GetExplorerHWND(), IDS_ERR_TWOLOGPARAMS, IDS_APPNAME, MB_ICONERROR);
45 return false;
47 CString sLogMsg = LoadLogMessage();
48 bool bSelectFilesForCommit = !!DWORD(CRegStdDWORD(L"Software\\TortoiseGit\\SelectFilesForCommit", TRUE));
50 if (!GitAdminDir::HasAdminDir(g_Git.m_CurrentDir))
52 CMessageBox::Show(GetExplorerHWND(), IDS_NOWORKINGCOPY, IDS_APPNAME, MB_ICONERROR);
53 return false;
56 return !!CAppUtils::Commit(GetExplorerHWND(),
57 parser.GetVal(L"bugid"),
58 parser.HasKey(L"wholeproject"),
59 sLogMsg,
60 pathList,
61 bSelectFilesForCommit);