Hi,<br><br>With the pyqtref manual, I try to test base2.py (see below the code). But this one does not produce anything !!<br>Is it the same for you ?<br><br>Simon<br><br>Config : rhel4, pyqt-4.0.1, qt4.1.4<br><br><br><br>
Base2.py<br>=======<br><br>from PyQt4 import QtCore, QtGui<br>from ui_imagedialog import Ui_ImageDialog<br><br>class ImageDialog(QtGui.QDialog):<br> def __init__(self):<br> QtGui.QDialog.__init__(self)<br><br> # Set up the user interface from Designer.
<br> self.ui = Ui_ImageDialog()<br> self.ui.setupUi(self)<br><br> # Make some local modifications.<br> self.ui.colorDepthCombo.addItem("2 colors (1 bit per pixel)")<br><br> # Connect up the buttons.
<br> self.connect(self.ui.okButton, QtCore.SIGNAL("clicked()"),<br> self, QtCore.SLOT("accept()"))<br> self.connect(self.ui.cancelButton, QtCore.SIGNAL("clicked()"),
<br> self, QtCore.SLOT("reject()"))<br><br>ui_imagedialog.py<br>=============<br><br>import sys<br>from PyQt4 import QtCore, QtGui<br><br>class Ui_ImageDialog(object):<br> def setupUi(self, ImageDialog):
<br> ImageDialog.setObjectName("ImageDialog")<br> ImageDialog.resize(QtCore.QSize(QtCore.QRect(0,0,420,300).size()).expandedTo(ImageDialog.minimumSizeHint()))<br><br> self.buttonBox = QtGui.QDialogButtonBox
(ImageDialog)<br> self.buttonBox.setGeometry(QtCore.QRect(30,240,341,32))<br> self.buttonBox.setOrientation(QtCore.Qt.Horizontal)<br> self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.NoButton|QtGui.QDialogButtonBox.Ok
)<br> self.buttonBox.setObjectName("buttonBox")<br><br> self.retranslateUi(ImageDialog)<br> QtCore.QObject.connect(self.buttonBox,QtCore.SIGNAL("accepted()"),ImageDialog.accept)<br>
QtCore.QObject.connect(self.buttonBox,QtCore.SIGNAL("rejected()"),ImageDialog.reject)<br> QtCore.QMetaObject.connectSlotsByName(ImageDialog)<br><br> def retranslateUi(self, ImageDialog):<br>
ImageDialog.setWindowTitle(QtGui.QApplication.translate("ImageDialog", "Dialog", None, QtGui.QApplication.UnicodeUTF8))<br><br><br>