Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
In my executable I would like to insert a panel for options: to build, what do you recommend to use? a QDialog or a QWindow?
Hi,
What classes are you using for the rest of your GUI? If you are using widgets, I recommend a QDialog.
Usually, you won't use QWindow unless you want to create a custom OpenGL UI.
I use MainWindow class.
Yup, use a QDialog
Very thanks!