0

私はPythonを初めて使用しますが、PyQt3用に記述されたコードをPyQt4で動作するように変更する方法を知りたいです。例:次のコードはPyQt3で正常に機能するはずですが、PyQt4で機能させるには何を変更すればよいですか?

ありがとう。

import sys
from qt import *

class dlgLabel(QDialog):

def __init__(self,parent = None,name = None,modal = 0,fl = 0):
    QDialog.__init__(self,parent,name,modal,fl)
    self.setCaption("label dialog")
    if name == None:
        self.setName("dlgLabel")

    self.layout=QHBoxLayout(self)
    self.layout.setSpacing(6)
    self.layout.setMargin(11)

    self.label=QLabel("&Enter some text", self)
    self.edit=QLineEdit(self)
    self.label.setBuddy(self.edit)

    self.layout.addWidget(self.label)
    self.layout.addWidget(self.edit)

    self.edit.setFocus()

if __name__ == '__main__':
app = QApplication(sys.argv)
QObject.connect(app, SIGNAL('lastWindowClosed()'),
                app, SLOT('quit()'))
win = dlgLabel()
app.setMainWidget(win)
win.show()
app.exec_loop()
4

1 に答える 1

1

主な違いは、Qt3とQt4のAPIの違いから生じます。これは、http://doc.qt.io/qt-4.8/porting4-overview.htmlや他のいくつかのQt移植ガイドでかなり詳しく説明されているはずです。

https://github.com/develersrl/pyqt3supportをチェックアウトすることも役立つかもしれません。

于 2013-02-26T09:22:57.517 に答える