OSDN Git Service

Add Show "No Merge" and "First Parent Only" Option at Show ALL menu button
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / TortoiseProc.h
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2008 - TortoiseSVN\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #pragma once\r
20 \r
21 #ifndef __AFXWIN_H__\r
22         #error include 'stdafx.h' before including this file for PCH\r
23 #endif\r
24 \r
25 \r
26 #include "resource.h"           // main symbols\r
27 \r
28 \r
29 #include "..\\TortoiseShell\\resource.h"\r
30 //#include "UnicodeUtils.h"\r
31 \r
32 class CTSVNPath;\r
33 class CTSVNPathList;\r
34 \r
35 /**\r
36  * \ingroup TortoiseProc\r
37  * Main class of the TortoiseProc.exe\n\r
38  * It is the entry point when calling the TortoiseProc.exe and\r
39  * handles the command line. Depending on the command line\r
40  * other 'modules' are called, usually dialog boxes which \r
41  * themselves then execute a specific function.\n\n\r
42  * Many commands are executed using the CSVNProgressDlg which\r
43  * just displays the common notify callbacks of the Subversion commands.\r
44  */\r
45 \r
46 \r
47 class CTortoiseProcApp : public CWinAppEx\r
48 {\r
49 public:\r
50         CTortoiseProcApp();\r
51         ~CTortoiseProcApp();\r
52 \r
53 // Overrides\r
54 public:\r
55         virtual BOOL InitInstance();\r
56         virtual int ExitInstance();\r
57 \r
58         BOOL CheckMsysGitDir();\r
59 \r
60         void CheckUpgrade();\r
61         void EnableCrashHandler();\r
62 \r
63 // Implementation\r
64 \r
65 private:\r
66 \r
67 \r
68         DECLARE_MESSAGE_MAP()\r
69 private:\r
70         bool    retSuccess;\r
71 };\r
72 \r
73 extern CTortoiseProcApp theApp;\r
74 extern HWND hWndExplorer;\r
75 extern CString sOrigCWD;\r
76 \r