
python - Installing PySide for Python3 - Stack Overflow
Nov 18, 2017 · Furthermore, Qt 4.8 is no longer supported, and PySide should not be used for new projects. PySide2, the next version, is the future of Python and Qt, and supports Python 3.5. You can find out more about it on the Qt Wiki. Having said all that, there are several Linux distros that currently maintain PySide packages for Python-3.5 and/or Python-3.6.
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 browse_folder...
PySide: Instant tooltips (no delay before showing the tooltip)
Jul 12, 2015 · It would be great if someone could lend some insight into how to accomplish this. I'm about a month into PySide so I'm having trouble deciphering these advanced examples/answers I've found online, so a simple code example with some comments will help me out a lot. Here's what I have so far.
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 this example is a QLineEdit)
pyside - how to terminate qthread in python - Stack Overflow
Nov 9, 2014 · EDIT: it works on linux too, I tried this on raspberry pi 4 and it works fine. the point is to make the main loop in the " run " method because " terminate " function is stopping the loop in " run " not the thread its self here is a working example for this, but unfortunately it …
calling a parent method from a child widget in pyside/pyqt
I'm trying to call a method of a parent class from within a child class. Specifically, my parent class is a PySide.QtGui.QMainWindow object, and my child class is a PySide.QtGui.QWidget object; the latter is set to be the central widget of the former. I'm trying to connect a button within the child to a method in the parent class.
python - PySide: TreeView widget for folders - Stack Overflow
Nov 13, 2019 · I want to create a TreeView widget using PySide for Autodesk Maya that can display the content of a directory like the example below: I did find an example using tkinter for a simple python script : Tkinter: Treeview widget. But I want to use Pyside so I can run it in Autodesk Maya. I did create a script that can display a simple TreeView widget:
PySide: QStyledItemDelegate button's stylesheet Issue
Mar 14, 2022 · So, the user just clicks any index and all buttons irreversibly change color? That seems just strange. What if the user wrongly clicks on any of those items by mistake, for instance while trying to get back focus on the window, or because they wanted to click on the other column and missed the right spot, or even just because they're trying to understand how the UI works?
PySide / PyQt detect if user trying to close window
Feb 12, 2012 · Is it possible to connect aboutToQuit from inside a separate file that only subclasses the MainWindow, as is the standard workflow using Qt Designer to define the .ui, pyside-uic to convert that to a .py that you don't manually edit, then this separate file for user implementation of the UI elements?
pyside - yum install specific version of python package - Stack …
Aug 14, 2016 · yum --showduplicates list python-pyside | expand Then use the following to install a specific version that is listed from the command above. yum install <package name>-<version info> Which means if v1.2.1 is available, you would need to …