1
0
mirror of https://github.com/Palm1r/QodeAssist.git synced 2025-12-01 15:02:49 -05:00
Files
.github
ChatView
qml
dialog
CodeBlock.qml
TextBlock.qml
Badge.qml
ChatItem.qml
RootItem.qml
CMakeLists.txt
ChatModel.cpp
ChatModel.hpp
ChatRootView.cpp
ChatRootView.hpp
ChatUtils.cpp
ChatUtils.h
ChatWidget.cpp
ChatWidget.hpp
ClientInterface.cpp
ClientInterface.hpp
MessagePart.hpp
chat
core
llmcore
logger
providers
rawPromptExamples
resources
settings
templates
utils
.clang-format
.gitignore
.qmlformat.ini
CMakeLists.txt
ConfigurationManager.cpp
ConfigurationManager.hpp
DocumentContextReader.cpp
DocumentContextReader.hpp
LICENSE
LLMClientInterface.cpp
LLMClientInterface.hpp
LLMSuggestion.cpp
LLMSuggestion.hpp
LSPCompletion.hpp
QodeAssist.json.in
QodeAssist.qrc
QodeAssistClient.cpp
QodeAssistClient.hpp
QodeAssistConstants.hpp
QodeAssist_en_001.ts
QodeAssisttr.h
README.md
qodeassist.cpp
QodeAssist/ChatView/qml/dialog/TextBlock.qml
2024-11-11 11:18:37 +08:00

30 lines
873 B
QML

/*
* Copyright (C) 2024 Petr Mironychev
*
* This file is part of QodeAssist.
*
* QodeAssist is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* QodeAssist is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with QodeAssist. If not, see <https://www.gnu.org/licenses/>.
*/
import QtQuick
TextEdit {
id: root
readOnly: true
selectByMouse: true
wrapMode: Text.WordWrap
textFormat: Text.StyledText
}