Remix.run Logo
delduca 10 hours ago

Best framework for this is Qt.

hliyan 9 hours ago | parent | next [-]

I've recently discovered FLTK: https://www.fltk.org/doc-1.4/intro.html

Haven't used Qt in a while, but at first glance, seems simpler: https://github.com/fltk/fltk/blob/master/examples/menubar-ad...

lazypenguin 6 hours ago | parent | next [-]

FLTK is great at being fast and light, that’s about it. It’s kind of cumbersome to use but honestly does what it says on the tin. Highly recommend for smaller use cases but can’t imagine using on a large project. I used the rust bindings which are well maintained.

8 hours ago | parent | prev [-]
[deleted]
jordand 10 hours ago | parent | prev | next [-]

Yeah for my work, legacy Win32/WinForms/WPF codebases tools are kept maintained as-is, but new tools are usually written in PySide6 (QtWidgets or QtQuick) and it's worked out really well (other than bundling/distribution being tricky for big apps)

anthk 9 hours ago | parent | prev | next [-]

And Lazarus/FPC.

madduci 10 hours ago | parent | prev [-]

MFC is rock solid too

adzm 9 hours ago | parent [-]

WTL and ATL also, especially if you need to do com stuff

pjmlp 5 hours ago | parent [-]

You will need it, because since Windows Vista, most new APIs are COM based, as they redid Longhorn ideas in C++ instead of .NET, and WinRT also builds upon it.

Classical Win32 C API surface, with some exceptions, is mostly stuck in Windows XP view of the world.