On 01.06.10 15:41:01, Lic. José M. Rodriguez Bacallao wrote: > hi folks, does anyone know where to get a four way splitter that I can > use with PyQt4?
You mean this: Widget A | Widget B ------------------- Widget C | Widget D Thats doable by nesting splitters, i.e. create one and put a splitter into the top-area and two widgets to that. Or if you want A | B | C | D Then just use QSplitter::addWidget() 4 times in a row. If you want something else you'll have to explain a bit more what you want. Andreas -- You will gain money by a fattening action. _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
