blob: 1d34ef6818f2593a5c5b15bff84a1d03a1914c0e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// SysIconUtils.h
#ifndef ZIP7_INC_SYS_ICON_UTILS_H
#define ZIP7_INC_SYS_ICON_UTILS_H
#include "../../../Common/MyWindows.h"
#include <CommCtrl.h>
#include "../../../Common/MyString.h"
struct CExtIconPair
{
UString Ext;
int IconIndex;
// UString TypeName;
// int Compare(const CExtIconPair &a) const { return MyStringCompareNoCase(Ext, a.Ext); }
};
struct CAttribIconPair
{
DWORD Attrib;
int IconIndex;
// UString TypeName;
// int Compare(const CAttribIconPair &a) const { return Ext.Compare(a.Ext); }
};
class CExtToIconMap
{
public:
CRecordVector<CAttribIconPair> _attribMap;
CObjectVector<CExtIconPair> _extMap;
int SplitIconIndex;
int SplitIconIndex_Defined;
CExtToIconMap(): SplitIconIndex_Defined(false) {}
void Clear()
{
SplitIconIndex_Defined = false;
_extMap.Clear();
_attribMap.Clear();
}
int GetIconIndex(DWORD attrib, const wchar_t *fileName /* , UString *typeName */);
// int GetIconIndex(DWORD attrib, const UString &fileName);
};
DWORD_PTR GetRealIconIndex(CFSTR path, DWORD attrib, int &iconIndex);
int GetIconIndexForCSIDL(int csidl);
HIMAGELIST GetSysImageList(bool smallIcons);
#endif
|