[Interest] resizing child window with parent window
Sujan Dasmahapatra
sdh at lmwindpower.com
Mon May 7 15:49:45 CEST 2012
Please give me some idea on resizing the child window. I have parent
widget, when resizing this parent widget, I want all my other child
widgets should also resize accordingly.
I have tried with QFormLayout, with formlayout, the widget's size is
changing, e.g a pushbutton is coming horizontally as long as the parent
widget, although I am specifying a size for 100,25 width and height.
Please give me some suggestion. Check this snippet.
CSheet::CSheet(QWidget *parent):QWidget(parent)
{
setGeometry(0,0,600,400);
QPushButton *button = new QPushButton("Add chart", this);
button->setGeometry(5,5,100,25);
button->show();
QTextEdit *edit = new QTextEdit(this);
edit->setGeometry(5, 35, width()-10, height()-40);
edit->show();
}
This 2 controls are set on the widget, now when I resize to the full
screen, the textedit size is not changing accordingly, please help what
I can do for this. Thanks Sujan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.qt-project.org/pipermail/interest/attachments/20120507/db5c5f53/attachment.html>
More information about the Interest
mailing list