forked from gphilippot/purebasic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WindowsExtensions.pb
396 lines (299 loc) · 11.1 KB
/
WindowsExtensions.pb
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
;--------------------------------------------------------------------------------------------
; Copyright (c) Fantaisie Software. All rights reserved.
; Dual licensed under the GPL and Fantaisie Software licenses.
; See LICENSE and LICENSE-FANTAISIE in the project root for license information.
;--------------------------------------------------------------------------------------------
;windows only
CompilerIf #CompileWindows
Procedure ShowWindowMaximized(Window)
ShowWindow_(WindowID(Window), #SW_MAXIMIZE)
EndProcedure
Procedure IsWindowMaximized(Window)
ProcedureReturn IsZoomed_(WindowID(Window))
EndProcedure
Procedure IsWindowMinimized(Window)
ProcedureReturn IsIconic_(WindowID(Window))
EndProcedure
Procedure SetWindowForeground(Window)
If GetWindowLongPtr_(WindowID(Window), #GWL_STYLE) & #WS_MINIMIZE
ShowWindow_(WindowID(Window), #SW_RESTORE)
EndIf
BringWindowToTop_(WindowID(Window))
SetForegroundWindow_(WindowID(Window))
SetActiveWindow(Window)
EndProcedure
Procedure SetWindowForeground_NoActivate(Window)
SetWindowPos_(WindowID(Window), #HWND_TOP, 0,0,0,0, #SWP_NOACTIVATE|#SWP_NOMOVE|#SWP_NOOWNERZORDER|#SWP_NOSIZE)
EndProcedure
; windows only, force window to the foreground
;
; NOTE: This function is dangerous and can cause the IDE to hang.
; Use this only when there is no other option.
; (currently used only by AddTools.pb and by the Commiunication.pb in the Debugger)
;
Procedure SetWindowForeground_Real(Window)
hWnd = WindowID(Window)
If GetWindowLongPtr_(hWnd, #GWL_STYLE) & #WS_MINIMIZE
ShowWindow_(hWnd, #SW_RESTORE)
EndIf
; Check To see If we are the foreground thread
foregroundThreadID = GetWindowThreadProcessId_(GetForegroundWindow_(), 0)
ourThreadID = GetCurrentThreadId_()
; If not, attach our thread's 'input' to the foreground thread's
If (foregroundThreadID <> ourThreadID)
AttachThreadInput_(foregroundThreadID, ourThreadID, #True);
EndIf
; Bring our window To the foreground
SetForegroundWindow_(hWnd)
; If we attached our thread, detach it now
If (foregroundThreadID <> ourThreadID)
AttachThreadInput_(foregroundThreadID, ourThreadID, #False)
EndIf
; Needed to redraw the frame, as the window is activated but the frame stay in inactive color (at least on XP)
RedrawWindow_(hWnd, #Null, #Null, #RDW_FRAME | #RDW_INVALIDATE)
EndProcedure
Procedure SetWindowStayOnTop(Window, StayOnTop)
If StayOnTop
SetWindowPos_(WindowID(Window), #HWND_TOPMOST , 0, 0, 0, 0, #SWP_NOSIZE |#SWP_NOMOVE)
Else
SetWindowPos_(WindowID(Window), #HWND_NOTOPMOST , 0, 0, 0, 0, #SWP_NOSIZE |#SWP_NOMOVE)
EndIf
EndProcedure
Procedure GetPanelWidth(Gadget)
; tc.TC_ITEM\mask = #TCIF_PARAM
; If SendMessage_(GadgetID(Gadget), #TCM_GETITEM, GetGadgetState(Gadget), @tc)
; GetClientRect_(tc\lParam, rect.RECT)
; ProcedureReturn rect\right
; EndIf
ProcedureReturn GetGadgetAttribute(Gadget, #PB_Panel_ItemWidth)
EndProcedure
Procedure GetPanelHeight(Gadget)
; tc.TC_ITEM\mask = #TCIF_PARAM
; If SendMessage_(GadgetID(Gadget), #TCM_GETITEM, GetGadgetState(Gadget), @tc)
; GetClientRect_(tc\lParam, rect.RECT)
; ProcedureReturn rect\bottom
; EndIf
ProcedureReturn GetGadgetAttribute(Gadget, #PB_Panel_ItemHeight)
EndProcedure
Procedure GetPanelItemID(Gadget, Item)
tc.TC_ITEM\mask = #TCIF_PARAM
If SendMessage_(GadgetID(Gadget), #TCM_GETITEM, Item, @tc)
ProcedureReturn tc\lParam
Else
ProcedureReturn 0
EndIf
EndProcedure
Procedure SelectComboBoxText(Gadget)
SendMessage_(GadgetID(Gadget), #EM_SETSEL, 0, -1)
SetFocus_(GadgetID(Gadget))
EndProcedure
Procedure RedrawGadget(Gadget)
RedrawWindow_(GadgetID(Gadget), 0, 0, #RDW_INVALIDATE)
EndProcedure
Procedure GetButtonBackgroundColor()
ProcedureReturn GetSysColor_(#COLOR_BTNFACE)
EndProcedure
Procedure StartFlickerFix(Window)
; LockWindowUpdate() seems to be better for us than #WM_SETREDRAW: it does weird things on Windows 8 (try with 100 recent file list, the main IDE flicker when loading a new file)
LockWindowUpdate_(WindowID(Window))
EndProcedure
Procedure StopFlickerFix(Window, DoRedraw)
LockWindowUpdate_(#Null)
EndProcedure
Procedure StartGadgetFlickerFix(Gadget)
SendMessage_(GadgetID(Gadget), #WM_SETREDRAW, #False, 0)
EndProcedure
Procedure StopGadgetFlickerFix(Gadget)
SendMessage_(GadgetID(Gadget), #WM_SETREDRAW, #True, 0)
InvalidateRect_(GadgetID(Gadget), #Null, #True)
EndProcedure
Structure AdditionalStreamInfo_2 ; _2 to not collide with the richedit one! (in case richedit is used)
Action.i ; 0=streamin 1=streamout
Buffer.i
Length.i
EndStructure
Procedure RichEdit_StreamCallback_2(*StreamInfo.AdditionalStreamInfo_2, *Buffer, BufferLength.l, *Result.LONG)
Result = 0
If *StreamInfo\Action = 0 ; stream in
If BufferLength < *StreamInfo\Length
CopyMemory(*StreamInfo\Buffer, *Buffer, BufferLength)
*StreamInfo\Buffer + BufferLength
*StreamInfo\Length - BufferLength
*Result\l = BufferLength
Else
CopyMemory(*StreamInfo\Buffer, *Buffer, *StreamInfo\Length)
*Result\l = *StreamInfo\Length
*StreamInfo\Length = 0
EndIf
Else ; stream out
If BufferLength < *StreamInfo\Length
CopyMemory(*Buffer, *StreamInfo\Buffer, BufferLength)
*StreamInfo\Buffer + BufferLength
*StreamInfo\Length - BufferLength
*Result\l = BufferLength
Else
CopyMemory(*Buffer, *StreamInfo\Buffer, *StreamInfo\Length)
*Result\l = *StreamInfo\Length
*StreamInfo\Length = 0
EndIf
EndIf
ProcedureReturn Result
EndProcedure
; windows only
Procedure SetCodePage(Gadget)
; Try to find out if the locale uses an ANSI codepage by default
linfo.s = Space(6)
linfo_len = GetLocaleInfo_(GetSystemDefaultLCID_(), #LOCALE_IDEFAULTANSICODEPAGE, @linfo, 6)
If linfo_len>0
; If default system ansi code page is not zero, use the ANSI code page
;
If Val(Mid(linfo, 1, linfo_len))<>0
SendMessage_(GadgetID(Gadget), #EM_SETTEXTMODE, #TM_SINGLECODEPAGE, 0)
EndIf
EndIf
EndProcedure
#HDF_BITMAP_ON_RIGHT = $1000
#HDI_IMAGE = $0020
#HDF_SORTUP = $0400 ; WinXP+ with skins only, but that's enough
#HDF_SORTDOWN = $0200
Procedure SetSortArrow_NoTheme(Gadget, Column, Direction)
Static UpImage, DownImage
If UpImage = 0
UpImage = CreateImage(#PB_Any, 10, 10)
DownImage = CreateImage(#PB_Any, 10, 10)
If StartDrawing(ImageOutput(DownImage))
Box(0, 0, 10, 10, GetSysColor_(#COLOR_BTNFACE))
Restore SortArrowImage
For y = 0 To 9
For x = 0 To 9
Read.b Pixel
If Pixel
Plot(x, y, $000000)
EndIf
Next x
Next y
StopDrawing()
EndIf
If StartDrawing(ImageOutput(UpImage))
Box(0, 0, 10, 10, GetSysColor_(#COLOR_BTNFACE))
Restore SortArrowImage
For y = 9 To 0 Step -1
For x = 0 To 9
Read.b Pixel
If Pixel
Plot(x, y, $000000)
EndIf
Next x
Next y
StopDrawing()
EndIf
EndIf
Protected item.HD_ITEM, Header, Columns, Text$, i
Header = SendMessage_(GadgetID(Gadget), #LVM_GETHEADER, 0, 0)
If Header
Columns = SendMessage_(Header, #HDM_GETITEMCOUNT, 0, 0)
For i = 0 To Columns-1
Text$ = GetGadgetItemText(Gadget, -1, i)
If Column = i
item\mask = #HDI_BITMAP | #HDI_FORMAT | #HDI_TEXT
item\fmt = #HDF_BITMAP | #HDF_BITMAP_ON_RIGHT | #HDF_STRING
item\pszText = @Text$
item\cchTextMax = Len(Text$)
If Direction = 1
item\hbm = ImageID(UpImage)
Else
item\hbm = ImageID(DownImage)
EndIf
Else
item\mask = #HDI_FORMAT | #HDI_TEXT
item\fmt = #HDF_STRING
item\pszText = @Text$
item\cchTextMax = Len(Text$)
item\hbm = 0
EndIf
SendMessage_(Header, #HDM_SETITEM, i, @item)
Next i
EndIf
EndProcedure
DataSection
SortArrowImage:
Data.b 0,0,0,0,0,0,0,0,0,0
Data.b 0,0,0,0,0,0,0,0,0,0
Data.b 0,0,0,0,0,0,0,0,0,0
Data.b 1,1,1,1,1,1,1,1,1,1
Data.b 0,1,1,1,1,1,1,1,1,0
Data.b 0,0,1,1,1,1,1,1,0,0
Data.b 0,0,0,1,1,1,1,0,0,0
Data.b 0,0,0,0,1,1,0,0,0,0
Data.b 0,0,0,0,0,0,0,0,0,0
Data.b 0,0,0,0,0,0,0,0,0,0
EndDataSection
Procedure SetSortArrow_Theme(Gadget, Column, Direction)
Header = SendMessage_(GadgetID(Gadget), #LVM_GETHEADER, 0, 0)
If Header
Columns = SendMessage_(Header, #HDM_GETITEMCOUNT, 0, 0)
item.HD_ITEM\mask = #HDI_FORMAT
For i = 0 To Columns-1
If Column = i
If Direction = 1
item\fmt = #HDF_LEFT|#HDF_STRING|#HDF_SORTUP
Else
item\fmt = #HDF_LEFT|#HDF_STRING|#HDF_SORTDOWN
EndIf
Else
item\fmt = #HDF_LEFT|#HDF_STRING
EndIf
SendMessage_(Header, #HDM_SETITEM, i, @item)
Next i
EndIf
EndProcedure
; Windows only
;
; Column: -1 to reset
; Direction: 1=ascending, -1=descending
;
Procedure SetSortArrow(Gadget, Column, Direction)
Protected IsThemed
; PB_Gadget_GetCommonControlsVersion() is called by ListIconGadget, so this is ok
;
CompilerIf #PB_Compiler_Processor = #PB_Processor_x86
!extrn _PB_Gadget_IsThemed
!mov eax, [_PB_Gadget_IsThemed]
!mov [p.v_IsThemed], eax
CompilerElse
!extrn PB_Gadget_IsThemed
!mov rax, qword 0
!mov eax, dword [PB_Gadget_IsThemed]
!mov [p.v_IsThemed], rax
CompilerEndIf
If IsThemed
SetSortArrow_Theme(Gadget, Column, Direction)
Else
SetSortArrow_NoTheme(Gadget, Column, Direction)
EndIf
EndProcedure
Procedure ZeroMemory(*Buffer, Size)
RtlZeroMemory_(*Buffer, Size)
EndProcedure
Procedure.s GetExplorerName()
ProcedureReturn "Explorer"
EndProcedure
Procedure ShowExplorerDirectory(Directory$)
ShellExecute_(#Null, @"explore", @Directory$, #Null, #Null, #SW_SHOWNORMAL)
EndProcedure
Procedure ModifierKeyPressed(Key)
Select Key
Case #PB_Shortcut_Shift: vKey = #VK_SHIFT
Case #PB_Shortcut_Control: vKey = #VK_CONTROL
Case #PB_Shortcut_Alt: vKey = #VK_MENU
EndSelect
If GetAsyncKeyState_(vKey) & $8000
ProcedureReturn #True
Else
ProcedureReturn #False
EndIf
EndProcedure
Procedure OpenWebBrowser(Url$)
ShellExecute_(#Null, @"open", @Url$, @"", @"", #SW_SHOWNORMAL)
EndProcedure
CompilerEndIf