Earlier quoted context omitted.
The same for a MS-DOS Clipper [1] application written 30 years ago. Sorry, with all due respect to the wxWidgets contributors, aesthetically wxWidgets (like many other UI libs) is not for 2022. [1] https://en.wikipedia.org/wiki/Clipper_(programming_language)
But it just wraps the native controls...? You're effectively saying that native controls are not for 2022...
WxWidgets 3.2
41–50 of 84 posts
Re: WxWidgets 3.2
#42wxWidgets are a perfect choice if you want cross-platform native controls. Just a reminder, Qt doesn't use native controls, it just emulates the native look and feel. Besides wxWidgets I know only IUP that uses system native controls (though Cocoa is a work in progress), and IUP deals with just UI, wx is like a Qt, a lot more.
Re: WxWidgets 3.2
#43WxWidgets is nice, used it in the past at one ocasion. It's just that I don't have any desire to touch anything C/C++. If it had a Java wrapper so I can use it with Clojure, it would be another topic.
Re: WxWidgets 3.2
#44Earlier quoted context omitted.
LGPL stipulates that you should be able to link against your own version of the LGPL library you're integrating, that's to say a user should be able to run an app with their own version of the LGPL library if they want to. For some app distribution channels, like with iOS apps, that can be difficult to impossible to actually implement given the control Apple has over app packaging and distribution. Otherwise, you sho…
Would it be good enough on platforms like iOS to dynamically link, include the DLLs in the bundle, and tell people they are on their own if they want to switch them out? You theoretically can.
You also have to offer them source code, or just ship it along with.
Re: WxWidgets 3.2
#45Earlier quoted context omitted.
But it just wraps the native controls...? You're effectively saying that native controls are not for 2022...
A serious question: what are native controls on Windows? Is the Windows XP era where each control is its own HWND (and usually drawn with GDI+)? Is it Windows 7 era where the drawing is Direct2D? Windows 8 where the elements of the app come together with DirectComposition? Or maybe Windows 10 style which is an evolution of UWP (now rebranded WinUI), with drawing in Win2D?
Re: WxWidgets 3.2
#46wxWidgets has a sublime idea: an api that is just a wrapper over native controls. For cross platform frameworks it is fast and light. The very opposite of bloatware. But it also has a terrible flaw: its heavy-templated C++ api, hard to port to other languages. I don't want to get stuck on C++. I want to use Go and Rust. And all the wxWidgets ports to those languages suck, big time. Show me a solid wxWidgets for Rust…
This isn't really a fault in WxWidgets. It's not like there are any good Go or Rust UI toolkits.
GTK-rs is decent for rust on Linux. Not sure how it does on other platforms.
Re: WxWidgets 3.2
#47Re: WxWidgets 3.2
#48That said, I find myself wishing that they'd have a page of screenshots and code snippets for each components, like web development frameworks typically have, for example: https://www.primefaces.org/primevue/calendar
Of course, you cannot run those components live, but might at least have screenshots of each component on each supported platform.
Re: WxWidgets 3.2
#49Earlier quoted context omitted.
This isn't really a fault in WxWidgets. It's not like there are any good Go or Rust UI toolkits.
>> This isn't really a fault in WxWidgets. It's not like there are any good Go or Rust UI toolkits. GTK-rs is decent for rust on Linux. Not sure how it does on other platforms.
I'm delighted to hear Rust programmers have got something worth using.
Re: WxWidgets 3.2
#50Earlier quoted context omitted.
But it just wraps the native controls...? You're effectively saying that native controls are not for 2022...
A serious question: what are native controls on Windows? Is the Windows XP era where each control is its own HWND (and usually drawn with GDI+)? Is it Windows 7 era where the drawing is Direct2D? Windows 8 where the elements of the app come together with DirectComposition? Or maybe Windows 10 style which is an evolution of UWP (now rebranded WinUI), with drawing in Win2D?
Of course since they come with the OS you might as well use those instead of bundling a separate UI toolkit, but IMO if you consider them as native as the HWND stuff then might as well consider everything native - AFAIK Windows even comes with a shared Electron/Chromium instance applications can use so in that case you could say anything that uses Electron is native on Windows :-P.