1 // TortoiseMerge - a Diff/Patch program
3 // Copyright (C) 2006-2008,2010 - TortoiseSVN
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.
20 #include "CommonAppUtils.h"
22 class CSysProgressDlg
;
25 * \ingroup TortoiseMerge
29 class CAppUtils
: public CCommonAppUtils
36 * Starts an external program to get a file with a specific revision.
37 * \param sPath path to the file for which a specific revision is fetched
38 * \param sVersion the revision to get
39 * \param sSavePath the path to where the file version shall be saved
40 * \param hWnd the window handle of the calling app
41 * \return TRUE if successful
43 static BOOL
GetVersionedFile(CString sPath
, CString sVersion
, CString sSavePath
, CSysProgressDlg
* progDlg
, HWND hWnd
= NULL
);
46 * Creates a unified diff from two files
48 static bool CreateUnifiedDiff(const CString
& orig
, const CString
& modified
, const CString
& output
, bool bShowError
);
50 static bool HasClipboardFormat(UINT format
);