I am a beginner in python and I want to start with a simple GUI. I use PyQt5 for gui development.
I want run itWorks() if the user click the Login Toolbar Button. Here is my code:
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import sys
from PyQt5.QtWidgets import QMainWindow, QAction, qApp, QApplication
from PyQt5.QtGui import QIcon
class Main(QMainWindow):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
exitAct = QAction(QIcon('images/Login.ico'), 'Login', self)
#exitAct.setShortcut('Ctrl+Q')
exitAct.triggered.connect(qApp.quit)#why i cant run my function here?
self.toolbar = self.addToolBar('Exit')
self.toolbar.addAction(exitAct)
self.setGeometry(50, 50, 600, 600)
self.setWindowTitle('Toolbar')
self.show()
if __name__ == '__main__':
app = QApplication(sys.argv)
ex = Main()
sys.exit(app.exec_())
function:
def itWorks():
print("it works")
thanky for your help
I know it has been asked more than a year ago, but i went into the same issue and mange to solve it. so here is an example of creating a "Tool Bar" and get the action/event.
outputs are:
Tool-Bar |Open Folder| is selected
Tool-Bar |New Documents| is selected
Tool-Bar |Tools| is selected
Here is how it looks like
I added an .ico just for usage example, if you run it on you system when you don't have the file, it will work, and it will show an empty square.