GUI resource to support User selection of fon size

How does one incorporate a GUI interface in a W32 app to select font and font size similar to that supported by MS Word?
https://learn.microsoft.com/en-us/windows/win32/dlgbox/font-dialog-box

You create and display a Font dialog box by initializing a CHOOSEFONT structure and passing the structure to the ChooseFont function.

That is if you use "native" Win32 GUI.

If you use a GUI framework, such as Qt or wxWidgets, it should provide a portable solution, e.g.:
https://doc.qt.io/qt-6/qfontdialog.html#details
https://docs.wxwidgets.org/3.0/classwx_font_dialog.html
Last edited on
Thanks for your info, which I am currently digesting.
Topic archived. No new replies allowed.