forked from NTDLS/NSWFL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNSWFL_ListBox.Cpp
333 lines (264 loc) · 11.2 KB
/
NSWFL_ListBox.Cpp
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright © NetworkDLS 2023, All rights reserved
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef _NSWFL_LISTBOX_CPP_
#define _NSWFL_LISTBOX_CPP_
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include "NSWFL.H"
#ifdef _USE_GLOBAL_MEMPOOL
extern NSWFL::Memory::MemoryPool *pMem; //pMem must be defined and initalized elsewhere.
#endif
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
namespace NSWFL {
namespace ListBox {
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/*
MAX Length: 32,767 Items
*/
int InsertListBoxItem(HWND hWnd, char *sInStr, int iMaxItems, int iInsertPos)
{
int NumberOfLines = 0;
if (hWnd)
{
//FIXFIX: This is VERY unsafe - it locks thread if the window is unresponsive!!!!
SendMessage(hWnd, LB_INSERTSTRING, iInsertPos, (LPARAM)(char*)sInStr);
NumberOfLines = (int)SendMessage(hWnd, LB_GETCOUNT, 0, 0);
while (NumberOfLines > iMaxItems)
{
NumberOfLines = (int)SendMessage(hWnd, LB_GETCOUNT, 0, 0);
SendMessage(hWnd, LB_DELETESTRING, 0, FALSE);
}
NumberOfLines = (int)SendMessage(hWnd, LB_GETCOUNT, 0, 0);
SendMessage(hWnd, LB_SETCURSEL, NumberOfLines - 1, 0);
SendMessage(hWnd, LB_SETCARETINDEX, NumberOfLines - 1, FALSE);
}
return NumberOfLines;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int InsertListBoxItem(HWND hWnd, char *sInStr, int iInsertPos)
{
return InsertListBoxItem(hWnd, sInStr, 10240, iInsertPos);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int InsertListBoxItem(HWND hWnd, char *sInStr)
{
return InsertListBoxItem(hWnd, sInStr, 10240, -1);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int InsertListBoxItemNoDuplicate(HWND hWnd, char *sInStr, int iInsertPos)
{
if (NSWFL::ListBox::FindExactListBoxString(hWnd, sInStr) < 0)
{
return NSWFL::ListBox::InsertListBoxItem(hWnd, sInStr);
}
return -1;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int InsertListBoxItemNoDuplicate(HWND hWnd, char *sInStr)
{
return NSWFL::ListBox::InsertListBoxItemNoDuplicate(hWnd, sInStr, -1);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int ClearListBox(HWND hWnd)
{
DWORD NumberOfLines = 0;
NumberOfLines = (int)SendMessage(hWnd, LB_GETCOUNT, 0, 0);
SendMessage(hWnd, LB_RESETCONTENT, 0, 0);
return NumberOfLines;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int DeleteListBoxItem(HWND hWnd)
{
int iIndex = NSWFL::ListBox::GetCurrentListBoxItem(hWnd);
return NSWFL::ListBox::DeleteListBoxItem(hWnd, iIndex);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int DeleteListBoxItem(HWND hWnd, int iItemPos)
{
SendMessage(hWnd, LB_DELETESTRING, iItemPos, 0);
return (int)SendMessage(hWnd, LB_GETCOUNT, 0, 0);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int CountListBoxItems(HWND hWnd)
{
return (int)SendMessage(hWnd, LB_GETCOUNT, 0, 0);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Use this Function only with multiple-selection list boxes.
int SelectMultipleListBoxItem(HWND hWnd, int iItemPos, bool bSelect)
{
SendMessage(hWnd, LB_SETSEL, (WPARAM)bSelect, (LPARAM)iItemPos);
return (int)SendMessage(hWnd, LB_GETCOUNT, 0, 0);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int SelectListBoxItem(HWND hWnd, int iItemPos)
{
SendMessage(hWnd, LB_SETCURSEL, (WPARAM)iItemPos, 0);
return (int)SendMessage(hWnd, LB_GETCOUNT, 0, 0);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int GetCurrentListBoxItem(HWND hWnd)
{
return (int)SendMessage(hWnd, LB_GETCURSEL, 0, 0);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int GetListBoxItemText(char *sOutVal, int iMaxSz, HWND hWnd)
{
int iItemPos = NSWFL::ListBox::GetCurrentListBoxItem(hWnd);
if (iItemPos >= 0)
{
Assert(NSWFL::ListBox::GetListBoxItemLength(hWnd, iItemPos) >= iMaxSz, "Buffer too small.");
return (int)SendMessage(hWnd, LB_GETTEXT, (WPARAM)iItemPos, (LPARAM)sOutVal);
}
return 0;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int GetListBoxItemText(char *sOutVal, int iMaxSz, HWND hWnd, int iItemPos)
{
Assert(NSWFL::ListBox::GetListBoxItemLength(hWnd, iItemPos) >= iMaxSz, "Buffer too small.");
return (int)SendMessage(hWnd, LB_GETTEXT, (WPARAM)iItemPos, (LPARAM)sOutVal);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int GetListBoxItemLength(HWND hWnd, int iItemPos)
{
return (int)SendMessage(hWnd, LB_GETTEXTLEN, iItemPos, 0);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int FindListBoxString(HWND hWnd, const char *sString, int iStartIndex)
{
return (int)SendMessage(hWnd, (UINT)LB_FINDSTRING, (WPARAM)iStartIndex, (LPARAM)sString);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int FindListBoxString(HWND hWnd, const char *sString)
{
return (int)FindListBoxString(hWnd, sString, -1);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int FindExactListBoxString(HWND hWnd, const char *sString, int iStartIndex)
{
return (int)SendMessage(hWnd, (UINT)LB_FINDSTRINGEXACT, (WPARAM)iStartIndex, (LPARAM)sString);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int FindExactListBoxString(HWND hWnd, const char *sString)
{
return (int)FindListBoxString(hWnd, sString, -1);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int SetHorizontalListBoxExtent(HWND hWnd, int iHorzExtent)
{
SendMessage(hWnd, (UINT)LB_SETHORIZONTALEXTENT, (WPARAM)iHorzExtent, (LPARAM)0);
return (int)SendMessage(hWnd, LB_GETCOUNT, 0, 0);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int PopListBoxFromIntegerArray(HWND hWnd, int *iItemList, int iItems)
{
char sText[64];
for (int iItem = 0; iItem < iItems; iItem++)
{
sprintf_s(sText, sizeof(sText), "%d", iItemList[iItem]);
InsertListBoxItem(hWnd, sText);
}
return iItems;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int PopListBoxFromStringArray(HWND hWnd, char **sItemList, int iItems)
{
for (int iItem = 0; iItem < iItems; iItem++)
{
InsertListBoxItem(hWnd, sItemList[iItem]);
}
return iItems;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//This functions return value must be free externally! Use: FreeArray(sArray, iItems) in the String.Cpp
char **ListBoxToCharacterArray(HWND hWnd, int *iOutItemCount)
{
int iItems = CountListBoxItems(hWnd);
int iItem = 0;
int iAdded = 0;
int iLength = 0;
#ifdef _USE_GLOBAL_MEMPOOL
char **sArray = (char **)pMem->Allocate(sizeof(char *), iItems);
#else
char **sArray = (char **)calloc(sizeof(char *), iItems);
#endif
while (iItem < iItems)
{
if ((iLength = GetListBoxItemLength(hWnd, iItem)) > 0)
{
#ifdef _USE_GLOBAL_MEMPOOL
sArray[iAdded] = (char *)pMem->Allocate(sizeof(char), iLength + 1);
#else
sArray[iAdded] = (char *)calloc(sizeof(char), iLength + 1);
#endif
if (GetListBoxItemText(sArray[iAdded], iLength + 1, hWnd, iItem) > 0)
{
sArray[iAdded][iLength] = '\0';
iAdded++;
}
else {
#ifdef _USE_GLOBAL_MEMPOOL
pMem->Free(sArray[iAdded]);
#else
free(sArray[iAdded]);
#endif
}
}
iItem++;
}
*iOutItemCount = iItem;
return sArray;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//This functions return value must be free externally!
int *ListBoxToIntegerArray(HWND hWnd, int *iOutItemCount)
{
int iItems = CountListBoxItems(hWnd);
int iItem = 0;
int iAdded = 0;
int iLength = 0;
char sBuffer[64];
#ifdef _USE_GLOBAL_MEMPOOL
int *iArray = (int *)pMem->Allocate(sizeof(int), iItems);
#else
int *iArray = (int *)calloc(sizeof(int), iItems);
#endif
while (iItem < iItems)
{
if ((iLength = GetListBoxItemLength(hWnd, iItem)) > 0)
{
if (GetListBoxItemText(sBuffer, sizeof(sBuffer), hWnd, iItem) > 0)
{
iArray[iAdded] = atol(sBuffer);
iAdded++;
}
}
iItem++;
}
*iOutItemCount = iItem;
return iArray;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
int DeleteSingleListBoxItemFriendly(HWND hWnd)
{
int iCurrent = GetCurrentListBoxItem(hWnd);
int iItems = CountListBoxItems(hWnd);
int iDeleted = DeleteListBoxItem(hWnd);
if ((iCurrent + 1) == iItems)
{
SelectListBoxItem(hWnd, iCurrent - 1);
}
else {
SelectListBoxItem(hWnd, iCurrent);
}
return iDeleted;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
} //namespace::ListBox
} //namespace::NSWFL
#endif