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
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
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:
>
>
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,