optimize TGitCache for CLI operations
[TortoiseGit.git] / src / TortoiseMerge / TortoiseMerge.h
blobfc10ccb439d36c5d0ec36d6a80d6db629d4cceb3
1 // TortoiseMerge - a Diff/Patch program
3 // Copyright (C) 2006-2008 - 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.
19 #pragma once
21 #ifndef __AFXWIN_H__
22 #error include 'stdafx.h' before including this file for PCH
23 #endif
25 #include "resource.h" // main symbols
26 #include "CrashReport.h"
29 /**
30 * \ingroup TortoiseMerge
31 * The application class of TortoiseMerge.
33 class CTortoiseMergeApp : public CWinAppEx
35 public:
36 CTortoiseMergeApp();
39 // Overrides
40 public:
41 virtual BOOL InitInstance();
42 virtual int ExitInstance();
44 // Implementation
45 UINT m_nAppLook;
46 BOOL m_bHiColorIcons;
48 protected:
49 afx_msg void OnAppAbout();
50 DECLARE_MESSAGE_MAP()
51 private:
52 static UINT_PTR CALLBACK CreatePatchFileOpenHook(HWND hDlg, UINT uiMsg, WPARAM wParam, LPARAM lParam);
56 extern CTortoiseMergeApp theApp;
57 extern CCrashReport g_crasher;