123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- #!/usr/bin/env python
- """ Script to create PyQt application """
- import sys
- from functools import partial
- import qdarktheme
- from PyQt6 import QtWidgets
- from PyQt6.QtCore import Qt
- WINDOW_SIZE = 235 # window size in pixels
- DISPLAY_HEIGHT = 45 # display height in pixels
- BUTTON_SIZE = 40 # button size in pixels
- ERROR_MSG = "ERROR" # error message
- class PyQtCalc:
- """pyqtcalc controller class"""
- def __init__(self, model, view):
- self._model = model
- self._view = view
- self._connectSignalAndSlot()
- def _calculateResult(self):
- """calculate and update display result"""
- result = self._model(expression=self._view.displayText())
- self._view.setDisplayText(result)
- def _buildExpression(self, subExpression):
- """build math expression and display result"""
- if self._view.displayText() == ERROR_MSG:
- self._view.clearDisplay()
- expression = self._view.displayText() + subExpression
- self._view.setDisplayText(expression)
- def _connectSignalAndSlot(self):
- """connect button signals with slots method"""
- for keySymbol, button in self._view.buttonMap.items():
- if keySymbol not in {"=", "C"}:
- button.clicked.connect(partial(self._buildExpression, keySymbol))
- self._view.buttonMap["="].clicked.connect(self._calculateResult)
- self._view.display.returnPressed.connect(self._calculateResult)
- self._view.buttonMap["C"].clicked.connect(self._view.clearDisplay)
- class MainWindow(QtWidgets.QMainWindow):
- """pyqtcalc main window (GUI or view)"""
- def __init__(self):
- super().__init__()
- self.setWindowTitle("PyQt Calculator")
- self.setFixedSize(WINDOW_SIZE, WINDOW_SIZE)
- self.generalLayout = QtWidgets.QVBoxLayout()
- centralWidget = QtWidgets.QWidget(self)
- centralWidget.setLayout(self.generalLayout)
- self.setCentralWidget(centralWidget)
- self._createDisplay()
- self._createButtons()
- def _createDisplay(self):
- """create application's display"""
- self.display = QtWidgets.QLineEdit()
- self.display.setFixedHeight(DISPLAY_HEIGHT)
- self.display.setAlignment(Qt.AlignmentFlag.AlignRight)
- self.display.setReadOnly(True)
- self.generalLayout.addWidget(self.display)
- def _createButtons(self):
- """create application's keyboard buttons"""
- self.buttonMap = {}
- buttonLayout = QtWidgets.QGridLayout()
- keyboard = [
- ["7", "8", "9", "/", "C"],
- ["4", "5", "6", "*", "("],
- ["1", "2", "3", "-", ")"],
- ["0", ".", "%", "+", "="],
- ]
- for row, keys in enumerate(keyboard):
- for col, key in enumerate(keys):
- self.buttonMap[key] = QtWidgets.QPushButton(key)
- self.buttonMap[key].setFixedSize(BUTTON_SIZE, BUTTON_SIZE)
- buttonLayout.addWidget(self.buttonMap[key], row, col)
- self.generalLayout.addLayout(buttonLayout)
- def setDisplayText(self, text):
- """sets and updates display's text"""
- self.display.setText(text)
- self.display.setFocus()
- def displayText(self):
- """gets current display's text"""
- return self.display.text()
- def clearDisplay(self):
- """clears display's text"""
- self.setDisplayText("")
- def evaluateExpression(expression):
- """evaluate math expressions (model)"""
- try:
- result = str(eval(expression, {}, {}))
- except Exception:
- result = ERROR_MSG
- return result
- def main():
- """pyqtcalc main function"""
- # create an instance of QApplication
- app = QtWidgets.QApplication(sys.argv)
- app.setStyle("Fusion") # set Fusion system style
- qdarktheme.setup_theme() # apply dark theme to application
- window = MainWindow() # application's GUI
- window.show() # show application's GUI
- PyQtCalc(model=evaluateExpression, view=window)
- sys.exit(app.exec()) # application's event loop
- if __name__ == "__main__":
- sys.exit(main())
|