summaryrefslogtreecommitdiff
path: root/plugins/UserInfoEx/src/ctrl_base.cpp
blob: 9a2780cf60da6b8c988926a8e1542df597251548 (plain)
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/*
UserinfoEx plugin for Miranda IM

Copyright:
© 2006-2010 DeathAxe, Yasnovidyashii, Merlin, K. Romanov, Kreol

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#include "stdafx.h"

/***********************************************************************************************************
 * Old methods for setting text color of dialog controls
 ***********************************************************************************************************/

COLORREF clrBoth = -1;
COLORREF clrChanged = -1;
COLORREF clrCustom = -1;
COLORREF clrNormal = -1;
COLORREF clrMeta = -1;

void Ctrl_InitTextColours()
{
	clrBoth = g_plugin.getDword(SET_PROPSHEET_CLRBOTH, RGB(0, 160, 10));
	clrChanged = g_plugin.getDword(SET_PROPSHEET_CLRCHANGED, RGB(190, 0, 0));
	clrCustom = g_plugin.getDword(SET_PROPSHEET_CLRCUSTOM, RGB(0, 10, 130));
	clrNormal = g_plugin.getDword(SET_PROPSHEET_CLRNORMAL, RGB(90, 90, 90));
	clrMeta = g_plugin.getDword(SET_PROPSHEET_CLRMETA, RGB(120, 40, 130));
}

INT_PTR CALLBACK Ctrl_SetTextColour(HDC hdc, uint16_t wFlags)
{
	// OLD stuff
	SetTextColor(hdc, 
		(wFlags & CTRLF_CHANGED) 
			? clrChanged : ((wFlags & CTRLF_HASCUSTOM) && (wFlags & (CTRLF_HASPROTO|CTRLF_HASMETA)))
				? clrBoth : (wFlags & CTRLF_HASMETA)
					? clrMeta : (wFlags & CTRLF_HASCUSTOM)
						? clrCustom	: clrNormal
 );
	return (INT_PTR)GetStockObject(WHITE_BRUSH);
}

INT_PTR CALLBACK Ctrl_SetTextColour(HWND hCtrl, HDC hdc)
{
	if (hCtrl && g_plugin.getByte(SET_PROPSHEET_SHOWCOLOURS, 1)) 
	{
		LPCTRL pCtrl = (LPCTRL)GetUserData(hCtrl);
		if (PtrIsValid(pCtrl))
			return Ctrl_SetTextColour(hdc, pCtrl->wFlags);
	}
	return FALSE;
}

/***********************************************************************************************************
 * Implementation of CBaseCtrl
 ***********************************************************************************************************/

/**
 *
 *
 **/
CBaseCtrl::CBaseCtrl()
{
	memset(this, 0, sizeof(*this));
	_cbSize = sizeof(CBaseCtrl);
}

/**
 *
 *
 **/
CBaseCtrl::CBaseCtrl(HWND hDlg, uint16_t idCtrl, LPCSTR pszSetting)
{
	memset(this, 0, sizeof(*this));
	_cbSize = sizeof(CBaseCtrl);
	_hwnd = GetDlgItem(hDlg, idCtrl);
	if (!IsWindow(_hwnd)) throw;
	_idCtrl = idCtrl;
	_pszModule = USERINFO;
	_pszSetting = pszSetting;
	SetUserData(_hwnd, this);
}

/**
 *
 *
 **/
CBaseCtrl::CBaseCtrl(HWND hDlg, uint16_t idCtrl, LPCSTR pszModule, LPCSTR pszSetting)
{
	memset(this, 0, sizeof(*this));
	_cbSize		= sizeof(CBaseCtrl);
	_hwnd		= GetDlgItem(hDlg, idCtrl);
	if (!IsWindow(_hwnd)) throw;
	_idCtrl		= idCtrl;
	_pszModule	= pszModule;
	_pszSetting	= pszSetting;
	SetUserData(_hwnd, this);
}


/**
 *
 *
 **/
CBaseCtrl::~CBaseCtrl()
{
	SetUserData(_hwnd, NULL);
	MIR_FREE(_pszValue);
}

/**
 *
 *
 **/
INT_PTR CBaseCtrl::OnSetTextColour(HDC hdc)
{
	SetTextColor(hdc, 
		(_Flags.B.hasChanged) 
		? clrChanged : ((_Flags.B.hasCustom) && (_Flags.B.hasProto || _Flags.B.hasMeta))
				? clrBoth : _Flags.B.hasMeta
					? clrMeta : _Flags.B.hasCustom
						? clrCustom	: clrNormal
 );
	return (INT_PTR)GetStockObject(WHITE_BRUSH);
}

/***********************************************************************************************************
 * Implementation of CCtrlList
 ***********************************************************************************************************/

/**
 *
 *
 **/
CCtrlList* CCtrlList::CreateObj(HWND hOwnerDlg)
{
	Ctrl_InitTextColours();
	return new CCtrlList(hOwnerDlg);
}

/**
 *
 *
 **/
int CCtrlList::sortFunc(const CBaseCtrl *p1, const CBaseCtrl *p2)
{
	return p1->_idCtrl - p2->_idCtrl;
}

/**
 *
 *
 **/
CCtrlList::CCtrlList(HWND hOwnerDlg) :
	LIST<CBaseCtrl>(10, &CCtrlList::sortFunc)
{
	_hOwnerDlg = hOwnerDlg; 
	SetUserData(_hOwnerDlg, this);
}

/**
 *
 *
 **/
CCtrlList::~CCtrlList()
{
	INT_PTR i;

	SetUserData(_hOwnerDlg, NULL);
	// delete data
	for (i = 0 ; i < count; i++)
	{
		delete (*this)[i];
	}
	// delete the list
	LIST<CBaseCtrl>::destroy();
}

/**
 *
 *
 **/
void CCtrlList::Release()
{ 
	delete this; 
}

/**
 *
 *
 **/
void CCtrlList::OnReset()
{
	INT_PTR i;

	for (i = 0; i < count; i++)
	{
		if (items[i]) 
		{
			items[i]->OnReset();
		}
	}
}

/**
 *
 *
 **/
BOOL CCtrlList::OnInfoChanged(MCONTACT hContact, LPCSTR pszProto)
{
	BOOL bChanged = 0;
	INT_PTR i;

	for (i = 0; i < count; i++)
	{
		if (PtrIsValid(items[i]))
		{
			bChanged |= items[i]->OnInfoChanged(hContact, pszProto);
		}
	}
	return bChanged;
}

/**
 *
 *
 **/
void CCtrlList::OnApply(MCONTACT hContact, LPCSTR pszProto)
{
	INT_PTR i;

	for (i = 0; i < count; i++)
	{
		if (PtrIsValid(items[i]))
		{
			items[i]->OnApply(hContact, pszProto);
		}
	}
}

/**
 *
 *
 **/
void CCtrlList::OnChangedByUser(uint16_t idCtrl, uint16_t wChangedMsg)
{
	// prefilter messages to avoid unessesary search operations
	switch (wChangedMsg)
	{
	case EN_UPDATE:
	case EN_CHANGE:
	case CBN_SELCHANGE:
		{
			CBaseCtrl *pResult = CBaseCtrl::GetObj(_hOwnerDlg, idCtrl);
			if (PtrIsValid(pResult) && (pResult->_cbSize == sizeof(CBaseCtrl)))
			{
				pResult->OnChangedByUser(wChangedMsg);
			}
		}
	}
}

/**
 *
 *
 **/
INT_PTR CCtrlList::OnSetTextColour(HWND hCtrl, HDC hdc)
{
	if (IsWindow(hCtrl) && myGlobals.ShowPropsheetColours)
	{
		CBaseCtrl* pCtrl = CBaseCtrl::GetObj(hCtrl);
		if (PtrIsValid(pCtrl) && (pCtrl->_cbSize == sizeof(CBaseCtrl)))
		{
			return pCtrl->OnSetTextColour(hdc);
		}
	}
	return FALSE;
}