Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
pyqt4 pythonでkeypressイベントをオーバーライドして、qtexteditでの文字の書き込みを無効にすることは可能ですか?
QTextEdit対応するイベント ハンドラー メソッドから派生して上書きします。
QTextEdit
class MyTextEdit(QTextEdit): def keyPressEvent(self, event): event.ignore()