update on thinclient

This commit is contained in:
Michael H.G. Schmidt 2024-02-01 09:16:43 +01:00
parent 191bbf08b1
commit 54b42edb8d
2 changed files with 30 additions and 4 deletions

View File

@ -4,10 +4,15 @@
; LICENSE : GPL ; LICENSE : GPL
; AUTHOR : Michael H.G. Schmidt ; AUTHOR : Michael H.G. Schmidt
; EMAIL : michael@schmidt2.de ; EMAIL : michael@schmidt2.de
; DATE : 20240130 ; DATE : 20240201
; ------------------------------------------------------------ ; ------------------------------------------------------------
; ;
; preparations to use native "system" command ...
ImportC "msvcrt.lib"
system(str.p-ascii)
EndImport
; Get system drive ; Get system drive
Global SYS$=GetEnvironmentVariable("SystemDrive") Global SYS$=GetEnvironmentVariable("SystemDrive")
@ -21,6 +26,15 @@ Procedure StartVNC()
dummy=RunProgram(SYS$ + "\tools\tvnviewer.exe") dummy=RunProgram(SYS$ + "\tools\tvnviewer.exe")
EndProcedure EndProcedure
Procedure Settings()
; start SYSTEM settings ...
dummy=system("start ms-settings:")
EndProcedure
Procedure Poweroff()
; Poweroff ...
dummy=system("shutdown /s /f /t 0 /d p:0:0")
EndProcedure
; Button handler procedure ; Button handler procedure
Procedure ButtonHandler() Procedure ButtonHandler()
@ -28,10 +42,12 @@ Procedure ButtonHandler()
Select EventGadget() Select EventGadget()
Case 0 Case 0
StartRDP() StartRDP()
Case 1 Case 1
StartVNC() StartVNC()
Case 2
Settings()
Case 3
Poweroff()
EndSelect EndSelect
EndProcedure EndProcedure
@ -62,8 +78,11 @@ ButtonH=H*0.1
BX0=X0 - (ButtonW*2 + GAP)/2 BX0=X0 - (ButtonW*2 + GAP)/2
BX1=BX0 + ButtonW + GAP BX1=BX0 + ButtonW + GAP
BX2=W/100
BX3=W - ButtonW - W/100
BY=H/2-ButtonH/2 BY=H/2-ButtonH/2
BY2=H-ButtonH - ButtonH/10
; use a bigger font the buttons ; use a bigger font the buttons
LoadFont(0, "MS Shell Dlg", 16) LoadFont(0, "MS Shell Dlg", 16)
@ -76,10 +95,17 @@ BindGadgetEvent(0, @ButtonHandler())
ButtonGadget(1, BX1, BY, ButtonW, ButtonH, "VNC viewer", #PB_Button_MultiLine) ButtonGadget(1, BX1, BY, ButtonW, ButtonH, "VNC viewer", #PB_Button_MultiLine)
BindGadgetEvent(1, @ButtonHandler()) BindGadgetEvent(1, @ButtonHandler())
ButtonGadget(2, BX2, BY2, ButtonW, ButtonH, "Settings", #PB_Button_MultiLine)
BindGadgetEvent(2, @ButtonHandler())
ButtonGadget(3, BX3, BY2, ButtonW, ButtonH, "Poweroff", #PB_Button_MultiLine)
BindGadgetEvent(3, @ButtonHandler())
; MAIN LOOP ; MAIN LOOP
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
; IDE Options = PureBasic 5.73 LTS (Windows - x64) ; IDE Options = PureBasic 5.73 LTS (Windows - x64)
; CursorPosition = 22 ; CursorPosition = 69
; FirstLine = 60
; Folding = - ; Folding = -
; EnableXP ; EnableXP

Binary file not shown.