Qt.py icon indicating copy to clipboard operation
Qt.py copied to clipboard

Minimal Python 2 & 3 shim around all Qt bindings - PySide, PySide2, PyQt4 and PyQt5.

Results 58 Qt.py issues
Sort by recently updated
recently updated
newest added

Found some more cross-development tips here: - https://github.com/PySide/pyside2/wiki/My_Practice_:_Porting_python_scripts_to_PySide2 Pasting them here in case they disappear. Will need formatting. ### QHBoxLayout QVBoxLayout Background: Qt4 (PySide): `QLayout::setAlignment(Qt::Alignment alignment)` http://doc.qt.io/qt-4.8/qlayout.html#setAlignment-2 Qt5 (PySide2): removed...

enhancement

this module could benefit from adding support for a code base that is in PySide 1 but installed version is pyside2, as is the case of Maya 2017 for using...

question

Since there are a number of competing stubs for PySide out there (my contribution is [here](https://pypi.org/project/types-PySide2/)), and someone may prefer to pip install one stub package over another, I propose...

Now passing new testing framework!

here is a minimalistic example: ``` from Qt import QtWidgets, QtCore class Foo(QtWidgets.QWidget): my_signal = QtCore.Signal() def __init__(self, parent=None): super(Foo, self).__init__(parent) self.my_signal.connect(self.doSomething) self.my_signal.emit() def doSomething(self): print("signal emitted") app = QtWidgets.QApplication([])...

help wanted

Using this code example: ```py import logging from Qt import QtCore from Qt import QtWidgets class MainWind(QtWidgets.QMainWindow): willclose = QtCore.Signal(int) def __init__(self, *args, **kw): super(MainWind, self).__init__(*args, **kw) but = QtWidgets.QPushButton("hi")...

help wanted

Files built using pyside2-uic 5.15.2 are not handled by qt.py --convert as the PySide2 imports are in the format `from Pyside2.QtCore import *` rather than the supported `from Pyside2 import...

help wanted

When compiling ui files using `pyside2-uic` (PySide-5.15.4), QtCompat.translate() will sometimes have 3 arguments: `QtCompat.translate("MainWindow", u"MainWindow", None)` When executing our program, TypeError is raised: ``` File "/dd/shows/DEV01/user/work.akelada/tools/cent7_64/package/launchpad/0.1.2/python/launchpad/Ui_launchpad_UI.py", line 205, in retranslateUi...