QMainWindow is a class in Qt library that implements the main window of an application.
1
vote
1answer
1k views
react on the resizing of a QMainWindow for adjust widget's size
How do I react on the resize of a QMainWindow? I have QTextBrowsers in a QScrollArea and I adjust them to the size of the content on creating them (the only thing that should scroll is the ...
2
votes
1answer
595 views
PyQt: Accesing Main Window's Data from a dialog?
So, I'm using Python and PyQt. I have a Main Window that contains a QTableWidget, and a dialog that opens modally and has some QLineEdit widgets... All right so far, but I have 2 problems:
When the ...
0
votes
1answer
152 views
QTableView not expanding/reducing when QMainWindow is resized
I have a QMainWindow.
Inside the QMainWindow, I have a central widget.
For the central widget, I have a QVBoxLayout.
To this QVBoxLayout, I've added 3 widgets. One is a widget with some labels, ...
0
votes
3answers
361 views
hide qdialog and show mainwindow
I have a Qdialog in which i get some inputs to use on my mainwindow. so it must appear first than mainwindow.
the problem is that my mainwindow does not show up. here's my main.cpp
#include ...