
PySide: Easier way of updating GUI from another thread
Aug 26, 2012 · I have a PySide (Qt) GUI which spawns multiple threads. The threads sometimes need to update the GUI. I have solved this in the following way: class …
python - How can i have a transparent background in a pyside …
Mar 21, 2017 · I have an widget that contain a lot of children , i want to set its background transparent , but keep its children opaque. I'am using PySide 1.2.1 win7 I have try something …
qt - PySide : How to get the clicked QPushButton object in the ...
I am new to PySide. I want to get the QPushButton obj (such as use it to get its text) in its clicked slot. button = QtGui.QPushButton("start go") button.clicked.connect(self.buttonClick) def
Is there an easy way of installing PySide 2 for Windows?
Nov 27, 2017 · Is there any way to "simply" install PySide 2 on Windows 10?If not are there tutorials for installing it? Can I export a PySide 2 project to an .exe file?
PySide wait for signal from main thread in a worker thread
Mar 15, 2012 · I decided to use PySide, but my knowledge of Qt in general is quite limited. As the script is supposed to wait for user input upon coming across a captcha I decided it should wait …
PySide and Python - How to browse a folder and write the file …
Jul 27, 2015 · I would like to press a button and than open a file browser and write down selected file in a label. I have this function which I call when the button is pressed: @Slot() def …
pyside - Qt : Fit width of TableView to width of content - Stack …
Dec 27, 2013 · I have a window that contains a QTableView which columns are adjusted to content and are fixed in width.The QTableView is nested within a QWidget that in turn is …
PySide: emit () signal with a list as a parameter - Stack Overflow
Sep 15, 2014 · I'm new to GUI application development in Python. I'm using PySide to develop a GUI. I need help with passing parameters across two threads. I know how to use custom …
How to get all child components of QWidget in pyside/pyqt/qt?
Apr 17, 2014 · The signatures of findChild and findChildren are different in PySide/PyQt4 because there is no real equivalent to the C++ cast syntax in Python. Instead, you have to pass a type …
python - pyside show / hide layouts - Stack Overflow
Aug 6, 2012 · I'm trying to display one of two layouts depending on whether a checkbox is checked or not. Only using widgets I can do the following which works fine: (each widget in …