#!/usr/bin/env python3 """ DazedMTLTool GUI - Main Application A PyQt-based graphical user interface for the DazedMTLTool translation system. """ import re import sys import os import json import urllib.request import zipfile import shutil import tempfile from pathlib import Path if sys.platform.startswith("linux"): from util.linux_desktop import configure_qt_platform configure_qt_platform() from PyQt5.QtWidgets import ( QApplication, QMainWindow, QTabWidget, QVBoxLayout, QHBoxLayout, QWidget, QPushButton, QLabel, QFileDialog, QMessageBox, QProgressBar, QTextEdit, QSplitter, QGroupBox, QStatusBar, QStackedWidget, QToolButton, QDialog, QComboBox, QFrame ) from PyQt5.QtCore import Qt, QThread, pyqtSignal, QTimer, QSettings, QCoreApplication from PyQt5.QtGui import QIcon, QFont, QPixmap, QScreen, QGuiApplication from util.paths import PROJECT_ROOT, ICON_PATH, LAST_UPDATE_SHA_PATH def load_application_icon() -> QIcon: """Prefer ICO on Windows; PNG is fine for all platforms. Empty if missing.""" for path in (PROJECT_ROOT / "assets/icon.ico", ICON_PATH): if path.is_file(): icon = QIcon(str(path)) if not icon.isNull(): return icon return QIcon() def check_tool_update() -> str | None: """Return latest commit SHA when a tool update is available, else None.""" try: latest_sha = UpdateThread.fetch_latest_sha() sha_path = Path(UpdateThread.SHA_FILE) current_sha = sha_path.read_text().strip() if sha_path.is_file() else "" if latest_sha != current_sha: return latest_sha except Exception: pass return None class BackgroundUpdateCheckThread(QThread): """Checks for DazedMTLTool updates without blocking the UI.""" finished = pyqtSignal(object) # str | None — pending tool SHA when available def run(self): self.finished.emit(check_tool_update()) class UpdateThread(QThread): """Downloads and applies a tool update from git.dazedtl.dev (Gitea).""" REPO_HOST = "https://git.dazedtl.dev" REPO_OWNER = "dazed" REPO_SLUG = "dazed-mtl-tool" REPO_BRANCH = "main" ARCHIVE_ROOT = "dazed-mtl-tool" SHA_FILE = str(LAST_UPDATE_SHA_PATH) # Top-level paths that should never be touched during update PROTECTED_TOP = {".env", "venv", "log", "files", "translated"} # User-local files under data/ that must not be overwritten. # Shipped defaults (translation_contexts.json, skills/*.md, vocab_base.txt, …) # are intentionally updated so tool releases refresh prompts and contexts. PROTECTED_DATA_FILES = frozenset({ "data/vocab.txt", "data/last_update_sha.txt", "data/wolf_speakers.json", "data/wolf_safe_notes.json", }) # GitLab zip archives do not preserve Unix execute bits; restore after apply. EXECUTABLE_SUFFIXES = {".sh", ".desktop"} progress = pyqtSignal(str, int, str) # (stage, percent or -1, detail) finished = pyqtSignal(bool, str) # (success, message) STAGES = ("Downloading", "Extracting", "Applying") def __init__(self, parent=None): super().__init__(parent) @classmethod def should_install(cls, rel: Path) -> bool: """Return True when *rel* (path relative to archive root) may be copied.""" parts = rel.parts if not parts: return False if parts[0] in cls.PROTECTED_TOP: return False if rel.as_posix() in cls.PROTECTED_DATA_FILES: return False return True @staticmethod def _fmt_bytes(num: int) -> str: if num >= 1024 * 1024: return f"{num / (1024 * 1024):.1f} MB" if num >= 1024: return f"{num / 1024:.0f} KB" return f"{num} B" # ------------------------------------------------------------------ # def run(self): try: latest_sha = self._fetch_latest_sha() current_sha = self._read_stored_sha() if latest_sha == current_sha: self.finished.emit(True, "already_up_to_date") return self._download_and_apply(latest_sha) except Exception as exc: self.finished.emit(False, str(exc)) @classmethod def branch_api_url(cls) -> str: return ( f"{cls.REPO_HOST}/api/v1/repos/" f"{cls.REPO_OWNER}/{cls.REPO_SLUG}/branches/{cls.REPO_BRANCH}" ) @classmethod def archive_zip_url(cls) -> str: return ( f"{cls.REPO_HOST}/{cls.REPO_OWNER}/{cls.REPO_SLUG}/" f"archive/{cls.REPO_BRANCH}.zip" ) @classmethod def fetch_latest_sha(cls) -> str: req = urllib.request.Request( cls.branch_api_url(), headers={"User-Agent": "DazedMTLTool"} ) with urllib.request.urlopen(req, timeout=15) as resp: return json.loads(resp.read())["commit"]["id"] # ------------------------------------------------------------------ # def _fetch_latest_sha(self): return self.fetch_latest_sha() def _read_stored_sha(self): p = Path(self.SHA_FILE) return p.read_text().strip() if p.exists() else "" def _download_archive(self, zip_path: Path): req = urllib.request.Request( self.archive_zip_url(), headers={"User-Agent": "DazedMTLTool"} ) with urllib.request.urlopen(req, timeout=120) as resp, open(zip_path, "wb") as fh: total = int(resp.headers.get("Content-Length", 0) or 0) downloaded = 0 while True: chunk = resp.read(256 * 1024) if not chunk: break fh.write(chunk) downloaded += len(chunk) if total > 0: pct = min(70, int(downloaded * 70 / total)) detail = ( f"{self._fmt_bytes(downloaded)} of {self._fmt_bytes(total)}" ) else: pct = -1 detail = f"{self._fmt_bytes(downloaded)} downloaded" self.progress.emit("Downloading", pct, detail) def _download_and_apply(self, latest_sha): with tempfile.TemporaryDirectory() as tmp_dir: tmp = Path(tmp_dir) zip_path = tmp / "update.zip" self.progress.emit( "Downloading", -1, f"Fetching archive from {self.REPO_HOST}", ) self._download_archive(zip_path) self.progress.emit("Extracting", 75, "Unpacking update archive…") with zipfile.ZipFile(zip_path, "r") as zf: zf.extractall(tmp) extracted = tmp / self.ARCHIVE_ROOT root = Path(".").resolve() install_files = [ src for src in extracted.rglob("*") if src.is_file() and self.should_install(src.relative_to(extracted)) ] total_files = max(len(install_files), 1) self.progress.emit("Applying", 85, "Installing updated files…") for index, src in enumerate(install_files, start=1): rel = src.relative_to(extracted) dst = root / rel dst.parent.mkdir(parents=True, exist_ok=True) shutil.copy2(src, dst) if dst.suffix in self.EXECUTABLE_SUFFIXES: mode = dst.stat().st_mode | 0o111 dst.chmod(mode) pct = 85 + int(index * 15 / total_files) self.progress.emit("Applying", min(100, pct), str(rel)) Path(self.SHA_FILE).write_text(latest_sha) self.finished.emit(True, f"updated:{latest_sha[:8]}") class UpdateDialog(QDialog): """Modal dialog that shows update progress and result.""" _DIALOG_STYLE = """ QDialog { background-color: #2b2b2b; } QLabel#updateTitle { font-size: 18px; font-weight: bold; color: #ffffff; background: transparent; } QLabel#updateHeadline { font-size: 14px; font-weight: bold; color: #ffffff; background: transparent; } QLabel#updateDetail { font-size: 12px; color: #aaaaaa; background: transparent; } QLabel#updateVersionKey { font-size: 11px; color: #888888; background: transparent; } QLabel#updateVersionValue { font-size: 13px; font-weight: bold; color: #ffffff; background: transparent; font-family: Consolas, "Courier New", monospace; } QLabel#updateVersionArrow { font-size: 16px; color: #007acc; background: transparent; padding: 0 8px; } QFrame#updateVersionFrame { background-color: #353535; border: 1px solid #4a4a4a; border-radius: 6px; } QLabel#updateStep { font-size: 11px; color: #777777; background-color: #3a3a3a; border: 1px solid #4a4a4a; border-radius: 10px; padding: 4px 10px; } QLabel#updateStepActive { font-size: 11px; color: #ffffff; background-color: #007acc; border: 1px solid #007acc; border-radius: 10px; padding: 4px 10px; } QLabel#updateStepDone { font-size: 11px; color: #ffffff; background-color: #2d6a4f; border: 1px solid #40916c; border-radius: 10px; padding: 4px 10px; } QPushButton#updatePrimaryBtn { background-color: #0078d4; color: #ffffff; border: none; padding: 8px 18px; border-radius: 4px; font-weight: bold; min-width: 110px; } QPushButton#updatePrimaryBtn:hover { background-color: #106ebe; } QPushButton#updateSecondaryBtn { background-color: #404040; color: #ffffff; border: 1px solid #555555; padding: 8px 18px; border-radius: 4px; min-width: 90px; } QPushButton#updateSecondaryBtn:hover { background-color: #4a4a4a; } QProgressBar { background-color: #404040; border: 1px solid #555555; border-radius: 4px; text-align: center; color: #ffffff; height: 22px; } QProgressBar::chunk { background-color: #007acc; border-radius: 3px; } """ def __init__(self, parent=None, pending_tool_sha: str | None = None): super().__init__(parent) self.setWindowTitle("Tool Update") self.setMinimumWidth(480) self.setModal(True) self.setStyleSheet(self._DIALOG_STYLE) self._thread = None self._pending_tool_sha = pending_tool_sha self._current_stage = "" self._step_labels: dict[str, QLabel] = {} layout = QVBoxLayout(self) layout.setContentsMargins(24, 20, 24, 20) layout.setSpacing(14) header = QHBoxLayout() header.setSpacing(12) icon = QLabel() app_icon = load_application_icon() if not app_icon.isNull(): icon.setPixmap(app_icon.pixmap(40, 40)) else: icon.setText("⬆") icon.setStyleSheet("font-size: 28px; background: transparent;") header.addWidget(icon) title_col = QVBoxLayout() title_col.setSpacing(2) self.title_label = QLabel("DazedMTLTool Update") self.title_label.setObjectName("updateTitle") self.subtitle_label = QLabel("Stay current with the latest fixes and features.") self.subtitle_label.setObjectName("updateDetail") title_col.addWidget(self.title_label) title_col.addWidget(self.subtitle_label) header.addLayout(title_col, stretch=1) layout.addLayout(header) self.version_frame = QFrame() self.version_frame.setObjectName("updateVersionFrame") version_layout = QHBoxLayout(self.version_frame) version_layout.setContentsMargins(16, 12, 16, 12) version_layout.setSpacing(0) current_col = QVBoxLayout() current_col.setSpacing(2) current_key = QLabel("Installed") current_key.setObjectName("updateVersionKey") self.current_version_label = QLabel(self._installed_sha_display()) self.current_version_label.setObjectName("updateVersionValue") current_col.addWidget(current_key) current_col.addWidget(self.current_version_label) arrow = QLabel("→") arrow.setObjectName("updateVersionArrow") arrow.setAlignment(Qt.AlignCenter) new_col = QVBoxLayout() new_col.setSpacing(2) new_key = QLabel("Available") new_key.setObjectName("updateVersionKey") self.new_version_label = QLabel("Checking…") self.new_version_label.setObjectName("updateVersionValue") new_col.addWidget(new_key) new_col.addWidget(self.new_version_label) version_layout.addLayout(current_col, stretch=1) version_layout.addWidget(arrow) version_layout.addLayout(new_col, stretch=1) layout.addWidget(self.version_frame) self.headline_label = QLabel("Checking for updates…") self.headline_label.setObjectName("updateHeadline") self.headline_label.setWordWrap(True) layout.addWidget(self.headline_label) self.detail_label = QLabel("") self.detail_label.setObjectName("updateDetail") self.detail_label.setWordWrap(True) layout.addWidget(self.detail_label) steps_row = QHBoxLayout() steps_row.setSpacing(8) for stage in UpdateThread.STAGES: pill = QLabel(stage) pill.setObjectName("updateStep") pill.setAlignment(Qt.AlignCenter) self._step_labels[stage] = pill steps_row.addWidget(pill) steps_row.addStretch() self.steps_widget = QWidget() self.steps_widget.setLayout(steps_row) layout.addWidget(self.steps_widget) self.progress_bar = QProgressBar() self.progress_bar.setRange(0, 0) self.progress_bar.setFormat("%p%") self.progress_bar.setTextVisible(True) layout.addWidget(self.progress_bar) button_row = QHBoxLayout() button_row.addStretch() self.cancel_btn = QPushButton("Cancel") self.cancel_btn.setObjectName("updateSecondaryBtn") self.cancel_btn.clicked.connect(self.reject) self.action_btn = QPushButton("Update Now") self.action_btn.setObjectName("updatePrimaryBtn") self.action_btn.clicked.connect(self._do_update) self.action_btn.hide() button_row.addWidget(self.cancel_btn) button_row.addWidget(self.action_btn) layout.addLayout(button_row) @staticmethod def _short_sha(sha: str | None) -> str: if not sha: return "Unknown" return sha[:8] @classmethod def _installed_sha_display(cls) -> str: sha_path = Path(UpdateThread.SHA_FILE) if sha_path.is_file(): return cls._short_sha(sha_path.read_text().strip()) return "Not recorded" def _set_stage_pills(self, active_stage: str | None = None): stage_order = list(UpdateThread.STAGES) active_index = stage_order.index(active_stage) if active_stage in stage_order else -1 for index, stage in enumerate(stage_order): pill = self._step_labels[stage] if active_stage and index < active_index: pill.setObjectName("updateStepDone") elif stage == active_stage: pill.setObjectName("updateStepActive") else: pill.setObjectName("updateStep") pill.style().unpolish(pill) pill.style().polish(pill) def _set_progress(self, percent: int): if percent < 0: self.progress_bar.setRange(0, 0) self.progress_bar.setFormat("") return self.progress_bar.setRange(0, 100) self.progress_bar.setValue(max(0, min(100, percent))) self.progress_bar.setFormat("%p%") def _show_checking(self): self.headline_label.setText("Checking for updates…") self.detail_label.setText( f"Connecting to {UpdateThread.REPO_HOST} ({UpdateThread.REPO_BRANCH})" ) self.new_version_label.setText("Checking…") self.action_btn.hide() self.cancel_btn.setText("Cancel") self.steps_widget.hide() self._set_progress(-1) def start(self): self._show_checking() if self._pending_tool_sha: self._show_pending_updates() return self._thread = BackgroundUpdateCheckThread(parent=self) self._thread.finished.connect(self._on_check_finished) self._thread.start() def _show_pending_updates(self): self.steps_widget.hide() self._set_progress(-1) self.progress_bar.hide() self.cancel_btn.setText("Close") tool_sha = self._pending_tool_sha self.new_version_label.setText(self._short_sha(tool_sha)) if not tool_sha: self.headline_label.setText("You're up to date") self.detail_label.setText( f"No newer build found on {UpdateThread.REPO_BRANCH}." ) self.subtitle_label.setText("You're running the latest version.") self.action_btn.hide() return self.headline_label.setText("A new version is available") self.detail_label.setText( "Install the update to get the latest improvements. " "Your config, projects, and translated files are preserved." ) self.subtitle_label.setText("A newer build is ready to install.") self.action_btn.show() self.cancel_btn.setText("Not Now") def _on_check_finished(self, tool_sha: str | None): self._pending_tool_sha = tool_sha self._show_pending_updates() def _on_progress(self, stage: str, percent: int, detail: str): self._current_stage = stage self.steps_widget.show() self.progress_bar.show() self._set_stage_pills(stage) self.headline_label.setText(stage) self.detail_label.setText(detail) self._set_progress(percent) def _on_finished(self, success, message): self.steps_widget.hide() self.action_btn.hide() self.cancel_btn.setText("Close") if not success: self.progress_bar.hide() self.headline_label.setText("Update failed") self.detail_label.setText(message) self.subtitle_label.setText("Something went wrong while updating.") return self.progress_bar.show() self._set_progress(100) if message == "already_up_to_date": self.headline_label.setText("You're up to date") self.detail_label.setText( f"No newer build found on {UpdateThread.REPO_BRANCH}." ) self.subtitle_label.setText("You're running the latest version.") self.new_version_label.setText(self._installed_sha_display()) elif message.startswith("updated:"): sha = message.split(":", 1)[1] self._pending_tool_sha = None self.new_version_label.setText(sha) self.current_version_label.setText(sha) self.headline_label.setText("Update installed successfully") self.detail_label.setText( "Restart DazedMTLTool to load the new version." ) self.subtitle_label.setText("Update complete.") if isinstance(self.parent(), DazedMTLGUI): self.parent().clear_update_indicator() def _do_update(self): self.progress_bar.show() self.action_btn.hide() self.cancel_btn.setText("Cancel") self.subtitle_label.setText("Installing the latest build…") self.steps_widget.show() self._set_stage_pills("Downloading") self._set_progress(-1) if self._pending_tool_sha: self.new_version_label.setText(self._short_sha(self._pending_tool_sha)) self.headline_label.setText("Downloading") self.detail_label.setText( f"Fetching archive from {UpdateThread.REPO_HOST}" ) self._thread = UpdateThread(parent=self) self._thread.progress.connect(self._on_progress) self._thread.finished.connect(self._on_finished) self._thread.start() return self._set_progress(100) self.headline_label.setText("You're up to date") self.detail_label.setText( f"No newer build found on {UpdateThread.REPO_BRANCH}." ) # Import configuration widgets from gui.config_tab import ConfigTab from gui.translation_tab import TranslationTab from gui.workflow_tab import WorkflowTab from gui.wolf_workflow_tab import WolfWorkflowTab from gui.skills_tab import SkillsTab from gui.batch_tab import BatchTab class DazedMTLGUI(QMainWindow): """Main GUI window for the DazedMTLTool.""" def __init__(self): super().__init__() self.settings = QSettings("DazedTranslations", "DazedMTLTool") self._pending_tool_sha: str | None = None self._update_check_thread = None self._shutdown_started = False self._update_icon = "🔄" self.btn_update = None self.init_ui() self.setup_status_bar() self.setup_font_scaling() self.restore_window_state() QTimer.singleShot(500, self.start_background_update_check) def restore_window_state(self): """Restore window geometry and state from settings.""" try: # Restore window geometry geometry = self.settings.value("geometry") if geometry: self.restoreGeometry(geometry) # Restore window state (maximized, etc.) window_state = self.settings.value("windowState") if window_state: self.restoreState(window_state) except Exception as e: print(f"Warning: Could not restore window state: {e}") def save_window_state(self): """Save window geometry and state to settings.""" try: self.settings.setValue("geometry", self.saveGeometry()) self.settings.setValue("windowState", self.saveState()) except Exception as e: print(f"Warning: Could not save window state: {e}") def stop_all_background_threads(self): """Gracefully stop every background ``QThread`` before the process exits. A ``QThread`` that is destroyed while still running aborts the whole process with SIGABRT. Idempotent so ``closeEvent`` and ``aboutToQuit`` can both call this safely. """ if getattr(self, "_shutdown_started", False): return self._shutdown_started = True import gc current = QThread.currentThread() for obj in gc.get_objects(): try: if not isinstance(obj, QThread) or obj is current: continue if not obj.isRunning(): continue for stopper in ("stop", "requestInterruption"): fn = getattr(obj, stopper, None) if callable(fn): try: fn() except Exception: pass if not obj.wait(400): try: obj.terminate() obj.wait(400) except Exception: pass except Exception: continue def closeEvent(self, event): """Handle application close event.""" try: self.save_window_state() except Exception: pass try: if hasattr(self, 'translation_tab') and self.translation_tab: tt = self.translation_tab try: if hasattr(tt, 'translation_log_viewer') and tt.translation_log_viewer: tt.translation_log_viewer.stop_tail(drain=False) except Exception: pass try: if hasattr(tt, 'translation_worker') and tt.translation_worker and tt.translation_worker.isRunning(): tt.translation_worker.stop() if not tt.translation_worker.wait(2000): try: tt.translation_worker.terminate() tt.translation_worker.wait(500) except Exception: pass except Exception: pass except Exception: pass try: self.stop_all_background_threads() except Exception: pass event.accept() def setup_font_scaling(self): """Set up font scaling based on configuration.""" try: from dotenv import load_dotenv import os # Load environment variables load_dotenv() # Get font scale setting font_scale = float(os.getenv("font_scale", "1.0")) # Apply font scaling self.apply_font_scaling(font_scale) except Exception as e: print(f"Warning: Could not apply font scaling: {e}") def apply_font_scaling(self, scale_factor): """Apply font scaling to the entire application.""" try: app = QApplication.instance() if not app: return # Scale the application default font (affects widgets without inline font-size) font = app.font() font.setPointSize(max(6, int(9 * scale_factor))) app.setFont(font) # Scale inline font-size values in every widget's individual stylesheet. # We store the *original* stylesheet on each widget (using a Qt property) # so that re-scaling always starts from the unmodified values. for widget in app.allWidgets(): original = widget.property("_orig_stylesheet") if original is None: ss = widget.styleSheet() if not ss or 'font-size' not in ss: continue widget.setProperty("_orig_stylesheet", ss) original = ss scaled = re.sub( r'font-size:\s*(\d+(?:\.\d+)?)px', lambda m: f'font-size: {max(6, round(float(m.group(1)) * scale_factor))}px', original ) widget.setStyleSheet(scaled) # Update window title only when non-default scale is active if scale_factor != 1.0: self.setWindowTitle(f"DazedMTLTool - Visual Translation Interface (Font: {scale_factor:.1f}x)") else: self.setWindowTitle("DazedMTLTool - Visual Translation Interface") except Exception as e: print(f"Warning: Could not apply font scaling: {e}") def init_ui(self): """Initialize the user interface.""" self.setWindowTitle("DazedMTLTool - Visual Translation Interface") # Get screen geometry and set window size more responsively screen = QApplication.primaryScreen() screen_geometry = screen.availableGeometry() # Set window size to 80% of screen size, with reasonable minimums window_width = max(1200, int(screen_geometry.width() * 0.8)) window_height = max(800, int(screen_geometry.height() * 0.8)) # Center the window on screen x = (screen_geometry.width() - window_width) // 2 y = (screen_geometry.height() - window_height) // 2 self.setGeometry(x, y, window_width, window_height) # Set minimum size to prevent the window from becoming too small self.setMinimumSize(1000, 600) app_icon = load_application_icon() if not app_icon.isNull(): self.setWindowIcon(app_icon) # Create central widget and main layout central_widget = QWidget() self.setCentralWidget(central_widget) # Create main layout with VSCode-style sidebar main_layout = QHBoxLayout() main_layout.setContentsMargins(0, 0, 0, 0) main_layout.setSpacing(0) # Create sidebar for navigation sidebar = QWidget() sidebar.setFixedWidth(60) sidebar.setStyleSheet(""" QWidget { background-color: #2d2d30; } """) sidebar_layout = QVBoxLayout() sidebar_layout.setContentsMargins(0, 10, 0, 10) sidebar_layout.setSpacing(2) # Create navigation buttons self.nav_buttons = [] # Translation button (first) btn_translation = self.create_nav_button("🌐", "Translation") btn_translation.clicked.connect(lambda: self.switch_page(0)) sidebar_layout.addWidget(btn_translation) self.nav_buttons.append(btn_translation) # Workflow / Automation button (second) btn_workflow = self.create_nav_button("⚡", "Workflow") btn_workflow.setToolTip("Workflow — automated translation pipeline") btn_workflow.clicked.connect(lambda: self.switch_page(1)) sidebar_layout.addWidget(btn_workflow) self.nav_buttons.append(btn_workflow) # Batch history button (third) btn_batches = self.create_nav_button("📦", "Batches") btn_batches.setToolTip("Batches — Anthropic Message Batch history") btn_batches.clicked.connect(lambda: self.switch_page(2)) sidebar_layout.addWidget(btn_batches) self.nav_buttons.append(btn_batches) # Skills button (fourth) btn_skills = self.create_nav_button("📚", "Skills") btn_skills.setToolTip("Skills — edit system prompt, Project Setup, and translation contexts") btn_skills.clicked.connect(lambda: self.switch_page(3)) sidebar_layout.addWidget(btn_skills) self.nav_buttons.append(btn_skills) # Configuration button (fifth) btn_config = self.create_nav_button("⚙️", "Configuration") btn_config.clicked.connect(lambda: self.switch_page(4)) sidebar_layout.addWidget(btn_config) self.nav_buttons.append(btn_config) sidebar_layout.addStretch() # Update button at the bottom of the sidebar self.btn_update = self.create_nav_button(self._update_icon, "Check for Updates") self.btn_update.setCheckable(False) self.btn_update.clicked.connect(self.show_update_dialog) sidebar_layout.addWidget(self.btn_update) sidebar.setLayout(sidebar_layout) # Create stacked widget for content pages self.content_stack = QStackedWidget() # Add tabs to stacked widget self.setup_tabs() # Add sidebar and content to main layout main_layout.addWidget(sidebar) main_layout.addWidget(self.content_stack) central_widget.setLayout(main_layout) # Create menu bar self.create_menu_bar() # Select first page by default self.switch_page(0) def create_nav_button(self, icon_text, tooltip): """Create a navigation button for the sidebar.""" from gui.platform_glyph import configure_nav_toolbutton btn = QToolButton() btn.setToolTip(tooltip) btn.setFixedSize(60, 50) btn.setCheckable(True) configure_nav_toolbutton(btn, icon_text, horizontal=False) return btn def switch_page(self, index): """Switch to the specified page and update button states.""" self.content_stack.setCurrentIndex(index) # Update button checked states for i, btn in enumerate(self.nav_buttons): btn.setChecked(i == index) def setup_tabs(self): """Set up all the tabs in the interface.""" self.project_root = PROJECT_ROOT # Translation Execution Tab (index 0) self.translation_tab = TranslationTab(self) self.content_stack.addWidget(self.translation_tab) # Workflow / Automation Tab (index 1) — engine selector swaps between the # RPGMaker and Wolf guided panels while keeping a single sidebar button. self.content_stack.addWidget(self._create_workflow_container()) # Batch History Tab (index 2) self.batch_tab = BatchTab(self) self.content_stack.addWidget(self.batch_tab) # Skills Tab (index 3) self.skills_tab = SkillsTab(self) self.content_stack.addWidget(self.skills_tab) # Configuration Tab (index 4) self.config_tab = ConfigTab() self.config_tab.config_changed.connect(self.on_config_changed) self.content_stack.addWidget(self.config_tab) def _create_workflow_container(self) -> QWidget: """Wrap the RPGMaker and Wolf guided workflows behind an engine selector.""" container = QWidget() layout = QVBoxLayout(container) layout.setContentsMargins(0, 0, 0, 0) layout.setSpacing(0) # ── Engine selector bar ── bar = QWidget() bar.setStyleSheet( "QWidget{background-color:#252526;border-bottom:1px solid #3a3a3a;}" ) bar_layout = QHBoxLayout(bar) bar_layout.setContentsMargins(16, 6, 16, 6) bar_layout.setSpacing(8) engine_label = QLabel("Engine:") engine_label.setStyleSheet( "color:#9d9d9d;font-size:12px;font-weight:bold;background:transparent;border:none;" ) bar_layout.addWidget(engine_label) self.workflow_engine_combo = QComboBox() self.workflow_engine_combo.addItem("RPG Maker (MV/MZ/Ace)") self.workflow_engine_combo.addItem("Wolf RPG (WolfDawn)") self.workflow_engine_combo.setStyleSheet( "QComboBox{background-color:#3c3c3c;color:#cccccc;border:1px solid #555555;" "border-radius:4px;padding:3px 8px;font-size:12px;min-width:220px;}" "QComboBox:hover{border-color:#007acc;}" "QComboBox QAbstractItemView{background-color:#2d2d30;color:#cccccc;" "selection-background-color:#007acc;}" ) bar_layout.addWidget(self.workflow_engine_combo) bar_layout.addStretch() layout.addWidget(bar) # ── Stacked guided panels ── self.workflow_stack = QStackedWidget() self.workflow_tab = WorkflowTab(self) self.wolf_workflow_tab = WolfWorkflowTab(self) self.workflow_stack.addWidget(self.workflow_tab) self.workflow_stack.addWidget(self.wolf_workflow_tab) layout.addWidget(self.workflow_stack, 1) self.workflow_engine_combo.currentIndexChanged.connect( self.workflow_stack.setCurrentIndex ) return container def start_background_update_check(self): """Check for DazedMTLTool updates after the GUI is visible.""" if self._update_check_thread and self._update_check_thread.isRunning(): return self._update_check_thread = BackgroundUpdateCheckThread(self) self._update_check_thread.finished.connect(self._on_background_update_check) self._update_check_thread.start() def _on_background_update_check(self, tool_sha: str | None): self._pending_tool_sha = tool_sha if tool_sha: self.set_update_indicator() else: self.clear_update_indicator() def set_update_indicator(self): """Highlight the update button when updates are available.""" if not self.btn_update: return self.btn_update.setToolTip("Updates available — click to install") from gui.platform_glyph import configure_nav_toolbutton configure_nav_toolbutton( self.btn_update, self._update_icon, horizontal=False, update_available=True, ) def clear_update_indicator(self): """Restore the default update button appearance.""" self._pending_tool_sha = None if not self.btn_update: return self.btn_update.setToolTip("Check for Updates") from gui.platform_glyph import configure_nav_toolbutton configure_nav_toolbutton( self.btn_update, self._update_icon, horizontal=False, update_available=False, ) def show_update_dialog(self): """Open the update dialog and check for a newer version.""" dlg = UpdateDialog(self, pending_tool_sha=self._pending_tool_sha) dlg.start() dlg.exec_() self._pending_tool_sha = dlg._pending_tool_sha if self._pending_tool_sha: self.set_update_indicator() else: self.clear_update_indicator() def on_config_changed(self): """Handle configuration changes.""" # This will be called when font scale or other settings change try: config = self.config_tab.get_config() font_scale = config.get("font_scale", 1.0) self.apply_font_scaling(font_scale) except Exception as e: print(f"Warning: Could not apply configuration changes: {e}") def set_font_scale(self, scale_factor): """Set the font scale and update the configuration.""" try: # Apply the scaling immediately self.apply_font_scaling(scale_factor) # Update the configuration tab if it provides a font_scale widget try: if hasattr(self.config_tab, "font_scale_spin"): self.config_tab.font_scale_spin.setValue(scale_factor) except Exception: # If the widget isn't present or fails to update, continue silently pass # Save to .env file if the config tab provides save functionality try: if hasattr(self.config_tab, "save_to_env"): self.config_tab.save_to_env() except Exception: pass except Exception as e: QMessageBox.warning(self, "Warning", f"Failed to set font scale: {str(e)}") def create_menu_bar(self): """Create the menu bar.""" menubar = self.menuBar() # File menu file_menu = menubar.addMenu('File') # Load project action load_action = file_menu.addAction('Load Project') load_action.triggered.connect(self.load_project) # Save project action save_action = file_menu.addAction('Save Project') save_action.triggered.connect(self.save_project) file_menu.addSeparator() # Exit action exit_action = file_menu.addAction('Exit') exit_action.triggered.connect(self.close) # Tools menu tools_menu = menubar.addMenu('Tools') # Font Size submenu removed — font scaling menu was unreliable and has been removed tools_menu.addSeparator() # Check for updates update_action = tools_menu.addAction('Check for Updates') update_action.triggered.connect(self.show_update_dialog) tools_menu.addSeparator() # Reset to defaults reset_action = tools_menu.addAction('Reset to Defaults') reset_action.triggered.connect(self.reset_to_defaults) # Validate configuration validate_action = tools_menu.addAction('Validate Configuration') validate_action.triggered.connect(self.validate_configuration) # Help menu help_menu = menubar.addMenu('Help') # About action about_action = help_menu.addAction('About') about_action.triggered.connect(self.show_about) def setup_status_bar(self): """Set up the status bar (removed to save space).""" # Status bar removed to maximize space for content pass def load_project(self): """Load a project configuration.""" file_path, _ = QFileDialog.getOpenFileName( self, "Load Project Configuration", "", "JSON Files (*.json);;All Files (*)" ) if file_path: try: # Load configuration from file self.config_tab.load_from_file(file_path) except Exception as e: QMessageBox.critical(self, "Error", f"Failed to load project:\n{str(e)}") def save_project(self): """Save the current project configuration.""" file_path, _ = QFileDialog.getSaveFileName( self, "Save Project Configuration", "", "JSON Files (*.json);;All Files (*)" ) if file_path: try: # Save configuration to file config_data = self.config_tab.get_config() import json with open(file_path, 'w', encoding='utf-8') as f: json.dump(config_data, f, indent=2, ensure_ascii=False) except Exception as e: QMessageBox.critical(self, "Error", f"Failed to save project:\n{str(e)}") def reset_to_defaults(self): """Reset all configurations to default values.""" reply = QMessageBox.question( self, "Reset to Defaults", "Are you sure you want to reset all settings to their default values?", QMessageBox.Yes | QMessageBox.No, QMessageBox.No ) if reply == QMessageBox.Yes: self.config_tab.reset_to_defaults() def validate_configuration(self): """Validate the current configuration.""" try: # Validate configuration settings config_valid = self.config_tab.validate() if config_valid: QMessageBox.information(self, "Validation", "Configuration is valid!") else: QMessageBox.warning(self, "Validation", "Configuration has issues. Check the warnings.") except Exception as e: QMessageBox.critical(self, "Validation Error", f"Failed to validate configuration:\n{str(e)}") def show_about(self): """Show the about dialog.""" QMessageBox.about( self, "About DazedMTLTool GUI", """
A visual interface for the DazedMTLTool translation system.
This tool helps translate visual novels, RPG games, and other text-based content using AI translation services.
Features: