Top "Pyside" questions

Questions about using PySide, a Python Qt bindings project.

Recursively expand all child items of item in QTreeView

I have a QTreeView and I want to expand all child items of a recently expanded item. I tried using .…

qt pyqt pyside qtreeview
Why is super used so much in PySide/PyQt?

Short version (tl;dr) I am learning PySide, and most online tutorials use super to initialize UI elements. Is this …

python pyqt pyside super
Setting Mac OSX Application Menu menu bar item to other than "Python" in my python Qt application

I am writing a GUI application using python and Qt. When I launch my application on Mac, the first menu …

python macos pyside qmenubar
PySide: set width of QVBoxLayout

With PySide, I have a set of QWidget in a QVBoxLayout vlayout = QVBoxLayout() vlayout.addWidget(self.a_label) vlayout.addWidget(…

python pyside
How to get calling button from a clicked event

I'm trying to make an small gui to deploy .ear and .war files on my local glassfish installation. SO i …

qt signals-slots pyside multiplexing
reading pyqt stylesheet from external qss file

I have made a qss file of pyqt stylsheet and how am i supposed to call the file content and …

python pyqt4 pyside stylesheet
Is the PySide Slot Decorator Necessary?

I've seen some example code for PySide slots that uses the @QtCore.Slot decorator, and some that does not. Testing …

python pyqt pyside signals-slots
Set column width for QTreeWidget

Is there any way to set column width for QTreeWidget from code? I want to chage default width of first …

qt pyqt pyside qtreewidget
How to implement a signal/slot defined in Qt Designer

I am trying to connect the click() signal of a button to my own function. The button is in a …

python pyqt pyside signals-slots qt-designer
How to dynamically change child widgets with Python and Qt?

I would like to create a widget that has a child widget that I can dynamically change. Here is what …

python qt pyqt pyqt4 pyside