Ai
1 Star 0 Fork 0

旷野芦苇殇/texteditor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
basehoverhandler.cpp 4.90 KB
一键复制 编辑 原始数据 按行查看 历史
旷野芦苇殇 提交于 2024-08-02 17:06 +08:00 . 初始化
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include "basehoverhandler.h"
#include "texteditor.h"
#include "utils/executeondestruction.h"
#include "utils/qtcassert.h"
#include "utils/tooltip/tooltip.h"
#include <QVBoxLayout>
namespace TextEditor {
BaseHoverHandler::~BaseHoverHandler() = default;
void BaseHoverHandler::showToolTip(TextEditorWidget *widget, const QPoint &point)
{
operateTooltip(widget, point);
}
void BaseHoverHandler::checkPriority(TextEditorWidget *widget,
int pos,
ReportPriority report)
{
//widget->setContextHelpItem({});
process(widget, pos, report);
}
int BaseHoverHandler::priority() const
{
if (m_priority >= 0)
return m_priority;
/*if (lastHelpItemIdentified().isValid())
return Priority_Help;*/
if (!toolTip().isEmpty())
return Priority_Tooltip;
return Priority_None;
}
void BaseHoverHandler::setPriority(int priority)
{
m_priority = priority;
}
/*void BaseHoverHandler::contextHelpId(TextEditorWidget *widget,
int pos,
const Core::IContext::HelpCallback &callback)
{
m_isContextHelpRequest = true;
// If the tooltip is visible and there is a help match, this match is used to update
// the help id. Otherwise, let the identification process happen.
if (!Utils::ToolTip::isVisible() || !lastHelpItemIdentified().isValid()) {
process(widget, pos, [this, widget = QPointer<TextEditorWidget>(widget), callback](int) {
if (widget)
propagateHelpId(widget, callback);
});
} else {
propagateHelpId(widget, callback);
}
m_isContextHelpRequest = false;
}*/
void BaseHoverHandler::setToolTip(const QString &tooltip, Qt::TextFormat format)
{
m_toolTip = tooltip;
m_textFormat = format;
}
const QString &BaseHoverHandler::toolTip() const
{
return m_toolTip;
}
/*void BaseHoverHandler::setLastHelpItemIdentified(const Core::HelpItem &help)
{
//m_lastHelpItemIdentified = help;
}
const Core::HelpItem &BaseHoverHandler::lastHelpItemIdentified() const
{
return {};
//return m_lastHelpItemIdentified;
}*/
bool BaseHoverHandler::isContextHelpRequest() const
{
return m_isContextHelpRequest;
}
/*void BaseHoverHandler::propagateHelpId(TextEditorWidget *widget,
const Core::IContext::HelpCallback &callback)
{
//const Core::HelpItem contextHelp = lastHelpItemIdentified();
//widget->setContextHelpItem(contextHelp);
//callback(contextHelp);
}*/
void BaseHoverHandler::process(TextEditorWidget *widget, int pos, ReportPriority report)
{
m_toolTip.clear();
m_priority = -1;
// m_lastHelpItemIdentified = Core::HelpItem();
identifyMatch(widget, pos, report);
}
void BaseHoverHandler::identifyMatch(TextEditorWidget *editorWidget, int pos, ReportPriority report)
{
Utils::ExecuteOnDestruction reportPriority([this, report](){ report(priority()); });
QString tooltip = editorWidget->extraSelectionTooltip(pos);
if (!tooltip.isEmpty())
setToolTip(tooltip);
}
void BaseHoverHandler::operateTooltip(TextEditorWidget *editorWidget, const QPoint &point)
{
/*const QVariant helpItem = m_lastHelpItemIdentified.isValid()
? QVariant::fromValue(m_lastHelpItemIdentified)
: QVariant();
const bool extractHelp = m_lastHelpItemIdentified.isValid()
&& !m_lastHelpItemIdentified.isFuzzyMatch();
const QString helpContents = extractHelp ? m_lastHelpItemIdentified.firstParagraph()
: QString();
if (m_toolTip.isEmpty() && helpContents.isEmpty()) {
Utils::ToolTip::hide();
} else {
if (helpContents.isEmpty()) {
Utils::ToolTip::show(point, m_toolTip, m_textFormat, editorWidget, helpItem);
} else if (m_toolTip.isEmpty()) {
Utils::ToolTip::show(point, helpContents, Qt::RichText, editorWidget, helpItem);
} else {
// separate labels for tool tip text and help,
// so the text format (plain, rich, markdown) can be handled differently
auto layout = new QVBoxLayout;
layout->setContentsMargins(0, 0, 0, 0);
auto label = new QLabel;
label->setObjectName("qcWidgetTipTopLabel");
label->setTextFormat(m_textFormat);
label->setText(m_toolTip);
layout->addWidget(label);
auto helpContentLabel = new QLabel("<hr/>" + helpContents);
helpContentLabel->setObjectName("qcWidgetTipHelpLabel");
layout->addWidget(helpContentLabel);
Utils::ToolTip::show(point, layout, editorWidget, helpItem);
}
}*/
}
} // namespace TextEditor
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fengzhu2007/texteditor.git
git@gitee.com:fengzhu2007/texteditor.git
fengzhu2007
texteditor
texteditor
main

搜索帮助