web-dev-qa-db-ja.com

PyQt4-タイマーの作成

質問には申し訳ありませんが、たくさんのことを読みましたが、タイマーの作り方がわからないようです。だから私は自分のコードを投稿しています:

from PyQt4 import QtGui, QtCore
from code.pair import Pair
from code.breadth_first_search import breadth_first_search
import functools


class Ghosts(QtGui.QGraphicsPixmapItem):

    def __init__(self, name):
        super(Ghosts, self).__init__()

        self.set_image(name)

    def chase(self, goal):
        pos = Pair(self.x(), self.y())
        path = breadth_first_search(pos, goal)
        while not path.empty():
            aim = path.get_nowait()
            func = functools.partial(self.move_towards, aim)
            timer = QtCore.QTimer()
            QtCore.QTimer.connect(timer, QtCore.SIGNAL("timeout()"), self, QtCore.SLOT("func()"))
            timer.start(200)

    def move_towards(self, goal):
        self.setPos(goal.first(), goal.second())

オブジェクトを200ミリ秒ごとにその目的に向かって移動させようとしています。私は自分で試してみましたが、同じエラーが発生します:

QObject.connect(QObject, SIGNAL(), QObject, SLOT(), Qt.ConnectionType=Qt.AutoConnection): argument 3 has unexpected type 'bytes'
QObject.connect(QObject, SIGNAL(), callable, Qt.ConnectionType=Qt.AutoConnection): argument 3 has unexpected type 'bytes'
QObject.connect(QObject, SIGNAL(), SLOT(), Qt.ConnectionType=Qt.AutoConnection): argument 2 has unexpected type 'bytes'

引数を使用してタイマーを関数に接続する方法がわかりません。私はSLOT引数を正しく使用していないと思いましたが、それは私にそれらのミスを与えました。私はそれがすべて間違っていると思います。私はいくつかの助けに感謝します:)

9
vixenn

新しいスタイルの信号を使用すると、わかりやすくなります。

スワップ-

QtCore.QTimer.connect(timer, QtCore.SIGNAL("timeout()"), self, QtCore.SLOT("func()"))

あり-

timer.timeout.connect(self.move_towards)   # assuming that move_towards is the handler

動作タイマーのシンプルだが完全な例-

import sys

from PyQt4.QtCore import QTimer
from PyQt4.QtGui import QApplication

app = QApplication(sys.argv)
app.setQuitOnLastWindowClosed(False)

def tick():
    print 'tick'

timer = QTimer()
timer.timeout.connect(tick)
timer.start(1000)

# run event loop so python doesn't exit
app.exec_()
17
Tim Wakeham