Re: [PyQt] adjusting layouts question

2010-11-17 Thread dizou
I was able to use QSplitter to do what I wanted. Thanks a lot! -- View this message in context: http://old.nabble.com/adjusting-layouts-question-tp30200354p30238557.html Sent from the PyQt mailing list archive at Nabble.com. ___ PyQt mailing listP

Re: [PyQt] adjusting layouts question

2010-11-13 Thread Anil Kumar
Hi, I did not realize I am sending it as a personal email, Sorry for that[?] Anyway previous email was to use Splitters to arrange widgets in the form so that you can resize as you wish. On Sun, Nov 14, 2010 at 12:06 AM, Nick Gaens wrote: > You might want to forward your previous mail to the en

Re: [PyQt] adjusting layouts question

2010-11-12 Thread Nick Gaens
I've got no notice of a directly manipulated (using mouse dragging) column width concerning QLayout's.. You could however do this programmatically by coupling some other numerical input widget (QSpinBox) to the columnWidth setter of your QLayout. On Fri, Nov 12, 2010 at 16:27, dizou wrote: > >

[PyQt] adjusting layouts question

2010-11-12 Thread dizou
I have a widget with a a layout and some widgets: class MainWidget(QWidget): def __init__(self, parent): QWidget.__init__(self, parent) gridLayout = QGridLayout() gridLayout.addLayout(treeControlLayout, 0, 0) gridLayout.addWidget(self.tree, 1,