@@ -309,18 +309,18 @@ class EventBus(QObject):
309309 file_modified = Signal(str , bool ) # path, is_modified
310310
311311 # Analyzer Events
312- analysis_requested = pyqtSignal (str ) # path
313- analysis_complete = pyqtSignal (dict ) # results
314- errors_found = pyqtSignal (list ) # error_list
312+ analysis_requested = Signal (str ) # path
313+ analysis_complete = Signal (dict ) # results
314+ errors_found = Signal (list ) # error_list
315315
316316 # Builder Events
317- build_requested = pyqtSignal (str ) # project_path
318- build_progress = pyqtSignal (int , str ) # percent, message
319- build_complete = pyqtSignal (bool , str ) # success, output_path
317+ build_requested = Signal (str ) # project_path
318+ build_progress = Signal (int , str ) # percent, message
319+ build_complete = Signal (bool , str ) # success, output_path
320320
321321 # Project Events
322- project_opened = pyqtSignal (str ) # project_path
323- project_closed = pyqtSignal ()
322+ project_opened = Signal (str ) # project_path
323+ project_closed = Signal ()
324324
325325 _instance = None
326326
@@ -431,7 +431,7 @@ class DevCenterProject:
431431``` python
432432# src/gui/widgets/project_explorer.py
433433class ProjectExplorer (QDockWidget ):
434- file_double_clicked = pyqtSignal (str )
434+ file_double_clicked = Signal (str )
435435
436436 def __init__ (self , parent = None ):
437437 super ().__init__ (" Project Explorer" , parent)
@@ -455,8 +455,8 @@ class ProjectExplorer(QDockWidget):
455455class WelcomeDialog (QDialog ):
456456 """ Startbildschirm mit Recent Projects"""
457457
458- project_selected = pyqtSignal (str )
459- new_project_requested = pyqtSignal ()
458+ project_selected = Signal (str )
459+ new_project_requested = Signal ()
460460```
461461
462462** Tasks:**
@@ -615,9 +615,9 @@ class OutputPanel(QDockWidget):
615615``` python
616616# src/modules/editor/python_runner.py
617617class PythonRunner (QObject ):
618- output_received = pyqtSignal (str )
619- error_received = pyqtSignal (str )
620- finished = pyqtSignal (int ) # exit_code
618+ output_received = Signal (str )
619+ error_received = Signal (str )
620+ finished = Signal (int ) # exit_code
621621
622622 def run (self , script_path : str , args : list = None ):
623623 self .process = QProcess()
@@ -690,7 +690,7 @@ class ASTAnalyzer:
690690``` python
691691# src/modules/analyzer/problems_provider.py
692692class ProblemsProvider (QObject ):
693- problems_updated = pyqtSignal (list )
693+ problems_updated = Signal (list )
694694
695695 def analyze_and_report (self , path : str ):
696696 result = self .analyzer.analyze_file(path)
@@ -796,8 +796,8 @@ class CodeNavigator:
796796from PyInstaller.__main__ import run as pyinstaller_run
797797
798798class BuildEngine (QObject ):
799- progress = pyqtSignal (int , str )
800- finished = pyqtSignal (bool , str )
799+ progress = Signal (int , str )
800+ finished = Signal (bool , str )
801801
802802 def build (self , config : BuildConfig):
803803 self .progress.emit(10 , " Preparing build..." )
@@ -1010,8 +1010,8 @@ class StorePackager:
10101010from anthropic import Anthropic
10111011
10121012class AIService (QObject ):
1013- response_received = pyqtSignal (str )
1014- error_occurred = pyqtSignal (str )
1013+ response_received = Signal (str )
1014+ error_occurred = Signal (str )
10151015
10161016 def __init__ (self ):
10171017 self .client = Anthropic(api_key = self ._get_api_key())
@@ -1197,7 +1197,7 @@ class ProfilerBridge:
11971197class GlobalSearchDialog (QDialog ):
11981198 """ Projekt-weite Suche (Ctrl+Shift+F)"""
11991199
1200- file_selected = pyqtSignal (str , int ) # path, line
1200+ file_selected = Signal (str , int ) # path, line
12011201```
12021202
12031203** Tasks:**
0 commit comments