1

新しいファイルのフォルダーを監視するようにウォッチドッグを設定しました。 on_created 関数を実行した後、メインの PyQt クラスに戻ろうとしています。

from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler

class CreatedEvent(FileSystemEventHandler):

    def on_created(self, event):
        #some code

someFunction を呼び出せるようにする必要があります

from PyQt4.QtGui import *
from PyQt4.QtCore import *

class someClass(QMainWindow):
    def someFunction(self):
        #some code

シグナルを使用してみましたが、常にこのエラーが発生します

QPixmap: It is not safe to use pixmaps outside the GUI thread
QPixmap: It is not safe to use pixmaps outside the GUI thread
4

0 に答える 0