Hacker News new | ask | show | jobs
C++ GUI Library Suggestion
3 points by HusrevCelenk 1100 days ago
Can you recommend a library where I can write GUI applications in C++ via vim?
5 comments

Strongly recommend wxWidgets. It can be slightly rough around the edges for some advanced functionality, however:

- It wraps native components (GTK on Linux), meaning your application remains performant.

- It has very friendly licensing (LGPL and/or a wxWidgets-specific variation, both with an exception for static linking), giving it a large advantage over, e.g., Qt.

- In addition to GUI components, it has cross-platform integration functionality, e.g., you can query the OS MIME/file type manager to get the appropriate command for opening a file in the default handler.

See https://github.com/rochus-keller/LeanQt. Neither depends on Qmake nor Qt Creator.
qt
İs it possible to code it without qt creator?
Yes I often use vscode see .vscode folder and presets file https://gitlab.com/kelteseth/ScreenPlay
wickedengine.
Qt6
İs it possible to code it without qt creator?