Explore Enterprise Education Gitee Premium Gitee AI AI teammates
Fetch the repository succeeded.
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
Already have an account? Sign in
文件
devel
Branches (25)
devel
spiderbasic-3.10
v6.21
v6.20
spiderbasic-3.02
qt
v6.12
spiderbasic-3.01
enablejs-ignore-formatting
master
spiderbasic-3.00
webview-tool
v6.11
v6.10
v6.04
spiderbasic-2.51
v6.03
editor-fix-3
editor-slow-fix2
editor-slow-fix
devel
Branches (25)
devel
spiderbasic-3.10
v6.21
v6.20
spiderbasic-3.02
qt
v6.12
spiderbasic-3.01
enablejs-ignore-formatting
master
spiderbasic-3.00
webview-tool
v6.11
v6.10
v6.04
spiderbasic-2.51
v6.03
editor-fix-3
editor-slow-fix2
editor-slow-fix
Clone or Download
Clone/Download
Prompt
To download the code, please copy the following command and execute it in the terminal
To ensure that your submitted code identity is correctly recognized by Gitee, please execute the following command.
When using the SSH protocol for the first time to clone or push code, follow the prompts below to complete the SSH configuration.
1 Generate RSA keys.
2 Obtain the content of the RSA public key and configure it in SSH Public Keys
To use SVN on Gitee, please visit the usage guide
When using the HTTPS protocol, the command line will prompt for account and password verification as follows. For security reasons, Gitee recommends configure and use personal access tokens instead of login passwords for cloning, pushing, and other operations.
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # Private Token
devel
Branches (25)
devel
spiderbasic-3.10
v6.21
v6.20
spiderbasic-3.02
qt
v6.12
spiderbasic-3.01
enablejs-ignore-formatting
master
spiderbasic-3.00
webview-tool
v6.11
v6.10
v6.04
spiderbasic-2.51
v6.03
editor-fix-3
editor-slow-fix2
editor-slow-fix
purebasic
/
PureBasicIDE
/
WindowsExtensions.pb
purebasic
/
PureBasicIDE
/
WindowsExtensions.pb
WindowsExtensions.pb 10.98 KB
Copy Edit Raw Blame History
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
; --------------------------------------------------------------------------------------------
; 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 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
#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
CompilerIf #PB_Compiler_Backend = #PB_Backend_C
Import ""
PB_Gadget_IsThemed.l
EndImport
CompilerEndIf
; 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_Backend = #PB_Backend_C
IsThemed = PB_Gadget_IsThemed
CompilerElseIf #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 ShowExplorerFile(File$)
RunProgram("explorer.exe", "/SELECT," + #DQUOTE$ + File$ + #DQUOTE,ドル "")
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
Procedure GetListViewScroll(Gadget)
ProcedureReturn SendMessage_(GadgetID(Gadget), #LB_GETTOPINDEX, 0, 0)
EndProcedure
Procedure SetListViewScroll(Gadget, Position)
SendMessage_(GadgetID(Gadget), #LB_SETTOPINDEX, Position, 0)
EndProcedure
CompilerEndIf
Loading...
Report
Report success
We will send you the feedback within 2 working days through the letter!
Please fill in the reason for the report carefully. Provide as detailed a description as possible.
Please select a report type
Cancel
Send
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

About

PureBasic是由Fantaisie Software所开发的商用BASIC程序语言及集成开发环境。特点是语法简单直接,不依赖运行时库,因此能编译出相当小巧的程序,包含命令列或GUI执行档、DLL等。而且不使用各系统的API,所以有高度的跨平台特性,支持Windows 32/64位元、Linux 32/64位元、Mac OS X、Amiga。
Cancel

Releases

No release

Contributors

All

Activities

can not load any more
Edit
About
Homepage
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/PureBasic/purebasic.git
git@gitee.com:PureBasic/purebasic.git
PureBasic
purebasic
PureBASIC
devel
Going to Help Center

Search

Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register

AltStyle によって変換されたページ (->オリジナル) /