diff --git a/source/internet_free_icon.ico b/source/internet_free_icon.ico new file mode 100644 index 0000000..720852f Binary files /dev/null and b/source/internet_free_icon.ico differ diff --git a/source/minibrowser.pb b/source/minibrowser.pb index 848e53a..db39ebd 100644 --- a/source/minibrowser.pb +++ b/source/minibrowser.pb @@ -9,11 +9,15 @@ ; ------------------------------------------------------------ ; -Global StartPage$ = "http://Bing.de" + +; VARIABLES +Global Security=#True +Global DefaultStartPage$="http://Bing.de" +Global StartPage$=DefaultStartPage$ Procedure ResizeWebWindow() - ResizeGadget(10, #PB_Ignore, #PB_Ignore, WindowWidth(0), WindowHeight(0)-20) - ResizeGadget(4, #PB_Ignore, #PB_Ignore, WindowWidth(0)-200, #PB_Ignore) + ResizeGadget(10, #PB_Ignore, #PB_Ignore, WindowWidth(0), WindowHeight(0)-40) + ResizeGadget(4, #PB_Ignore, #PB_Ignore, WindowWidth(0)-220, #PB_Ignore) ResizeGadget(5, WindowWidth(0)-30, #PB_Ignore, #PB_Ignore, #PB_Ignore) ResizeGadget(6, #PB_Ignore, #PB_Ignore, WindowWidth(0), #PB_Ignore) EndProcedure @@ -24,28 +28,86 @@ Procedure JavaScriptErrorMessages(WebGadget,MyState) MyWebGadget\put_Silent(MyState) EndProcedure -If OpenWindow(0, 100, 200, 800, 600, "MiniBrowser", #PB_Window_MinimizeGadget | #PB_Window_MaximizeGadget | #PB_Window_SizeGadget) +Procedure toggleButton() + BTN$ = GetGadgetText(1) + + If ( BTN$ = "Secure" ) + SetGadgetText(1, "INSECURE") + Security = #False + EndIf + + If ( BTN$ = "INSECURE" ) + SetGadgetText(1, "Secure") + Security = #True + EndIf + + JavaScriptErrorMessages(10,Security) +EndProcedure + +Procedure Usage() + MessageRequester("MiniBrowser", + "usage: minibrowser < [/? | /I] [ URL ]" + Chr(13) + " URL: webpage To show on start" + Chr(13) + " /I = ignore security (SSL)" + Chr(13) + " /? = show help", + #PB_MessageRequester_Info) + End 99 +EndProcedure + +; get arguments / check commandline ... +If ( CountProgramParameters() = 0 ) + StartPage$ = DefaultStartPage$ +EndIf + +If ( CountProgramParameters() >= 1 ) + If ( UCase(ProgramParameter(0)) = "/?" ) + Usage() + ElseIf (UCase(ProgramParameter(0)) = "/I") + StartPage$ = DefaultStartPage$ + Security = #False + Else + StartPage$ = ProgramParameter(0) + EndIf +EndIf + +If ( CountProgramParameters() = 2 ) + StartPage$ = ProgramParameter(1) +EndIf + +; +; MAIN +; + +If OpenWindow(0, 100, 200, 800, 600, "MiniBrowser", #PB_Window_MinimizeGadget | #PB_Window_MaximizeGadget | #PB_Window_SizeGadget) + LoadFont(1,"Courier",10, #PB_Font_Bold) SetGadgetFont(#PB_Default, FontID(1)) - ButtonGadget(1, 0, 3, 60, 25, "Insecure") + If ( Security ) + ButtonGadget(1, 0, 3, 80, 25, "Secure") + Else + ButtonGadget(1, 0, 3, 80, 25, "INSECURE") + EndIf SetGadgetFont(#PB_Default, #PB_Default) - - ButtonGadget(2, 60, 3, 50, 25, "Back") - ButtonGadget(3, 110, 3, 50, 25, "Stop") - StringGadget(4, 165, 5, 0, 20, StartPage$) + ButtonGadget(2, 80, 3, 50, 25, "Back") + ButtonGadget(3, 130, 3, 50, 25, "Stop") + + StringGadget(4, 185, 5, 0, 20, StartPage$) ButtonGadget(5, 0, 3, 25, 25, "Go") FrameGadget(6, 0, 30, 0, 2, "", 2) ; Nice little separator - WebGadget(10, 1, 37, 1278, 732, StartPage$) + WebGadget(10, 1, 37, 1278, 732,"") AddKeyboardShortcut(0, #PB_Shortcut_Return, 0) - JavaScriptErrorMessages(10,1) ; Turn off Java Script Error Messages - + ; Use bindevent() to have a realtime window resize BindEvent(#PB_Event_SizeWindow, @ResizeWebWindow()) ResizeWebWindow() ; Adjust the gadget to the current window size - + + ; Use bindevent() to toggle the security button + BindGadgetEvent(1, @toggleButton()) + + SetGadgetState(10, #PB_Web_Refresh) + JavaScriptErrorMessages(10,Security) ; Turn on/off Java Script Error Messages + SetGadgetText(10, StartPage$) + Repeat Event = WaitWindowEvent() @@ -53,18 +115,15 @@ If OpenWindow(0, 100, 200, 800, 600, "MiniBrowser", #PB_Window_MinimizeGadget | Case #PB_Event_Gadget Select EventGadget() Case 1 - JavaScriptErrorMessages(10,#False) SetGadgetState(10, #PB_Web_Refresh) Case 2 SetGadgetState(10, #PB_Web_Back) Case 3 SetGadgetState(10, #PB_Web_Stop) Case 5 - JavaScriptErrorMessages(10,#True) SetGadgetText(10, GetGadgetText(4)) EndSelect Case #PB_Event_Menu ; We only have one shortcut - JavaScriptErrorMessages(10,#True) SetGadgetText(10, GetGadgetText(4)) EndSelect @@ -72,11 +131,11 @@ If OpenWindow(0, 100, 200, 800, 600, "MiniBrowser", #PB_Window_MinimizeGadget | EndIf - ; IDE Options = PureBasic 5.73 LTS (Windows - x64) -; CursorPosition = 12 -; FirstLine = 1 +; CursorPosition = 105 +; FirstLine = 79 ; Folding = - ; EnableXP +; UseIcon = internet_free_icon.ico ; Executable = ..\tools\minibrowser.exe ; CompileSourceDirectory \ No newline at end of file diff --git a/source/prompt-user.pb b/source/prompt-user.pb index dde7e9b..d128741 100644 --- a/source/prompt-user.pb +++ b/source/prompt-user.pb @@ -4,7 +4,7 @@ ; LICENSE : GPL ; AUTHOR : Michael H.G. Schmidt ; EMAIL : michael@schmidt2.de -; DATE : 20221224 +; DATE : 20230214 ; ------------------------------------------------------------ ; @@ -27,8 +27,11 @@ EndIf ; get arguments ... message$ = ProgramParameter(0) -MessageRequester("System Message", message$, #PB_MessageRequester_Info| #PB_MessageRequester_Info) +MessageRequester("System Message", message$, #PB_MessageRequester_Info) +CloseConsole() + ; IDE Options = PureBasic 5.73 LTS (Windows - x64) -; CursorPosition = 30 -; EnableXP \ No newline at end of file +; CursorPosition = 6 +; EnableXP +; CompileSourceDirectory \ No newline at end of file diff --git a/tools/minibrowser.exe b/tools/minibrowser.exe index f04ae04..29feb30 100644 Binary files a/tools/minibrowser.exe and b/tools/minibrowser.exe differ