How can i add two child Widget objects in equal portion of QMainWindow.

MainWindow::MainWindow(QWidget *parent)
     : QMainWindow(parent)

{   TreeArea *ta= new TreeArea(this);
    TreeArea *ta1= new TreeArea(this);
.
.
.
  TreeArea::TreeArea(QWidget *parent) :
 QWidget(parent)
{
.
.
.
link|improve this question

38% accept rate
1  
You have to use a layout. – e-zinc Feb 15 at 19:13
43% accept rate... you gotta accept some answers man, ppl won't soon help you. – justanothercoder Feb 16 at 8:44
feedback

2 Answers

As e-zinc suggested you have to use layout. Say you want to insert two widgets into the mainwindow.

QHBoxLayout *layout = new QHBoxLayout;

QPushButton *button1 = new QPushButton("button1");
QPushButton *button2 = new QPushButton("button2");

layout->addWidget(button1);
layout->addWidget(button2);

setCentralWidget(new QWidget);
centralWidget()->setLayout(layout);

This will layout widgets horizontally and you will get this result: QHBoxLayoutExample

And if you want to layout them vertically use QVBoxLayout

I would strongly suggest reading the documentation. Layout Management in Qt

link|improve this answer
feedback

Use QMainWindow::setCentralWidget(QWidget *) to add your own control.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.