-
Notifications
You must be signed in to change notification settings - Fork 12
/
Process.cls
452 lines (296 loc) · 9.41 KB
/
Process.cls
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "Process"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Attribute VB_Ext_KEY = "SavedWithClassBuilder6" ,"Yes"
Attribute VB_Ext_KEY = "Top_Level" ,"Yes"
Attribute VB_Ext_KEY = "Member0" ,"Window"
'--------------------------------------------------------------------------------
' Component : Process
' Project : ViDock
'
' Description: A managed Process object. A Process is an entity within the
' dock on the UI.
'
'--------------------------------------------------------------------------------
Option Explicit
Private m_Windows As Collection
'local variable(s) to hold property value(s)
Private mvarCaption As String 'local copy
Private mvarID As Long 'local copy
Private mvarPath As String 'local copy
Private mvarFlashing As Boolean 'local copy
Private mvarJumpList As JumpList
Private mvarArguments As String
Private mvarImageName As String
Private mvarhIcon As Long
Private m_Icon32 As AlphaIcon
Private m_createdFromPath As Boolean
Private m_X As Long
Private m_Y As Long
Private m_Pinned As Boolean
Private m_Running As Boolean
Public PhysicalLinkFile As String
Public IsStack As Boolean
Public Function GetKey()
Dim Id As String
If mvarPath <> "" Then
Id = mvarPath
Else
Id = mvarID
End If
GetKey = Id & "_"
End Function
Public Property Let Arguments(newArguments As String)
mvarArguments = newArguments
End Property
Public Property Get Arguments() As String
Arguments = mvarArguments
End Property
Public Function GetJumpLists()
GetJumpLists = mvarJumpList.GetMRUList
End Function
Public Function UpdateWindowImages()
Dim thisWindow As Window
For Each thisWindow In m_Windows
If thisWindow.Image.Width = 0 Or thisWindow.hWnd = g_hwndForeGroundWindow Then
If thisWindow.WindowState <> vbMinimized Then
thisWindow.UpdateImage
End If
End If
Next
End Function
Public Function IsRunning() As Boolean
IsRunning = IsPIDValid(mvarID)
End Function
Public Property Let Running(ByVal newValue As Boolean)
m_Running = newValue
End Property
Public Property Get Running() As Boolean
Running = m_Running
End Property
Public Property Get Pinned() As Boolean
Pinned = m_Pinned
End Property
Public Property Let Pinned(ByVal newValue As Boolean)
m_Pinned = newValue
End Property
Public Property Get PinnedAndClosed() As Boolean
If m_Pinned = True And m_Running = False Then
PinnedAndClosed = True
Else
PinnedAndClosed = False
End If
End Property
Public Property Get Y() As Long
Y = m_Y
End Property
Public Property Let Y(ByVal newValue As Long)
m_Y = newValue
End Property
Public Property Get X() As Long
X = m_X
End Property
Public Property Let X(ByVal newValue As Long)
m_X = newValue
End Property
Public Function RestoreAllWindows()
Dim thisWindow As Window
For Each thisWindow In m_Windows
ShowWindowTimeout thisWindow.hWnd, SW_RESTORE
Next
End Function
Public Function MinimizeAllWindows()
Dim thisWindow As Window
For Each thisWindow In m_Windows
ShowWindowTimeout thisWindow.hWnd, SW_MINIMIZE
Next
End Function
Public Function RequestCloseAllWindows()
Dim thisWindow As Window
For Each thisWindow In m_Windows
PostMessage thisWindow.hWnd, WM_CLOSE, 0&, 0&
Next
End Function
Public Property Let Flashing(ByVal vData As Boolean)
mvarFlashing = vData
End Property
Public Property Get Flashing() As Boolean
Flashing = mvarFlashing
End Property
Public Function UpdateFlashStatus()
Dim thisWindow As Window
For Each thisWindow In m_Windows
If thisWindow.Flashing Then
Me.Flashing = True
Exit Function
End If
Next
Me.Flashing = False
End Function
Public Function GetWindowByHWND(ByRef hWnd As Long) As Window
On Error GoTo ObjectDoesNotExist
Dim theWindow As Window
Set theWindow = m_Windows(CStr("a" & hWnd))
Set GetWindowByHWND = theWindow
Exit Function
ObjectDoesNotExist:
Set GetWindowByHWND = Nothing
End Function
Public Property Get Window() As Collection
Set Window = m_Windows
End Property
Public Function IsIconCreatedFromPath() As Boolean
IsIconCreatedFromPath = m_createdFromPath
End Function
Public Function HasWindows() As Boolean
If m_Windows.Count > 0 Then
HasWindows = True
End If
End Function
Public Function CheckWindowHandles()
'Decide weather windows should be visible on taskbar
Dim thisWindow As Window
Dim lStyle As Long
For Each thisWindow In m_Windows
lStyle = GetWindowLong(thisWindow.hWnd, GWL_STYLE)
If (IsWindow(thisWindow.hWnd) = False) Or ((lStyle And WS_VISIBLE) = False) Then
m_Windows.Remove "a" & thisWindow.hWnd
End If
Next
End Function
Public Function CreateIconFromhWnd(hWnd As Long) As Boolean
Exit Function
On Error GoTo CreateBlankIcon
CreateIconFromhWnd = True
Set m_Icon32 = New AlphaIcon
mvarhIcon = IconHelper.GetIconFromHwnd(hWnd)
If mvarhIcon <> 0 Then
m_Icon32.CreateFromHICON mvarhIcon
DestroyIcon mvarhIcon
End If
Exit Function
CreateBlankIcon:
CreateIconFromhWnd = False
mvarhIcon = 0
End Function
Public Function CreateIconFromPath() As Boolean
Exit Function
On Error GoTo CreateBlankIcon
CreateIconFromPath = True
Set m_Icon32 = New AlphaIcon
mvarhIcon = IconHelper.GetSmallApplicationIcon(mvarPath)
If mvarhIcon <> 0 Then
m_Icon32.CreateFromHICON mvarhIcon
DestroyIcon mvarhIcon
m_createdFromPath = True
End If
Exit Function
CreateBlankIcon:
CreateIconFromPath = False
mvarhIcon = 0
LogError 0, "CreateIconFromPath", "CreateIconFromPath Complete (warning: blank)"
End Function
'Constructor
Public Function Constructor(newPID As Long, newPath As String)
mvarID = newPID
mvarPath = newPath
mvarCaption = GetEXEProductTitle(newPath)
mvarhIcon = IconHelper.GetSmallApplicationIcon(mvarPath)
If mvarArguments = vbNullString Then mvarArguments = WMIHelper.GetProcessCommandLineArguments(mvarID)
Set m_Icon32 = New AlphaIcon
If Len(mvarPath) > 3 Then
If Right(LCase(mvarPath), 3) = "exe" Then
mvarImageName = GetFilenameFromPath(mvarPath)
'Set newJumpList = GetImageJumpList(mvarPath)
'If Not newJumpList Is Nothing Then
' Set mvarJumpList = newJumpList
' Debug.Print "Creating jumplist for: " & mvarPath
'End If
If mvarhIcon = 0 Then
LogError 0, "Constructor", "Process", "Unable to retrieve small icon for: " & mvarPath
Else
m_Icon32.CreateFromHICON mvarhIcon
DestroyIcon mvarhIcon
End If
'Set m_Icon32 = IconToAlphaBitmap(IconHelper.GetApplicationIcon(mvarPath))
Else
mvarhIcon = 0
End If
Else
mvarhIcon = 0
End If
End Function
Public Function IconIsValid() As Boolean
If mvarhIcon <> 0 Then
IconIsValid = True
End If
End Function
Public Property Get Image() As GDIPImage
If IsEmpty(m_Icon32.Image) Then Exit Property
Set Image = m_Icon32.Image
End Property
Public Property Get Path() As String
Path = mvarPath
End Property
Public Property Let Path(szPathSpec As String)
mvarPath = szPathSpec
End Property
Public Function PrintWindows()
Dim thisWindow As Window
For Each thisWindow In m_Windows
Debug.Print thisWindow.hWnd & " : " & thisWindow.Caption
Next
End Function
Public Property Get WindowCount()
WindowCount = m_Windows.Count
End Property
Private Sub Class_Initialize()
m_Pinned = False
m_Running = False
Set mvarJumpList = New JumpList
Set m_Windows = New Collection
End Sub
Public Function AddWindow(newWindow As Window)
If Exists(m_Windows, "a" & newWindow.hWnd) = False Then
Set newWindow.Parent = Me
m_Windows.Add newWindow, "a" & newWindow.hWnd
End If
End Function
Public Function RemoveWindow(theWindow As Window)
If Exists(m_Windows, "a" & theWindow.hWnd) = True Then
m_Windows.Remove "a" & theWindow.hWnd
End If
End Function
Public Function CreateWindow(hWnd As Long) As Window
Dim newWindow As New Window
newWindow.hWnd = hWnd
Set CreateWindow = newWindow
End Function
Public Property Get Id() As Long
Id = mvarID
End Property
Public Property Get ImageName() As String
ImageName = mvarImageName
End Property
Public Property Let Id(ByVal newID As Long)
mvarID = newID
End Property
Public Property Let Caption(ByVal vData As String)
mvarCaption = vData
End Property
Public Property Get Caption() As String
Caption = mvarCaption
End Property
Private Sub Class_Terminate()
Set m_Icon32 = Nothing
End Sub