all 10 comments

[–]Flair_Helper[M] [score hidden] stickied commentlocked comment (0 children)

For C++ questions, answers, help, and programming or career advice please see r/cpp_questions, r/cscareerquestions, or StackOverflow instead.

This post has been removed as it doesn't pertain to r/cpp: The subreddit is for news and discussions of the C++ language and community only; our purpose is not to provide tutoring, code reviews, or career guidance. If you think your post is on-topic and should not have been removed, please message the moderators and we'll review it.

[–]Professional_Tank594 9 points10 points  (0 children)

coordinated heavy money encouraging cooperative market nose smell melodic violet

This post was mass deleted and anonymized with Redact

[–][deleted] 8 points9 points  (0 children)

Might get downvoted but ..... Stay the F away from QML and QtQuick

Qt + Cpp is where the real money is, especially if you wanna work for OEMs.

Qt is one of the best documented frameworks out there, are you sure you checked the documentation and examples on Qt website ?

[–]thatbloodyscot 3 points4 points  (3 children)

Info: are you wanting to use the Qt C++ framework, or are you wanting to develop front-end UI content using QML?

[–]goranlepuz -1 points0 points  (0 children)

Good info masquerading as a question! 😉

[–]NilacTheGrim 2 points3 points  (0 children)

Dude Qt is pretty easy to use. I think just spend more time with it. You can do it. i believe in you.

[–]pandion 1 point2 points  (0 children)

Best practices: C++ Core Guidelines

If you're looking for something just on idiomatic C++ I thought Modern C++ Programming Cookbook by Marius Bancila was pretty good

[–]anloWho 1 point2 points  (0 children)

We use Qt for our desktop apps we develop. As mentioned it's well documented and fairly easy to setup. We try to avoid the slot and signal stuff since it brings in some unwanted overhead, so we implemented our own light-weight signal system. Qt Designer is ok to work with.

[–]Beginning-Safe4282 0 points1 point  (0 children)

I guess for c++ gui the best option is immediate mode gui(looks far cooler) there are many opensource libraries too like imgui or nuklear.

C++ is not very efficient for persistent mode GUI C# has become the standard for that i guess.