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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
#ifndef modern_skinned_profile_h__
#define modern_skinned_profile_h__
//#include "modern_commonheaders.h"
//#include "modern_commonprototypes.h"
#include <map>
#include <string>
//#include <atlstr.h>
class MString
{
private:
TCHAR * _buffer;
public:
MString() : _buffer(NULL) {};
MString(const TCHAR * str) { _buffer = str ? _tcsdup(str) : NULL; }
MString(const MString& str) { _buffer = str._buffer ? _tcsdup(str._buffer) : NULL; }
MString& operator=(const MString& str)
{
if (_buffer) free(_buffer);
_buffer = str._buffer ? _tcsdup(str._buffer) : NULL;
}
TCHAR* operator()(const MString& str) { return _buffer; }
~MString()
{
if (_buffer)
free(_buffer);
_buffer = NULL;
}
#ifdef _UNICODE
MString(const char * str)
{
if (!str)
_buffer = NULL;
else
{
int cbLen = MultiByteToWideChar(0, 0, str, -1, NULL, 0);
wchar_t* _buffer = (wchar_t*)malloc(sizeof(wchar_t)*(cbLen + 1));
if (_buffer == NULL) return;
MultiByteToWideChar(0, 0, str, -1, _buffer, cbLen);
_buffer[cbLen] = 0;
}
}
#endif
};
class ValueVariant
{
public:
ValueVariant() : _type(VVT_EMPTY) {};
ValueVariant(BYTE bValue) : _type(VVT_BYTE), _bValue(bValue) {};
ValueVariant(WORD wValue) : _type(VVT_WORD), _wValue(wValue) {};
ValueVariant(DWORD dwValue) : _type(VVT_DWORD), _dwValue(dwValue) {};
ValueVariant(const MString& strValue) : _type(VVT_STRING), _strValue(strValue) {};
ValueVariant(const char * szValue) : _type(VVT_STRING), _strValue(szValue) {};
#ifdef _UNICODE
ValueVariant(const wchar_t * szValue) : _type(VVT_STRING), _strValue(szValue) {};
#endif
BYTE GetByte()
{
switch (_type)
{
case VVT_BYTE:
return (BYTE)_bValue;
case VVT_WORD:
case VVT_DWORD:
DebugBreak();
return (BYTE)_bValue;
default:
DebugBreak();
}
return 0;
}
WORD GetWord()
{
switch (_type)
{
case VVT_WORD:
return (WORD)_wValue;
case VVT_BYTE:
case VVT_DWORD:
DebugBreak();
return (WORD)_wValue;
default:
DebugBreak();
}
return 0;
}
DWORD GetDword()
{
switch (_type)
{
case VVT_DWORD:
return (DWORD)_dwValue;
case VVT_BYTE:
case VVT_WORD:
DebugBreak();
return (DWORD)_dwValue;
default:
DebugBreak();
}
return 0;
}
MString GetString()
{
switch (_type)
{
case VVT_STRING:
return _strValue;
default:
DebugBreak();
}
return "";
}
const MString& GetStringStatic()
{
switch (_type)
{
case VVT_STRING:
return _strValue;
default:
DebugBreak();
}
return _strValue;
}
bool IsEmpty() { return _type == VVT_EMPTY; }
private:
enum
{
VVT_EMPTY = 0,
VVT_BYTE,
VVT_WORD,
VVT_DWORD,
VVT_STRING
};
int _type;
union
{
BYTE _bValue;
WORD _wValue;
DWORD _dwValue;
};
MString _strValue;
};
// this is single tone class to represent some profile settings to be skinned
class CSkinnedProfile
{
private:
static CSkinnedProfile _me;
CSkinnedProfile();
~CSkinnedProfile();
private:
// Skinned profile holded attributes
MString _strSkinFilename;
bool _bLoadedFonts;
bool _bLoadedOthers;
typedef std::map<HashStringKeyNoCase, ValueVariant> ValueList_t;
typedef std::map<HashStringKeyNoCase, ValueList_t> KeyList_t;
KeyList_t SkinnedProfile;
ValueVariant* _GetValue(const char * szSection, const char * szKey);
mir_cs _Lock; // critical section to matable skinned profile access
public:
static CSkinnedProfile* SkinProfile() { return &_me; }
HRESULT Init();
HRESULT Clear();
static BYTE SpiGetSkinByte(MCONTACT hContact, const char * szSection, const char * szKey, const BYTE defValue);
static WORD SpiGetSkinWord(MCONTACT hContact, const char * szSection, const char * szKey, const WORD defValue);
static DWORD SpiGetSkinDword(MCONTACT hContact, const char * szSection, const char * szKey, const DWORD defValue);
static BOOL SpiCheckSkinned(MCONTACT hContact, const char * szSection, const char * szKey);
};
#endif // modern_skinned_profile_h__
|