Calculadora: QLineEdit e o display

This commit is contained in:
Luiz Otávio
2023-02-27 17:33:17 -03:00
parent 8c09f2b570
commit edc2cb9805
4 changed files with 30 additions and 1 deletions

View File

@@ -3,3 +3,10 @@ from pathlib import Path
ROOT_DIR = Path(__file__).parent
FILES_DIR = ROOT_DIR / 'files'
WINDOW_ICON_PATH = FILES_DIR / 'icon.png'
# Sizing
BIG_FONT_SIZE = 40
MEDIUM_FONT_SIZE = 24
SMALL_FONT_SIZE = 18
TEXT_MARGIN = 15
MINIMUM_WIDTH = 500