One Key Difference Between WxWidgets And Qt Or GTK Is That ...

Hacker News new | past | comments | ask | show | jobs | submit login
ZuLuuuuuu on April 15, 2021 | parent | context | favorite | on: wxWidgets 3.1.5 One key difference between wxWidgets and Qt or GTK is that wxWidgets, as far as I know, uses native controls to create the UI, unlike Qt or GTK which draw everything themselves. Qt is really good at imitating a native feeling but wxWidgets provides a real native UX.

Having said that, for my Python projects, I am currently using Qt via PySide2 since that one worked without any problems with a simple pip installation while the other 2 gave some errors (I tried them about 2 years ago, maybe they work better now).

Another reason I currently use Qt is because I needed to do a lot of drawing and interact with these drawings on a canvas and Qt has QGraphicsView widget which is a really capable canvas widget where you can easily do transformations, interactivity with good performance and it also has a good documentation. GTK didn't have such a widget out of the box, I didn't look at wxWidgets, though, maybe that one has.

Kelteseth on April 15, 2021 | next [–] > wxWidgets, [...], uses native controls

But only the old school Windows style right? I still don't get the argument because Windows itself now has like 3 different styles for their system apps themselves. There is not the "one" native style.

tonyedgecombe on April 15, 2021 | parent | next [–] This whole area has got so muddied with Microsoft going beserk after Windows 8, the shift to the web, mass use of Electron and Apple bringing iPhone/iPad apps to macos.

It's quite sad really because none of it was changed in the name of users interest.

pjc50 on April 15, 2021 | parent | prev | next [–] Those are the true native style for Windows, yes. Microsoft's subsequent efforts aren't as good and they've not even fully committed to them themselves. WPF is on life support.

pjmlp on April 15, 2021 | root | parent | next [–] That is what WinUI team would wish, but given that currently with version 3.0:

- Only C# and C++/WinRT apps are supported

- Desktop apps support .NET 5 and C# 9, and must be packaged in an MSIX app

- No XAML Designer support

- New C++/CX apps are not supported, however, your existing apps will continue to function (please move to C++/WinRT as soon as possible)

- Unpackaged desktop deployment is not supported

- When running a desktop app using F5, make sure that you are running the packaging project. Hitting F5 on the app project will run an unpackaged app, which WinUI 3 does not yet support.

-- https://docs.microsoft.com/en-us/windows/apps/winui/winui3/

Most of long time UWP belivers just packed our stuff and are back in WPF/Win32 land.

72deluxe on April 15, 2021 | root | parent | prev | next [–] WOF is on life-support?? What do they recommend now then?

I know in C# land WinForms was discouraged (no idea why) but what do they recommend now??

What is the "native" toolkit for modern C++ apps on Windows? I end up using wxWidgets because it is easy.

pjmlp on April 15, 2021 | root | parent | next [–] From Microsoft offerings for C++ devs, just keep using MFC, or in your case wxWidgets.

They will mention WinUI, but the team pushing for C++/WinRT killed all VS tooling support that C++/CX, so for doing WinUI with C++ you are stuck editing IDL files without any kind of VS tooling support, and also have to copy/merge the generated C++ files of the IDL ones.

pjc50 on April 15, 2021 | root | parent | prev | next [–] I basically agree with pjmlp: Win32/MFC has always worked and will continue to work.

> in C# land WinForms was discouraged

Portability, it seems. Not unreasonably, they're focusing on C# as a backend language in UNIX-like environments. While you can run WinForms from dotnet core, doing so adds a large chunk of libraries to your deployment and of course only works on Windows targets. I'm not sure I entirely approve of this direction, but it follows from targeting Java, and I do prefer C# to Java.

Of course, if you just want a little bit of the API, there's nothing stopping you from just p/invoking it out of user32.dll, which I did last month ...

MaxBarraclough on April 15, 2021 | root | parent | next [–] > While you can run WinForms from dotnet core, doing so adds a large chunk of libraries to your deployment

Sounds like the direction Java took, moving JavaFX (a rather underrated GUI toolkit from what I can tell) out of the core Java standard library.

ZuLuuuuuu on April 15, 2021 | parent | prev | next [–] That is indeed true. wxWidgets currently has the old school Win32 style. I think WPF uses different set of controls (but I am not 100% sure). And UWP has a totally different look and feel.

brnt on April 15, 2021 | prev | next [–] My pet peeve: I live on KDE, yet nobody considers Qt native!

More important to me is accessibility. Does the toolkit integrate with the OS such that users can use their accessibility tools? I don't know about wx, but not all crossplatform toolkits do this consistently (or at all).

Shorel on April 15, 2021 | parent | next [–] I run Deluge in Windows, and I can not consider Qt native for this platform. That's why.

brnt on April 15, 2021 | root | parent | next [–] Something is alien somewhere, and as others noted, for Windows specifically I couldn't tell you what native is. On Linux there's just GTK and Qt, but the count is far higher on Windows these days. I have a Qt app that blends in imperceptibly well in my eyes, while some of MS own software stands out.

Point is: there is no such thing as native.

jcelerier on April 16, 2021 | root | parent | prev | next [–] Even MS ships a Qt app with the OS (OneDrive)

simonh on April 15, 2021 | prev | next [–] QGraphicsView in particular is fantastic, it's the main reason I picked PySide for my app, but overall I've been very impressed with the polish of Qt and the quality of the documentation.

PurpleFoxy on April 15, 2021 | prev | next [–] What does native control mean anyway? Isn’t GTK basically _the_ native controls of Linux?

MaxBarraclough on April 15, 2021 | parent | next [–] > Isn’t GTK basically _the_ native controls of Linux?

Depends on the desktop environment. If you use GNOME or Xfce then yes, your native toolkit is GTK. As someone pointed out over here [0], if you use KDE then your native toolkit is Qt.

(Posted from Kubuntu, incidentally. KDE is impressively polished these days.)

[0] https://news.ycombinator.com/item?id=26818328

querez on April 15, 2021 | parent | prev | next [–] wxWidgets wraps GTK on Linux (see also https://www.wxwidgets.org/docs/faq/gtk/ ).

formerly_proven on April 15, 2021 | prev [–] > One key difference between wxWidgets and Qt or GTK is that wxWidgets, as far as I know, uses native controls to create the UI, unlike Qt or GTK which draw everything themselves. Qt is really good at imitating a native feeling but wxWidgets provides a real native UX.

This is kind of a strawman, especially with wxPython. The basic widgets are native (like e.g. a button, text input, checkbox, combobox), yes, but most of the "advanced" widgets aren't (e.g. AUI, list and tree controls, which are not native on Gtk, dataview, propgrid, ...), and everything in wx.lib isn't (avoid wx.lib.agw btw.). Most of the latter category has no or limited support for Hi-DPI. Most of the latter neither feels nor looks native, to varying degrees.

Personally I find my opinion of wx has sort of evolved like an inverted parabola. It started off kinda low, because a lot of stuff has confusing names, things are done in mildly weird ways and stuff like the layout system works in mysterious ways. It reached a high point at "this is pretty ok". Kinda went downhill from there: the layout system is just a massive pita, basic things seem to be missing because they're basically not doable with that layout system (e.g. notice how there really isn't anything in wx which provides an automatically line-wrapping text/label widget), support for rich-text/HTML/markup is abysmal, the event system is a PITA, most of the advanced widgets have are barely usable from both a programmer's and a a user's point of view (wxPropertyGrid...), there is a distinct lack of APIs for system integration (try putting or getting HTML from/to the clipboard, which is a one-liner with Qt), somehow not-flicker-free drawing is still a thing in wx, and it is not taken to be granted, the menu system is the thinnest of wrappers around the lowest of common denominators; QAction/QMenu is a far superior system of interactions. There is a pattern to this; wx generally chooses to make something a "thin wrapper over lcd". Qt generally chooses to rather make a stable abstraction (works on OS 1, probably works on OS 2), and, well, abstract. Qt has Model/View, which can be a little intimidating if you use it for the first time, but it actually works really well. wx has wxListCtrl::OnGetItemText (it also has dataview since a few versions, which is in the odd place of "way more complicated than a callback, not nearly as good as Qt MV"). Qt has QAction, wx has... wxMenu::Append. wx's way of doing things definitely has advantages (for one thing, wx is far, far less code than Qt Widgets, and if the controls you are using are native, everything truly is native, though this arguably doesn't matter any more).

FWIW I probably struggled more with layouts in a single wx project in a few months than I've done in all Qt and web experience prior to that. There are just so many weird happenings which just... don't exist outside wx.

VZ on April 15, 2021 | parent | next [–] I can't say much for wxPython lib, but fixing high DPI support in native controls is the main focus of 3.2.0 and things look pretty good in 3.1.5 already IMHO.

I could understand if you wrote that the layout system is not powerful enough because it's too _simple_ -- it's really just a combination of 1D box layout and 2D grid layout that can be composed -- but I really don't know what could possibly be so weird about it.

Markup support is indeed simple because we don't want to write and maintain our own CSS parser or anything like this, but you can use wxWebView to have all the browser power at your fingertips.

Putting HTML into clipboard is a one liner with wx too (just use wxHTMLDataObject as any other data object).

More could be said about the other subjects, but these ones just seem like very obvious misconceptions, so I'd like to at least leave a record here to prevent the parent post from leaving a wrong impression.

bsenftner on April 15, 2021 | root | parent | next [–] Let me just say, you're doing a superb job with wxWidgets. Having learned and used an uncounted number of UI toolkits, wxWidgets is the least irritating I've used in a 40 year coding career. Standing ovation to you, sir.

formerly_proven on April 15, 2021 | root | parent | prev | next [–] > I can't say much for wxPython lib, but fixing high DPI support in native controls is the main focus of 3.2.0 and things look pretty good in 3.1.5 already IMHO.

Yes, the wx core handles this really well. If the correct APIs are used, no or few changes to application code are necessary to handle HiDPI properly - definitely a very good aspect of wx.

> I could understand if you wrote that the layout system is not powerful enough because it's too _simple_ -- it's really just a combination of 1D box layout and 2D grid layout that can be composed -- but I really don't know what could possibly be so weird about it.

For me it remains unclear how the various sizes (MinSize, Size, BestSize and the size passed to the constructor/Create) interact with the sizer's decisions. From what I've seen a BestSize seems to more or less be treated like a MinSize, where the sizer will not continue to shrink a control if Size == BestSize.

How to correctly implement a re-flowing (where e.g. the width depends on the height, or vice versa) control is also unclear to me. wxTextCtrl does it, somehow, in a somewhat buggy way. I managed to do it but I doubt it's correct.

What I personally find weird is how sizers don't really compose - you can put sizers in sizers, but that's not what I mean: If the layout changes in a sub-sub-sub-panel, then just calling Layout() there won't usually be sufficient, you have to walk up the tree. In Qt for example I've never spend a single thought about what would change the layout and how or what needs to receive Layout calls, it's just 100 % automatic.

A combination of both of these is that I found wxScrolledWindow to be very tricky to get to work properly, even after spending a lot of time on it, I still end up with a dialog that takes a few frames to stop redrawing/changing its layout.

Another weird corner is wxCollapsiblePane.

I concede that a lot of this could be because I don't know enough about wx or because I'm too dense to understand it properly.

> Putting HTML into clipboard is a one liner with wx too (just use wxHTMLDataObject as any other data object).

Thanks, that set me on the right track to work it out. Previously I only found extremely weird/convoluted solutions and older posts suggesting that wx doesn't do it for you (google: "wx clipboard html"). But wxDataObjectComposite with a wxHTMLDataObject and wxTextDataObject indeed "just works". Perhaps something for the docs as an example?

> Markup support is indeed simple because we don't want to write and maintain our own CSS parser or anything like this, but you can use wxWebView to have all the browser power at your fingertips.

Well yeah, but a WebView is a pretty heavy-handed approach if you just want to make a few words bold or insert a link or something like that. Also, Qt's approach works more universally (e.g. it also applies to the labels of check/radio boxes, buttons etc., and it also lets you do things like highlight a field in red when it contains an invalid input, like people are used to nowadays).

VZ on April 15, 2021 | root | parent | next [–] Best size is determined by each window. Min size is best size by default, but can be set to something different to override it. And the initial size is also min size by default, because this is what you'd expect: if you create a text entry wide enough for 50 characters, you don't want it to shrink to its best size which would be smaller. Generally speaking, it's best to avoid hardcoding any sizers (and definitely never use sizes in pixels).

For the relayout, the general principle is that it _always_ flows from top to bottom, i.e. changing anything for a child will _never_ affect the size of a (grand) parent. So you just need to call Layout() on the top-most window whose size you want to allow changing. Again, this might be too simple, perhaps, but at least it is simple and 100% consistent (well, wxCollapsiblePane just might be one of the very few exceptions...). I'm not sure how does Qt manage to avoid confusion if it propagates layout changes in both directions.

For markup, we do support it in wxGenericStaticText and several other controls, including buttons, checkboxes and wxDataViewCtrl which is quite enough for simple things like this. wxHtmlWindow is pretty nice for slightly more complicated stuff, even though it's just HTML 3.

72deluxe on April 15, 2021 | parent | prev [–] Converse to this, I find the layout manager really useful and easy. wxSizer is easy to understand. Want something to expand? Use wxEXPAND. Use proportion 1 to make it take up all the space.

Use wxFormBuilder if you find laying stuff out difficult.

I find the layout manager easier than Borland or MFC codebases I have had to use, that's for sure!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact Search:

Từ khóa » Gtk Vs Qt 2021