|
| 1 | +; Includes |
| 2 | +;---------- |
| 3 | +#include-once |
| 4 | +#include <StaticConstants.au3> |
| 5 | +#include <GUIConstantsEx.au3> |
| 6 | +#include <ProgressConstants.au3> |
| 7 | +#include <WindowsConstants.au3> |
| 8 | +#include <SendMessage.au3> |
| 9 | + |
| 10 | + |
| 11 | + |
| 12 | +#cs |
| 13 | +=============================================================================================================================== |
| 14 | + Title ...............: _StatusSplashWindow (GitHub: https://github.com/htcfreek/AutoIt-Scripts) |
| 15 | + Version .............: 1.0 |
| 16 | + License .............: GNU LGPLv3 |
| 17 | + AutoIt Version ......: 3.3.14.5+ |
| 18 | + Language ............: English |
| 19 | + Description .........: Shows a custom status window with progress, desctiprion and some nice control features. |
| 20 | + Author ..............: htcfreek (Heiko) - https://github.com/htcfreek [original] |
| 21 | + Modified ............: |
| 22 | + Required includes ...: |
| 23 | + Dll .................: |
| 24 | +=============================================================================================================================== |
| 25 | +
|
| 26 | +CHANGELOG: |
| 27 | + 2022-12-26 (v1.0) |
| 28 | + New: Initial release |
| 29 | +
|
| 30 | +#ce |
| 31 | + |
| 32 | + |
| 33 | + |
| 34 | +; Global constants |
| 35 | +; ----------------- |
| 36 | +Global Const $StatusSplashWindow_Action_Show = 0 |
| 37 | +Global Const $StatusSplashWindow_Action_Update = 1 |
| 38 | +Global Const $StatusSplashWindow_Action_HideBar = 2 |
| 39 | +Global Const $StatusSplashWindow_Action_DeleteWindow = -1 |
| 40 | + |
| 41 | +Global Const $StatusSplashWindow_ProgressType_Green = 1 |
| 42 | +Global Const $StatusSplashWindow_ProgressType_Red = 2 |
| 43 | +Global Const $StatusSplashWindow_ProgressType_Yellow = 3 |
| 44 | +Global Const $StatusSplashWindow_ProgressType_Marquee = 4 |
| 45 | + |
| 46 | +Global Const $StatusSplashWindow_WindowPos_Center = -1 |
| 47 | +Global Const $StatusSplashWindow_WindowPos_Top = 0 |
| 48 | + |
| 49 | + |
| 50 | + |
| 51 | +; Function |
| 52 | +; --------- |
| 53 | +Func _StatusSplashWindow($iAction, $sTxtMain = "", $iProgressType = "", $iProgressPercent = "", $sSplashWindowTitle = "", $iWindowPosition = $StatusSplashWindow_WindowPos_Top) |
| 54 | + ; Name ...............: _CustomMarqueeProgressWindow |
| 55 | + ; Author .............: htcfreek (Heiko) - https://github.com/htcfreek |
| 56 | + ; Input parameter ....: $iAction = Action to do with the window or its controls. (Possible values: $StatusSplashWindow_Action_Show|$StatusSplashWindow_Action_Update|$StatusSplashWindow_Action_HideBar|$StatusSplashWindow_Action_DeleteWindow) |
| 57 | + ; [$sTxtMain = ""] = Information / description text shown to the user. |
| 58 | + ; [$iProgressType = ""] = Type of the progress bar. (Possible values: $StatusSplashWindow_ProgressType_Green|$StatusSplashWindow_ProgressType_Red|$StatusSplashWindow_ProgressType_Yellow|$StatusSplashWindow_ProgressType_Marquee) |
| 59 | + ; [$sSplashWindowTitle = ""] = Titel of the window. (Required when calling the function for the first time.) |
| 60 | + ; [$iWindowPosition = $StatusSplashWindow_WindowPos_Top] = Position of the window. (Required when calling the function for the first time.; Possible values: $StatusSplashWindow_WindowPos_Center|$StatusSplashWindow_WindowPos_Top) |
| 61 | + ; Output .............: none |
| 62 | + |
| 63 | + |
| 64 | + ; Static Gui variables |
| 65 | + Static $hProgressWindow |
| 66 | + Static $idProgress |
| 67 | + Static $idLabel |
| 68 | + |
| 69 | + |
| 70 | + ; Create Gui |
| 71 | + If Not ($hProgressWindow) Then |
| 72 | + $hProgressWindow = GUICreate($sSplashWindowTitle, 400, 80, -1, $iWindowPosition, BitOR($WS_POPUP, $WS_CAPTION, $WS_DISABLED), BitOR($WS_EX_TOPMOST, $WS_EX_TOOLWINDOW)) |
| 73 | + GUISetFont(11, 400, 0, "Arial") |
| 74 | + ;-- |
| 75 | + $idLabel = GUICtrlCreateLabel($sTxtMain, 20, 10, 360, 40, $SS_CENTER) |
| 76 | + ;-- |
| 77 | + if ($iProgressType = "" OR $iProgressType = $StatusSplashWindow_ProgressType_Marquee) Then |
| 78 | + $idProgress = GUICtrlCreateProgress(20, 50, 360, 20, $PBS_MARQUEE, -1) |
| 79 | + GUICtrlSendMsg($idProgress, $PBM_SETMARQUEE, 1, 50) ; Send the message $PBM_SETMARQUEE and wParam of 1 to start the scrolling marquee. |
| 80 | + Else |
| 81 | + $idProgress = GUICtrlCreateProgress(20, 50, 360, 20, 1, -1) |
| 82 | + GUICtrlSetData($idProgress, $iProgressPercent) |
| 83 | + EndIf |
| 84 | + EndIf |
| 85 | + |
| 86 | + ;Show/Change/Delete Gui |
| 87 | + Switch $iAction |
| 88 | + Case -1 |
| 89 | + ; Delet Gui |
| 90 | + GUIDelete($hProgressWindow) |
| 91 | + $hProgressWindow = Null |
| 92 | + Case 0 To 2 |
| 93 | + ; Show Gui |
| 94 | + GUISetState(@SW_SHOW) |
| 95 | + Switch $iAction |
| 96 | + Case 0 |
| 97 | + ; Show progress |
| 98 | + GUICtrlSetState($idProgress, $GUI_SHOW) |
| 99 | + Case 1 |
| 100 | + ; Update properties |
| 101 | + if ($sTxtMain <> "") Then |
| 102 | + ; Set text |
| 103 | + GUICtrlSetData($idLabel, $sTxtMain) |
| 104 | + EndIf |
| 105 | + if ($iProgressType = $StatusSplashWindow_ProgressType_Green AND $iProgressPercent >= 0) Then |
| 106 | + ; Set green progress bar |
| 107 | + GUICtrlSendMsg($idProgress, $PBM_SETMARQUEE, 0, 0) |
| 108 | + GUICtrlSetStyle($idProgress, -1) |
| 109 | + _SendMessage(GUICtrlGetHandle($idProgress), $PBM_SETSTATE, 1, 0) |
| 110 | + GUICtrlSetData($idProgress, $iProgressPercent) |
| 111 | + ElseIf ($iProgressType = $StatusSplashWindow_ProgressType_Marquee) Then |
| 112 | + ; Set marquee progress |
| 113 | + _SendMessage(GUICtrlGetHandle($idProgress), $PBM_SETSTATE, 1, 0) |
| 114 | + GUICtrlSetStyle($idProgress, $PBS_MARQUEE) |
| 115 | + GUICtrlSendMsg($idProgress, $PBM_SETMARQUEE, 1, 50) |
| 116 | + ElseIf ($iProgressType <> "" AND $iProgressPercent >= 0) Then |
| 117 | + ; Set colored progress |
| 118 | + GUICtrlSendMsg($idProgress, $PBM_SETMARQUEE, 0, 50) |
| 119 | + GUICtrlSetStyle($idProgress, 1) |
| 120 | + _SendMessage(GUICtrlGetHandle($idProgress), $PBM_SETSTATE, 1, 0) |
| 121 | + GUICtrlSetData($idProgress, $iProgressPercent) |
| 122 | + _SendMessage(GUICtrlGetHandle($idProgress), $PBM_SETSTATE, $iProgressType, 0) |
| 123 | + EndIf |
| 124 | + Case 2 |
| 125 | + ; Hide progress |
| 126 | + GUICtrlSetState($idProgress, $GUI_HIDE) |
| 127 | + EndSwitch |
| 128 | + EndSwitch |
| 129 | +EndFunc ;==>_CustomMarqueeProgressWindow |
0 commit comments