Qt文本搜索

效果:

        按下ctrl+f跳出搜索框,然后支持搜索next或者previous。支持搜索下一步和上一步。

嵌入框的实现

#ifndef POPFINDBOX_H
#define POPFINDBOX_H#include <QWidget>class QLineEdit;
class QPushButton;
class PopFindBox : public QWidget
{Q_OBJECT
public:PopFindBox(QWidget* parent=nullptr);~PopFindBox();signals:void searchText(const QString& text);void searchNext(const QString& text);void searchPrev(const QString& text);protected:bool eventFilter(QObject *obj, QEvent *e);private:QLineEdit* key;QPushButton* prev;QPushButton* next;
};#endif // POPFINDBOX_H#include "popfindbox.h"#include <QEvent>
#include <QKeyEvent>
#include <QLineEdit>
#include <QPushButton>
#include <QHBoxLayout>
PopFindBox::PopFindBox(QWidget *parent):QWidget(parent)
{    key = new QLineEdit;key->setObjectName("keyword");prev = new QPushButton(tr("pre"), this);prev->setObjectName("prebtn");next = new QPushButton(tr("next"), this);next->setObjectName("nextbtn");QHBoxLayout* layout = new QHBoxLayout;layout->setContentsMargins(2,0,2,0);layout->addWidget(key);layout->addWidget(prev);layout->addWidget(next);layout->setStretch(0, 1);setLayout(layout);resize(260, 30);connect(prev, &QPushButton::clicked, this, [&]{emit searchPrev(key->text());});connect(next, &QPushButton::clicked, this, [&]{emit searchNext(key->text());});key->installEventFilter(this);//setWindowFlags(Qt::Widget|Qt::FramelessWindowHint); //for dialogsetWindowFlags(Qt::CustomizeWindowHint|Qt::FramelessWindowHint);
}PopFindBox::~PopFindBox()
{}bool PopFindBox::eventFilter(QObject *obj, QEvent *e)
{if(key == obj){if(e->type() == QEvent::KeyPress){QKeyEvent *ee = static_cast<QKeyEvent*>(e);if(ee && (ee->key() == Qt::Key_Enter || ee->key() == Qt::Key_Return)){searchText(key->text());return true;}}}return QWidget::eventFilter(obj, e);
}

qtextedit文本实现:

#ifndef LOGTEXTEDIT_H
#define LOGTEXTEDIT_H#include <QTextEdit>class PopFindBox;
class LogTextEdit : public QTextEdit
{Q_OBJECT
public:LogTextEdit(QWidget* parnet=nullptr);void searchPrevious(const QString& text);void searchNext(const QString& text);protected:void keyPressEvent(QKeyEvent *e);private:void searchText(const QString& text, QTextDocument::FindFlags flags);private:bool mFind{false};PopFindBox* findBox;    QTextCursor* mLastFound{nullptr};
};#endif // LOGTEXTEDIT_H
#include "logtextedit.h"
#include "popfindbox.h"#include <QColor>
#include <QMessageBox>
#include <QKeyEvent>
#include <QTextBlock>
#include <QTextCharFormat>LogTextEdit::LogTextEdit(QWidget *parnet):QTextEdit(parnet)
{    findBox = new PopFindBox(this);findBox->hide();connect(findBox, &PopFindBox::searchText, this, &LogTextEdit::searchNext);connect(findBox, &PopFindBox::searchNext, this, &LogTextEdit::searchNext);connect(findBox, &PopFindBox::searchPrev, this, &LogTextEdit::searchPrevious);connect(this, &LogTextEdit::cursorPositionChanged, [&]{if(mLastFound) *mLastFound = textCursor();});
}void LogTextEdit::searchPrevious(const QString& text)
{return searchText(text, QTextDocument::FindBackward);
}void LogTextEdit::searchNext(const QString& text)
{return searchText(text, QTextDocument::FindFlags());
}void LogTextEdit::keyPressEvent(QKeyEvent *e)
{if(e->key() == Qt::Key_F&& e->modifiers() == Qt::CTRL){        findBox->show();findBox->move(width()-findBox->width()-3, 1);}else if(e->key() == Qt::Key_Escape){findBox->hide();if(mFind){document()->undo();//delete mLastFound;//mLastFound = nullptr;}mFind = false;}
}void LogTextEdit::searchText(const QString &text, QTextDocument::FindFlags flags)
{if(text.isEmpty())return;bool clear = true;QSignalBlocker block(this);auto doc = this->document();if(!mLastFound)mLastFound = new QTextCursor(doc);QTextCursor highlightCursor(doc);QTextCursor cursor(doc);cursor.beginEditBlock();QTextCharFormat plainFormat(mLastFound->charFormat());QTextCharFormat colorFormat = plainFormat;colorFormat.setForeground(QColor("#ff8911"));while (!highlightCursor.isNull() && !highlightCursor.atEnd()){highlightCursor = doc->find(text, *mLastFound, flags);if (!highlightCursor.isNull()){this->setTextCursor(highlightCursor);//更新可见光标if(mFind && clear)doc->undo();*mLastFound = highlightCursor;mLastFound->movePosition(QTextCursor::WordRight,QTextCursor::KeepAnchor);mLastFound->mergeCharFormat(colorFormat);//highlightCursor.select(QTextCursor::LineUnderCursor); //select row instead of keywordmFind = true;clear = false;break;}}cursor.endEditBlock();if (clear)QMessageBox::information(this, tr("Word Not Found"),tr("Sorry, the word cannot be found."));
}#if 0
//点击搜索按钮查找相应字段、并高亮显示查到的第一个数据所在行
void searchText()
{QString text = ui->lineEdit->text().trimmed();if(nullptr == text){myHelper::ShowMessageBoxError(QString("搜索内容不能为空!"));return;}loginDoc = ui->txtMain->document(); //返回plainTextEdit加载的文本对象loginDocNum = loginDoc->blockCount() ;//返回文档中的文本块的数量,回车符是一个blocktravPlainTextDoc(index,loginDocNum,loginDoc,text);//index是我所使用到的控件stacketWidget的currentIndex,不用管。这个函数里面就是遍历数据以及高亮显示。
}//遍历并高亮显示查询到的第一个数据所在行
void travPlainTextDoc(int index,int docNum,QTextDocument *doc,QString text)
{
//2021-7-23 若之前设置了标记,需要将之前的标记颜色改为背景色recoverExtraSelection(index);for (int i = 0; i < docNum; i++){QTextBlock textLine = doc->findBlockByNumber(i) ; // 文本中的一段QString str = textLine.text();if(str.contains(text)){QList<QTextEdit::ExtraSelection> extraSelections;//提供一种方式显示选择的文本if(index == 0){loginCurrentDocNum = i;extraSelections = ui->txtMain->extraSelections();//获取之前高亮的设置ui->txtMain->setTextCursor(QTextCursor(textLine));//更新可见光标}QTextEdit::ExtraSelection selection;QColor lineColor = QColor("#F79332");selection.format.setBackground(lineColor);selection.format.setProperty(QTextFormat::FullWidthSelection, true);if(index == 0){selection.cursor = ui->txtMain->textCursor();}selection.cursor.clearSelection();//通过设置锚到光标位置清除当前的选择extraSelections.append(selection);if(index == 0){ui->txtMain->setExtraSelections(extraSelections);//设置高亮}
//查找到第一个就返回return;}}
}
//清除上一次的高亮行设置
void recoverExtraSelection(int index)
{QList<QTextEdit::ExtraSelection> selections;if(index == 0){selections = ui->txtMain->extraSelections();}
//这一步是高亮之前的颜色,没有这一步即使选择下一行高亮了,上一行高亮的也不会消失。不想恢复的当我没说。for(int i = 0;i < selections.count();i++){QColor lineColor = QColor("#646464");selections.at(i).format.setBackground(lineColor);selections.at(i).format.setProperty(QTextFormat::FullWidthSelection, true);}if(selections.count() > 0){if(index == 0){ui->txtMain->setExtraSelections(selections);//恢复背景色ui->txtMain->extraSelections().clear();}}
}//上一个,我没有写成循环的遍历的
void on_btn_searchLast_clicked()
{int index = ui->stackedWidget->currentIndex();QString text = ui->lineEdit->text().trimmed();if(nullptr == text){myHelper::ShowMessageBoxError(QString("当前搜索内容为空!"));return;}int currentDocNum = 0;int docNum = 0;QTextDocument *doc = nullptr;if(index == 0){currentDocNum = loginCurrentDocNum;docNum = loginDocNum;doc = loginDoc;}if(currentDocNum == 0){return;}recoverExtraSelection(index);for(int i = currentDocNum - 1;i < docNum;i--){QTextBlock textLine = doc->findBlockByNumber(i) ; // 文本中的一段QString str = textLine.text();if(str.contains(text)){QList<QTextEdit::ExtraSelection> extraSelections;//提供一种方式显示选择的文本if(index == 0){loginCurrentDocNum = i;extraSelections = ui->txtMain->extraSelections();//获取之前高亮的设置ui->txtMain->setTextCursor(QTextCursor(textLine));//更新可见光标}QTextEdit::ExtraSelection selection;QColor lineColor = QColor("#F79332");selection.format.setBackground(lineColor);selection.format.setProperty(QTextFormat::FullWidthSelection, true);if(index == 0){selection.cursor = ui->txtMain->textCursor();}selection.cursor.clearSelection();//通过设置锚到光标位置清除当前的选择extraSelections.append(selection);if(index == 0){ui->txtMain->setExtraSelections(extraSelections);//设置高亮}return;}}
}//下一个
void on_btn_searchNext_clicked()
{int index = ui->stackedWidget->currentIndex();QString text = ui->lineEdit->text().trimmed();if(nullptr == text){myHelper::ShowMessageBoxError(QString("当前搜索内容为空!"));return;}int currentDocNum = 0;int docNum = 0;QTextDocument *doc = nullptr;if(index == 0){currentDocNum = loginCurrentDocNum;docNum = loginDocNum;doc = loginDoc;}if(currentDocNum >= docNum - 1){myHelper::ShowMessageBoxError(QString(""));return;}recoverExtraSelection(index);for(int i = currentDocNum + 1;i < docNum;i++){QTextBlock textLine = doc->findBlockByNumber(i) ; // 文本中的一段QString str = textLine.text();if(str.contains(text)){QList<QTextEdit::ExtraSelection> extraSelections;//提供一种方式显示选择的文本if(index == 0){loginCurrentDocNum = i;extraSelections = ui->txtMain->extraSelections();//获取之前高亮的设置ui->txtMain->setTextCursor(QTextCursor(textLine));//更新可见光标}QTextEdit::ExtraSelection selection;QColor lineColor = QColor("#F79332");selection.format.setBackground(lineColor);selection.format.setProperty(QTextFormat::FullWidthSelection, true);if(index == 0){selection.cursor = ui->txtMain->textCursor();}selection.cursor.clearSelection();//通过设置锚到光标位置清除当前的选择extraSelections.append(selection);if(index == 0){ui->txtMain->setExtraSelections(extraSelections);//设置高亮}return;}}
}#endif

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/789169.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

深入理解Spring Boot Controller层的作用与搭建过程

在现代的Web应用开发中&#xff0c;Spring Boot作为一款快速、便捷的Java框架&#xff0c;为开发者提供了丰富的功能和便利的工具。其中&#xff0c;Controller层作为Spring Boot应用的核心之一&#xff0c;承担着处理HTTP请求、调用业务逻辑、数据封装和返回等重要任务。本文将…

KnowLog:基于知识增强的日志预训练语言模型|顶会ICSE 2024论文

徐波 东华大学副教授 东华大学计算机学院信息技术系副系主任&#xff0c;复旦大学知识工场实验室副主任&#xff0c;智能运维方向负责人。入选“上海市青年科技英才扬帆计划”。研究成果发表在IJCAI、ICDE、ICSE、ISSRE、ICWS、CIKM、COLING等国际会议上&#xff0c;曾获中国数…

Tauri 进阶使用与实践指南

Tauri 进阶使用与实践指南 调试技术 在 Tauri 应用开发中&#xff0c;调试分为两大部分&#xff1a;Web 端与 Rust 控制台。 Web 端调试 在 Web 端界面&#xff0c;可以直接采用浏览器内置的开发者工具进行调试。在 Windows 上&#xff0c;可以通过快捷键 Ctrl Shift i 打…

【turtle海龟先生】神奇的“圆”,画,太极圈,铜钱古币

turtle画圆三步法 步骤: 1、导入turtle库 2、确定半径&#xff0c;画圆(circle ) 3、结束(done ) turtle 库中提供一个直接画圆的函数 turtle.circle&#xff08;半径&#xff09;#半径单位为像素 例&#xff1a; turtle.circle ( 100 ) 表示绘制一个半径为100像素长度的圆形 …

基于ROS的地图发布和加载(GAZEBO仿真)

文章目录 环境配置启动仿真运动控制地图保存地图加载Q&A环境配置 cd ~/catkin_ws/src git clone https://github.com/wh200720041/warehouse_simulation_toolkit.git cd .. catkin_make source ~/catkin_ws/devel/setup.bash启动仿真 roslaunch warehou

js项目中常用的方法汇总

做了很多项目&#xff0c;发现有很多公用的js方法可以总结出来&#xff0c;不同的项目却可以使用这些通用的方法去解决业务上面的问题; 时间常用方法和冷门方法 请参考timeUtil 获取去当前网址url export function GetCurrentProjectUrl(pathname: string) {const location …

PostgreSQL备份还原数据库

1.切换PostgreSQL bin目录 配置Postgresql环境变量后可以不用切换 pg_dump 、psql都在postgresql bin目录下&#xff0c;所以需要切换到bin目录执行命令 2.备份数据库 方式一 语法 pg_dump -h <ip> -U <pg_username> -p <port> -d <databaseName>…

一、c++代码中的安全风险-strlen

一、函数 strlen 在C语言中,strlen是一个函数,计算字符串长度,遇见 \0 停止。如果没有 \0 将在内存中一直寻找,直到寻找到了\0停止。所以strlen还是存在很大的风险的。而且参数必须是字符型指针(char*)。当数组名作为参数传入时,实际上数组就退化成指针了…

2023年第三届 “联想杯”全国高校程序设计在线邀请赛暨第五届上海理工大学程序设计竞赛(同步赛)

A-3的倍数 首先求出sum&#xff0c;如果sum为3的倍数&#xff0c;那么直接可以降序 如果sum%31&#xff0c;那么优先删除一个对3取模余1的数&#xff0c;如果没有则删除两个对3取模余2的数 如果sum%32&#xff0c;那么优先删除一个对3取模余2的数&#xff0c;如果没有则删除…

【软件工程】详细设计(二)

这里是详细设计文档的第二部分。前一部分点这里 4. 学生端模块详细设计 学生端模块主要由几个组件构成&#xff1a;学生登录界面&#xff0c;成绩查询界面等界面。因为学生端的功能相对来说比较单一&#xff0c;因此这里只给出两个最重要的功能。 图4.1 学生端模块流程图 4.…

软考高级架构师:性能评价方法概念和例题

一、AI 讲解 性能评价是衡量计算机系统或其组件在指定条件下执行预期任务的有效性的一种方式。性能评价的方法主要可以分为几种&#xff0c;每种方法都有其特点和适用场景。 性能评价方法 方法描述时钟频率法通过计算机的时钟频率来评估性能&#xff0c;时钟频率越高&#x…

大话设计模式之状态模式

状态模式是一种行为设计模式&#xff0c;它允许对象在其内部状态发生变化时改变其行为。在状态模式中&#xff0c;对象将其行为委托给当前状态对象&#xff0c;从而在不同的状态下执行不同的行为&#xff0c;而不必在对象自身的代码中包含大量的条件语句。 通常&#xff0c;状…

mysql 相关链接与子查询的练习,以及索引视图的简单概述

4月1日 索引与视图 一 销售查询问题复习链接和子查询 1&#xff09;子查询相关sql语句 -- 结果返回一个值 select 查询字段 from 表 where 字段 [ > < <>] (子查询的内容)-- 单列多行 select 查询字段 from 表 where 字段 in (子查询)-- 多列多行 select 查询字…

06 监听器

文章目录 SessionAttListenerDemo.javaSessionListenerDemo.javaProductController.java SessionAttListenerDemo.java package com.aistart.listener;import javax.servlet.ServletContext; import javax.servlet.annotation.WebListener; import javax.servlet.http.HttpSess…

Tensorboard使用教程

Pytorch(九) —— Tensorboard(当有了tensorboard日志文件怎么可视化它)(同时显示多个模型)(vscode的tensorboard)(TensorboardX)_tensorboard --logdir-CSDN博客文章浏览阅读9.7k次&#xff0c;点赞10次&#xff0c;收藏56次。tensorboard.pyfrom tensorboardX import Summary…

NVIDIA Jetson Xavier NX增加swap分区大小

NVIDIA Jetson Xavier NX增加swap分区大小 1. 输入jtop查看swap空间大小 2. 依次输入命令 #1&#xff09;新增swapfile文件大小自定义 sudo fallocate -l 6G /var/swapfile #2&#xff09;配置该文件的权限 sudo chmod 600 /var/swapfile #3&#xff09;建立交换分区 sudo m…

最大子数组和-动态规划

53. 最大子数组和 问题&#xff1a;最大子数组和&#xff0c;找出数组中具有最大和的连续子数组。 思路&#xff1a; 暴力解法&#xff1a;通过两重循环遍历&#xff0c;得到所有子数组和。时间和空间复杂度都为O(n^2): class Solution {public int maxSubArray(int[] nums…

RuntimeError: Error compiling objects for extension虚拟环境和系统环境——添加、删除、修改环境变量

前言&#xff1a;因为一个报错RuntimeError: Error compiling objects for extension 没有配置cl.exe环境变量&#xff0c;我的应用场景是需要搞定虚拟环境变量配置 RuntimeError: Error compiling objects for extension手把手带你解决&#xff08;超详细&#xff09;-CSDN博…

爬虫 红网时刻 获取当月指定关键词新闻 并存储到CSV文件

目标网站&#xff1a;红网 爬取目的&#xff1a;为了获取某一地区更全面的在红网已发布的宣传新闻稿&#xff0c;同时也让自己的工作更便捷 环境&#xff1a;Pycharm2021&#xff0c;Python3.10&#xff0c; 安装的包&#xff1a;requests&#xff0c;csv&#xff0c;bs4&…

如何在pgAdmin中用替换的值更新jsonb列?(二)

上一篇提到怎么替换jsonb&#xff0c;链接如下&#xff1a; 如何在pgAdmin中用替换的值更新jsonb列&#xff1f;-CSDN博客 那么当jsonb嵌套jsonb应该怎么替换呢&#xff1f;像这样&#xff0c;类型依然是jsonb&#xff0c;只不过嵌套一层&#xff0c;JsonData&#xff1a;&qu…