feat: Add chat to editor view and refactor current openning

This commit is contained in:
Petr Mironychev
2026-05-15 23:44:43 +02:00
parent eb7fc2f7b4
commit 6addcedfd0
27 changed files with 725 additions and 36 deletions

View File

@@ -7,9 +7,10 @@
namespace QodeAssist::Chat {
ChatOutputPane::ChatOutputPane(QQmlEngine* engine, QObject *parent)
ChatOutputPane::ChatOutputPane(
QQmlEngine *engine, SessionFileRegistry *sessionFileRegistry, QObject *parent)
: Core::IOutputPane(parent)
, m_chatWidget{new ChatWidget{engine}}
, m_chatWidget{new ChatWidget{engine, sessionFileRegistry}}
{
setId("QodeAssistChat");
setDisplayName(Tr::tr("QodeAssist Chat"));