SyncDlg: Disallow in/out changes to include local context menu
[TortoiseGit.git] / src / TortoiseProc / TortoiseProc.h
blob92c17e7ddbfb9d6c008004bb8ed9f74635aef866
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2013, 2016 - TortoiseGit
4 // Copyright (C) 2003-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 #pragma once
22 #ifndef __AFXWIN_H__
23 #error include 'stdafx.h' before including this file for PCH
24 #endif
27 #include "resource.h" // main symbols
29 #include "..\\TortoiseShell\\resource.h"
30 #include "LoglistCommonResource.h"
32 /**
33 * \ingroup TortoiseProc
34 * Main class of the TortoiseGitProc.exe\n
35 * It is the entry point when calling the TortoiseGitProc.exe and
36 * handles the command line. Depending on the command line
37 * other 'modules' are called, usually dialog boxes which
38 * themselves then execute a specific function.\n\n
39 * Many commands are executed using the CGitProgressList which
40 * just displays the common notify callbacks of the libgit2 commands.
44 class CTortoiseProcApp : public CWinAppEx
46 public:
47 CTortoiseProcApp();
48 ~CTortoiseProcApp();
50 // Overrides
51 public:
52 virtual BOOL InitInstance();
53 virtual int ExitInstance();
55 BOOL CheckMsysGitDir();
57 void CheckUpgrade();
58 void CheckForNewerVersion();
59 void EnableCrashHandler();
60 void InitializeJumpList(const CString& appid);
61 void DoInitializeJumpList(const CString& appid);
63 ULONG_PTR m_gdiplusToken;
64 // Implementation
66 private:
69 DECLARE_MESSAGE_MAP()
70 private:
71 bool retSuccess;
74 extern CTortoiseProcApp theApp;
75 extern CString g_sGroupingUUID;
76 extern HWND hWndExplorer;
77 extern CString sOrigCWD;