OSDN Git Service

Remove USES_CONVERSION
[winmerge-jp/winmerge-jp.git] / ShellExtension / WinMergeShell.h
1 /////////////////////////////////////////////////////////////////////////////
2 //    License (GPLv2+):
3 //    This program is free software; you can redistribute it and/or modify
4 //    it under the terms of the GNU General Public License as published by
5 //    the Free Software Foundation; either version 2 of the License, or (at
6 //    your option) any later version.
7 //
8 //    This program is distributed in the hope that it will be useful, but
9 //    WITHOUT ANY WARRANTY; without even the implied warranty of
10 //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 //    GNU General Public License for more details.
12 //
13 //    You should have received a copy of the GNU General Public License
14 //    along with this program; if not, write to the Free Software
15 //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16 /////////////////////////////////////////////////////////////////////////////
17 // Look at http://www.codeproject.com/shell/ for excellent guide
18 // to Windows Shell programming by Michael Dunn.
19 /**
20  * @file  WinMergeShell.h
21  *
22  * @brief Declaration file for ShellExtension class
23  */
24 // ID line follows -- this is updated by SVN
25 // $Id: WinMergeShell.h 6933 2009-07-26 14:07:03Z kimmov $
26
27 #pragma once
28
29 #include <shlobj.h>
30 #include <shlguid.h>
31 #include <comdef.h>
32 #include <atlconv.h>    // for ATL string conversion macros
33 #include "resource.h"   // main symbols
34 #include "UnicodeString.h"
35
36 /**
37  * @brief Class for handling shell extension tasks
38  */
39 class ATL_NO_VTABLE CWinMergeShell :
40                 public CComObjectRootEx<CComSingleThreadModel>,
41                 public CComCoClass<CWinMergeShell, &CLSID_WinMergeShell>,
42                 public IDispatchImpl<IWinMergeShell, &IID_IWinMergeShell, &LIBID_SHELLEXTENSIONLib>,
43                 public IShellExtInit,
44                 public IContextMenu
45 {
46 public:
47         CWinMergeShell();
48         ~CWinMergeShell();
49
50         DECLARE_REGISTRY_RESOURCEID(IDR_WINMERGESHELL)
51
52         DECLARE_PROTECT_FINAL_CONSTRUCT()
53
54         BEGIN_COM_MAP(CWinMergeShell)
55         COM_INTERFACE_ENTRY(IWinMergeShell)
56         COM_INTERFACE_ENTRY(IDispatch)
57         COM_INTERFACE_ENTRY(IShellExtInit)
58         COM_INTERFACE_ENTRY(IContextMenu)
59         END_COM_MAP()
60
61 // IWinMergeShell
62 protected:
63         String m_strPaths[3]; /**< Paths for selected items */
64         String m_strPreviousPath; /**< Previously selected path */
65         HBITMAP m_MergeBmp, m_MergeDirBmp; /**< Icon */
66         UINT m_nSelectedItems; /**< Amount of selected items */
67         DWORD m_dwContextMenuEnabled; /**< Is context menu enabled and in which mode? */
68         DWORD m_dwMenuState; /**< Shown menuitems */
69         inline static HMENU s_hMenuLastAdded = nullptr;
70         inline static UINT s_uidCmdLastAdded = 0;
71
72         BOOL GetWinMergeDir(String &strDir);
73         int DrawSimpleMenu(HMENU hmenu, UINT uMenuIndex, UINT uidFirstCmd);
74         int DrawAdvancedMenu(HMENU hmenu, UINT uMenuIndex, UINT uidFirstCmd);
75         String GetHelpText(UINT_PTR idCmd);
76         String FormatCmdLine(const String &winmergePath,
77                         const String &path1, const String &path2, const String &path3, BOOL bAlterSubFolders);
78
79 public:
80         // IShellExtInit
81         STDMETHOD(Initialize)(LPCITEMIDLIST, LPDATAOBJECT, HKEY);
82
83         // IContextMenu
84         STDMETHOD(GetCommandString)(UINT_PTR, UINT, UINT*, LPSTR, UINT);
85         STDMETHOD(InvokeCommand)(LPCMINVOKECOMMANDINFO);
86         STDMETHOD(QueryContextMenu)(HMENU, UINT, UINT, UINT, UINT);
87 };
88