PyQt dark theme calculator
- Basic operation supported by most of the calculators(e.g. Arithmetic operation, square root, round)
- Supporting parentheses calculation
- Being able to open new calculator window
- Show tooltip(helpful message to how the button works) when mouse cursor hovered to button
- PyQt5 >= 5.15
- pyqt-style-setter - For theme
- pyqt-custom-titlebar-setter - For frameless window
- pyqt-custom-titlebar-window - To check the type of object(related to event handling)
- pyqt-resource-helper
pip3 install git+https://github.com/yjg30737/pyqt-dark-calculator.git --upgrade
Code Sample
from pyqt_dark_calculator.calculatorApp import CalculatorApp
if __name__ == "__main__":
import sys
app = CalculatorApp(sys.argv)
app.exec_()
Result