それは非常に単純なものでなければなりませんが、方法を見つけることができませんでした...MainWindow (QMainWindow)
ヘルプメニューを追加し、actionAbout QAction
Qt Designerを介してGUIを使用しています。ここで、[ヘルプ] メニューの [バージョン情報] を押すと、「プログラム... バージョン... など」というテキストを含む小さな新しいウィンドウが表示されるようにします。
信号が機能しているtriggered
ようNotImplementedError
で、About を押すと表示されます。しかし、この信号から新しいウィンドウを表示する方法がわかりません...
class MainWindow(QMainWindow, Ui_MainWindow):
"""
My main GUI window
"""
def __init__(self, db, parent = None):
QMainWindow.__init__(self, parent)
...
@pyqtSlot(QAction)
def on_menuAbout_triggered(self, action):
"""
Slot documentation goes here.
"""
# TODO: not implemented yet
raise NotImplementedError