forked from Ixiko/AHK-libs-and-classes-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDDLManager.ahk
429 lines (376 loc) · 11.9 KB
/
DDLManager.ahk
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
;********************
;* *
;* DDLManager *
;* *
;********************
;
;
; Description
; ===========
; This function is used to manage one or more DDLs (drop-down lists). This
; function can also be used to manage other types of lists.
;
;
;
; Parameters
; ==========
;
; Name Description
; ---- -----------
; p_Command DDL command. [Required].
;
; Valid commands include the following:
;
; Command Description
; ------- -----------
; Push Push (add to the top) the value of
; p_Item. This command is often used
; just before a DDL is saved.
;
; This command also resets the
; FirstPush flag.
;
;
; PushIf Conditional push. See the
; "Processing Notes" section (below)
; for the conditions and associated
; actions.
;
; The "PushIf" command is useful for
; an ever-changing combobox objects
; where the object needs to be updated
; from sources other than the user.
; Ex: favorites, saved, etc.
;
;
; Pop Pop the first item from the list
; if it exits.
;
; This command also resets the
; FirstPush flag.
;
;
; PopIf Conditional pop. If a conditional
; push (PushIf) created a temporary
; item, this command will pop that
; temporary item from the list.
;
; This command also resets the
; FirstPush flag.
;
;
; Reset Resets the FirstPush flag so that
; if called for, the next "PushIf"
; command will push instead of
; replace.
;
;
; p_ListID List identifier [Optional] Valid values include
; null or an integer from 1 to 9. This limit can
; easily be expanded if needed) Any other values in
; this field may update the list incorrectly or return
; invalid values.
;
;
; p_List The list variable. [Required] This parameter must
; contain a variable name.
;
;
; p_Delimiter The character that delimits each list item.
; [Required]. If no value is defined (null), the
; parameter is set to "|".
;
;
; p_Item Item to search for and/or to be pushed on to the top
; of the list. [Required]
;
;
; p_MaxItems Maximum number of list items. [Optional] The
; default is 0 (no limit).
;
;
;
; Processing Notes
; ================
; o The conditions and associated actions of the "PushIf" command are as
; follows:
;
; Condition/Actions
; ----------------
; IF the value of p_Item already exists in the list THEN
; Return the list position where the value of p_Item is located.
;
; ELSE (new item)
;
; IF the list has never been pushed THEN
; Push (insert at the top) the value of p_Item to the list
; Return 1.
;
; ELSE (new item, list previously pushed)
; Replace the first item in list with the value of p_Item
; Return 1.
;
;
; o If an item is is to be added to the list by force ("Push" command) or
; because the item is unique ("PushIf" command), the following actions are
; performed before the item is added:
;
; - Any occurrences of the value of p_Item in the list ("duplicates" if
; you will) are removed.
;
; - Empty (null) items are removed. Not only does this keep the list
; clean, it insures that the only possible empty (null) item is at the
; top of the list.
;
;
; o The p_MaxItems parameter is not enforced until a new and/or unique
; item is added to the list. This is to insure that the function:
;
; 1) Operates as quickly as possible.
;
; 2) Does not return a pointer to a list item that no longer exists
; because it has been truncated.
;
;
;
; Return Codes
; ============
; If p_Command is "Push" or "PushIf", the the position in the list where the
; value of p_Item is located is returned.
;
;
; If P_Command is "Pop", the item that was popped from the list is returned.
; Note that the return value can be empty (null) because the value of the
; popped item is empty (null) or because the list was empty.
;
;
; If p_Command is "PopIf", the item that was popped from the list (if
; anything) is returned. Note that the return value can be empty (null)
; because the value of the popped item is empty (null) or because nothing
; was popped.
;
;
; if p_Command is "Reset", nothing is returned.
;
;
;
; Calls To Other Functions
; ========================
; None
;
;
;-------------------------------------------------------------------------------
DDLManager(p_Command
,p_ListID=""
,ByRef p_List=""
,p_Delimiter=""
,p_Item=""
,p_MaxItems=0)
{
;;;;; outputdebug Function: %A_ThisFunc%
;[====================]
;[ Static variables ]
;[====================]
Static s_FirstPush :=true
,s_FirstPush1:=true
,s_FirstPush2:=true
,s_FirstPush3:=true
,s_FirstPush4:=true
,s_FirstPush5:=true
,s_FirstPush6:=true
,s_FirstPush7:=true
,s_FirstPush8:=true
,s_FirstPush9:=true
;[==============]
;[ Initialize ]
;[==============]
l_ItemPos=0
;[==============]
;[ Parameters ]
;[==============]
p_Command=%p_Command% ;-- AutoTrim
p_ListID=%p_ListID% ;-- AutoTrim
if StrLen(p_Delimiter)=0
p_Delimiter:="|"
;[==================]
;[ Command: Reset ]
;[==================]
if p_Command=Reset
{
s_FirstPush%p_ListID%:=true
return
}
;[===========================]
;[ PushIf AND Item exists? ]
;[===========================]
if p_Command=PushIf
;-- Is the value of p_Item already in the list?
if InStr(p_Delimiter . p_List . p_Delimiter
,p_Delimiter . p_Item . p_Delimiter)
loop parse,p_List,%p_Delimiter%
if (A_LoopField=p_Item)
return A_Index
;[================]
;[ Command: Pop ]
;[================]
if p_Command=Pop
{
;-- Reset FirstPush
s_FirstPush%p_ListID%:=true
;-- Find 1st delimiter position
l_DelimiterPos:=InStr(p_List,p_Delimiter)
;-- Only 1 item in the list?
if l_DelimiterPos=0
{
l_Pop:=p_List
p_List:=""
}
else
{
;-- Pop and trim
l_Pop:=SubStr(p_List,1,l_DelimiterPos-1)
StringTrimLeft p_List,p_List,l_DelimiterPos
}
return l_Pop
}
;[==================]
;[ Command: PopIf ]
;[==================]
if p_Command=PopIf
{
;-- Been pushed?
if not s_FirstPush%p_ListID%
{
;-- Reset FirstPush
s_FirstPush%p_ListID%:=true
;-- Find 1st delimiter position
l_DelimiterPos:=InStr(p_List,p_Delimiter)
;-- Only 1 item in the list?
if l_DelimiterPos=0
{
l_Pop:=p_List
p_List:=""
}
else
{
;-- Pop and trim
l_Pop:=SubStr(p_List,1,l_DelimiterPos-1)
StringTrimLeft p_List,p_List,l_DelimiterPos
}
return l_Pop
}
return
}
;[=====================]
;[ Remove duplicates ]
;[ (if any) ]
;[=====================]
if StrLen(p_Item)
{
;-- Add temporary delimiter borders
p_List:=p_Delimiter . p_List . p_Delimiter
;-- Remove all occurrences of p_Item, if any
StringReplace
,p_List
,p_List
,% p_Delimiter . p_Item . p_Delimiter
,% p_Delimiter
,All
;-- Remove temporary borders
p_List:=SubStr(p_List,2,StrLen(p_List)-2)
}
;[=====================]
;[ Remove null items ]
;[ (if any) ]
;[=====================]
loop
{
StringReplace
,p_List
,p_List
,% p_Delimiter . p_Delimiter
,% p_Delimiter
,UseErrorLevel
if ErrorLevel=0
break
}
;-- Remove leading/trailing delimiters if they exist
if SubStr(p_List,1,1)=p_Delimiter
StringTrimLeft p_List,p_List,1
if SubStr(p_List,StrLen(p_List),1)=p_Delimiter
StringTrimRight p_List,p_List,1
;[=================]
;[ Command: Push ]
;[=================]
if p_Command=Push
{
;-- Reset FirstPush
s_FirstPush%p_ListID%:=true
;-- Push it
l_ListPos=1
if StrLen(p_List)=0
p_List:=p_Item
else
;-- Insert at the top of the list
p_List:=p_Item . p_Delimiter . p_List
}
;[===================]
;[ Command: PushIf ]
;[===================]
if p_Command=PushIf
{
l_ListPos=1
;-- Empty list?
if StrLen(p_list)=0
{
p_List:=p_Item
s_FirstPush%p_ListID%:=false
}
else
{
;-- First push?
if s_FirstPush%p_ListID%
{
;-- Insert at the top of the list
p_List:=p_Item . p_Delimiter . p_List
s_FirstPush%p_ListID%:=false
}
else
{
;-- Find 1st delimiter position
l_DelimiterPos:=InStr(p_List,p_Delimiter)
;-- Only 1 item in the list?
if l_DelimiterPos=0
p_List:=p_Item
else
{
;-- Replace the first list item with p_Item
StringTrimLeft p_List,p_List,l_DelimiterPos
p_List:=p_Item . p_Delimiter . p_List
}
}
}
}
;[=================]
;[ Truncate list ]
;[ (if needed) ]
;[=================]
if p_MaxItems
{
l_DelimiterPos=0
loop parse,p_list,%p_Delimiter%
{
l_DelimiterPos:=l_DelimiterPos+StrLen(A_LoopField)+1
if (A_Index+1>p_MaxItems)
{
p_List:=SubStr(p_List,1,l_DelimiterPos-1)
break
}
}
}
;[====================]
;[ Return to sender ]
;[====================]
;;;;; outputdebug End Func: %A_ThisFunc%
return l_ListPos
}