Hi Chris,
this seems to work just fine on a Win11/Xeon box, and as you documented: showing the Win10 GUI emulation.
ProGUI V3 Alpha 3 Ready for testing!
Re: ProGUI V3 Alpha 3 Ready for testing!
Using PureBasic 6.21 on:
- Win-11 on x64 XEON
- Mint Linux on x64 i3 and on x64 i5
- MacOS Monterey on x64 MacBook Pro
- Various Raspberry Pi's
Re: ProGUI V3 Alpha 3 Ready for testing!
That's excellent, thanks Skipper!Skipper wrote: Fri Jan 09, 2026 10:14 am Hi Chris,
this seems to work just fine on a Win11/Xeon box, and as you documented: showing the Win10 GUI emulation.
ProGUI - Professional Graphical User Interface Library - http://www.progui.co.uk
Re: ProGUI V3 Alpha 3 Ready for testing!
Kind of wondering how best to solve an ease of use case. ProGUI V1xx used ToolBarImageButtonEx(ButtonID.l, Text$, *NormalImageID, *HotImageID, *DisabledImageID, Style.l). Where you would manually load in your images. Now it's all CSS .. ToolbarAddButton(name.s, text.s), Toolbar has a class and each button has a name so you edit the CSS for loading in an image...
ProGUI - Professional Graphical User Interface Library - http://www.progui.co.uk
Re: ProGUI V3 Alpha 3 Ready for testing!
Hi Chris,
Tested here (on Win 11 x64); Looked great, was smooth & reactive to all resizing I tried, great to see
Is the UI layout logic your own, or is there some example PB code on the forum for it?
Tested here (on Win 11 x64); Looked great, was smooth & reactive to all resizing I tried, great to see
Is the UI layout logic your own, or is there some example PB code on the forum for it?
Re: ProGUI V3 Alpha 3 Ready for testing!
That's great to hear pjay!pjay wrote: Mon Jan 12, 2026 9:32 am Hi Chris,
Tested here (on Win 11 x64); Looked great, was smooth & reactive to all resizing I tried, great to see
Is the UI layout logic your own, or is there some example PB code on the forum for it?
ProGUI - Professional Graphical User Interface Library - http://www.progui.co.uk
Re: ProGUI V3 Alpha 3 Ready for testing!
Hi guys, got the little exe app icon working in the top left of the Titlebar widget now (for full window skinning). There's a new LoadImgResource(Path.s, *lpName, *lpType, Flags = #Null) command in the GFX API which will load an icon into an img from an exe/dll resource (group icons working only at the moment) - it mimicks the Win32 commands (as this will be Windows only). So an empty Path will use the the current process exe (Hmodule). And the CSS skin background property "url()" function now recognizes a "url('exe-icon')" path which will either use what ever exe icon you've specified in PB's compiler options or the default app icon from 'user32.dll'. So the Titlebar widget CSS currently looks like this:
Code: Select all
SkinSetValue("exe-icon", "", "", "background", "url('exe-icon') no-repeat center")
ProGUI - Professional Graphical User Interface Library - http://www.progui.co.uk


