[Interest] FW: Appending QTextEdit in the QWidget

Sujan Dasmahapatra sdh at lmwindpower.com
Tue Apr 17 14:07:49 CEST 2012


Ignore my last mail it was incomplete.

 

I want to append QTextEdit in the QWidget. QWidget has a specified width
and height. I want to append QTextEdit on the widget in such a way that
max 2 textedit should be there horizontally, after that 3rd textedit
should be added vertically, means the widget should be split into 2
halves and 3rd textedit should append to the next row. 4th textedit
should append to the 2nd row 2nd column. And so on.

 

I dunno whether I am able to explain my problem or not. Please check the
code snippet below.

 

CSheet::CSheet(QTabWidget *parent):QWidget(parent)

{

    tab = parent;

    setGeometry(0, 0, tab->width(), tab->height());

    layoutH = new  QHBoxLayout(this);

    layoutH->setGeometry(QRect(0,0,width(),height()));

    QTextEdit *wid1 = new QTextEdit(this);

    QTextEdit *wid2 = new QTextEdit(this);

    layoutH->addWidget(wid1);

    layoutH->addWidget(wid2);

}

 

Now when I add a 3rd widget in the layout it's adding horizontally, I
want it to come to the next row. And so on.

 

Please help me how can I achieve this. Thanks Sujan

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.qt-project.org/pipermail/interest/attachments/20120417/985fa4a3/attachment.html>


More information about the Interest mailing list