Of course QDialog could have menu and status bar etc, you can always add them yourself.
Qt Code:
menuBar->addAction("File"); menuBar->addAction("Tools");To copy to clipboard, switch view to plain text mode
Of course QDialog could have menu and status bar etc, you can always add them yourself.
Qt Code:
menuBar->addAction("File"); menuBar->addAction("Tools");To copy to clipboard, switch view to plain text mode
1. Users don't have the manual, and if they did, they wouldn't read it.
2. In fact, users can't read anything, and if they could, they wouldn't want to.
You can just put everything in the central widget. I don't see the problem. If your application have one main window then it is your choice if it is QMainWindow, QDialog, QWidgetand so on. With this three you always have the main widget area: in QWidget and QDialog this are themselfs and in QMainWindow it is the central widget. Just place everything in proper layouts and it should work for those classes. QMainWindow just offers more then QWidget or QDialog, because has dock areas for example.
I would like to be a "Guru"
Useful hints (try them before asking):
- Use Qt Assistant
- Search the forum
If you haven't found solution yet then create new topic with smart question.
Bookmarks