Paso 2: Implementar sistema de mensajería/eventos con Event Bus y actualizar synchronizers para publicar eventos

This commit is contained in:
Padrino
2026-05-13 01:18:04 +02:00
parent b6c5dea86e
commit e3071a23e0
10 changed files with 1004 additions and 46 deletions
+29
View File
@@ -0,0 +1,29 @@
import QtQuick 2.15
import QtQuick.Window 2.15
import QtQuick.Controls 2.15
Window {
width: 1024
height: 768
visible: true
title: qsTr("Wino Mail Qt")
// Use the translator to set the title
// Note: we can't directly call translator.tr here because it's a C++ object.
// We'll set the title in Component.onCompleted by accessing the context property.
Component.onCompleted: {
title = translator.tr("appName")
}
Rectangle {
anchors.fill: parent
color: "#f0f0f0"
Text {
text: qsTr("Welcome to Wino Mail Qt!")
anchors.centerIn: parent
font.pointSize: 24
color: "#333"
}
}
}