From b0aebdc04f221c2117c11f63baa4c55acd795133 Mon Sep 17 00:00:00 2001 From: bklronin Date: Sat, 11 Jul 2026 09:34:38 +0200 Subject: [PATCH] - Added save file foramt - Split main.py refactor --- .idea/workspace.xml | 21 ++++++++++++++++++--- src/fluency/ui/dialogs.py | 3 +++ 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index ee38b33..69a5a93 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -6,8 +6,7 @@ - - + diff --git a/src/fluency/ui/dialogs.py b/src/fluency/ui/dialogs.py index d2fd2ce..e76f4b9 100644 --- a/src/fluency/ui/dialogs.py +++ b/src/fluency/ui/dialogs.py @@ -9,6 +9,7 @@ from typing import Any, Dict, List, Optional, Tuple from PySide6.QtCore import Qt, QPoint, QPointF from PySide6.QtGui import QColor, QFont, QKeySequence from PySide6.QtWidgets import ( + QButtonGroup, QCheckBox, QComboBox, QDialog, @@ -16,8 +17,10 @@ from PySide6.QtWidgets import ( QDoubleSpinBox, QFormLayout, QFrame, + QGridLayout, QHBoxLayout, QLabel, + QLineEdit, QPushButton, QRadioButton, QVBoxLayout,