关键字查找,将匹配到的词标红

效果图:

        候补

特别说明:

        该文有很多新奇的用法,包括载入ui文件、连接信号和控件等等,有很多值得学习的地方

具体实现:

配置文件

#! [0]
QT += widgets uitoolsHEADERS = textfinder.h
SOURCES = textfinder.cpp main.cpp
RESOURCES = textfinder.qrc
#! [0]target.path = $$[QT_INSTALL_EXAMPLES]/uitools/textfinder
INSTALLS += target

main.cpp

#include "textfinder.h"
#include <QApplication>//! [0]
int main(int argc, char *argv[])
{QApplication app(argc, argv);TextFinder textFinder;textFinder.show();return app.exec();
}
//! [0]

textfinder.h  textfinder.cpp

#ifndef TEXTFINDER_H
#define TEXTFINDER_H#include <QWidget>QT_BEGIN_NAMESPACE
class QLineEdit;
class QPushButton;
class QTextEdit;
QT_END_NAMESPACE//! [0]
class TextFinder : public QWidget
{Q_OBJECTpublic:explicit TextFinder(QWidget *parent = nullptr);private slots:void on_findButton_clicked();private:QPushButton *ui_findButton;QTextEdit *ui_textEdit;QLineEdit *ui_lineEdit;
};
//! [0]#endif // TEXTFINDER_H/*********************************************************************/
#include "textfinder.h"
#include <QFile>
#include <QLineEdit>
#include <QMessageBox>
#include <QPushButton>
#include <QTextEdit>
#include <QTextStream>
#include <QUiLoader>
#include <QVBoxLayout>//! [4]
static QWidget *loadUiFile(QWidget *parent)
{QFile file(":/forms/textfinder.ui");file.open(QIODevice::ReadOnly);QUiLoader loader;return loader.load(&file, parent);
}
//! [4]//! [5]
static QString loadTextFile()
{QFile inputFile(":/forms/input.txt");inputFile.open(QIODevice::ReadOnly);QTextStream in(&inputFile);in.setCodec("UTF-8");return in.readAll();
}
//! [5]//! [0]
TextFinder::TextFinder(QWidget *parent): QWidget(parent)
{QWidget *formWidget = loadUiFile(this);//! [1]ui_findButton = findChild<QPushButton*>("findButton");ui_textEdit = findChild<QTextEdit*>("textEdit");ui_lineEdit = findChild<QLineEdit*>("lineEdit");
//! [0] //! [1]//! [2]QMetaObject::connectSlotsByName(this);
//! [2]//! [3a]ui_textEdit->setText(loadTextFile());
//! [3a]//! [3b]QVBoxLayout *layout = new QVBoxLayout;layout->addWidget(formWidget);setLayout(layout);
//! [3b]//! [3c]setWindowTitle(tr("Text Finder"));
}
//! [3c]//! [6] //! [7]
void TextFinder::on_findButton_clicked()
{QString searchString = ui_lineEdit->text();QTextDocument *document = ui_textEdit->document();bool found = false;// undo previous change (if any)document->undo();if (searchString.isEmpty()) {QMessageBox::information(this, tr("Empty Search Field"),tr("The search field is empty. ""Please enter a word and click Find."));} else {QTextCursor highlightCursor(document);QTextCursor cursor(document);cursor.beginEditBlock();
//! [6]QTextCharFormat plainFormat(highlightCursor.charFormat());QTextCharFormat colorFormat = plainFormat;colorFormat.setForeground(Qt::red);while (!highlightCursor.isNull() && !highlightCursor.atEnd()) {highlightCursor = document->find(searchString, highlightCursor,QTextDocument::FindWholeWords);if (!highlightCursor.isNull()) {found = true;highlightCursor.movePosition(QTextCursor::WordRight,QTextCursor::KeepAnchor);highlightCursor.mergeCharFormat(colorFormat);}}//! [8]cursor.endEditBlock();
//! [7] //! [9]if (found == false) {QMessageBox::information(this, tr("Word Not Found"),tr("Sorry, the word cannot be found."));}}
}
//! [8] //! [9]

textfinder.ui

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"><class>Form</class><widget class="QWidget" name="Form"><property name="geometry"><rect><x>0</x><y>0</y><width>378</width><height>158</height></rect></property><property name="windowTitle"><string>Find Text</string></property><layout class="QVBoxLayout"><property name="spacing"><number>6</number></property><property name="leftMargin"><number>9</number></property><property name="topMargin"><number>9</number></property><property name="rightMargin"><number>9</number></property><property name="bottomMargin"><number>9</number></property><item><layout class="QGridLayout"><property name="leftMargin"><number>0</number></property><property name="topMargin"><number>0</number></property><property name="rightMargin"><number>0</number></property><property name="bottomMargin"><number>0</number></property><property name="spacing"><number>6</number></property><item row="0" column="1"><widget class="QLineEdit" name="lineEdit"/></item><item row="0" column="0"><widget class="QLabel" name="searchLabel"><property name="text"><string>&amp;Keyword:</string></property><property name="buddy"><cstring>lineEdit</cstring></property></widget></item><item row="0" column="2"><widget class="QPushButton" name="findButton"><property name="text"><string>&amp;Find</string></property></widget></item></layout></item><item><widget class="QTextEdit" name="textEdit"/></item></layout></widget><resources/><connections><connection><sender>lineEdit</sender><signal>returnPressed()</signal><receiver>findButton</receiver><slot>animateClick()</slot><hints><hint type="sourcelabel"><x>261</x><y>17</y></hint><hint type="destinationlabel"><x>320</x><y>17</y></hint></hints></connection></connections>
</ui>

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

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

相关文章

自增a++和自减a--详细解析

1.自增、自减运算符是什么&#xff0c;有什么作用&#xff0c;需要注意什么? 、–;对当前变量值1、-1只能操作变量&#xff0c;不能操作字面量 2.自增、自减运算符放在变量前后有区别吗? 如果单独使用放前放后是没有区别的非单独使用:在变量前&#xff0c;先进行变量自增/…

unity学习(36)——角色选取界面(自制美工)

1.添加一个背景图片&#xff0c;记不住可以查之前的资料&#xff08;4&#xff09; 图片拖入asset&#xff0c;属性设成sprite&#xff1b;把图片拖到source image中&#xff1b;colour白色&#xff08;透明&#xff0c;点一下右边的笔即可&#xff09;&#xff1b;material为…

SpringCloud-Gateway网关的使用

本文介绍如何再 SpringCloud 项目中引入 Gateway 网关并完成网关服务的调用。Gateway 网关是一个在微服务架构中起到入口和路由控制的关键组件。它负责处理客户端请求&#xff0c;进行路由决策&#xff0c;并将请求转发到相应的微服务。Gateway 网关还可以实现负载均衡、安全认…

【零基础学习CAPL】——诊断报文发送

🙋‍♂️【零基础学习CAPL】系列💁‍♂️点击跳转 文章目录 1.概述2.调用CDD的诊断报文发送3.脱离CDD进行诊断报文4.多帧诊断报文的发送4.1.直接定义报文发送4.2调用osek_tp.dll进行多帧数据发送4.3.函数介绍4.4.CAPL脚本实现1.概述 本章主要介绍基于CAPL脚本对诊断报文的…

subprocess.check_output()和subprocess.run()的区别

subprocess.check_output() 返回值&#xff1a;subprocess.check_output() 返回命令的标准输出&#xff08;stdout&#xff09;。如果命令执行失败&#xff08;返回非零退出码&#xff09;&#xff0c;则抛出 CalledProcessError 异常。使用场景&#xff1a;只关心命令的输出&…

vue大文件读取部分内容,避免重复加载大文件,造成流量浪费

使用场景&#xff1a;项目点云地图是pcd文件&#xff0c;但是文件可能上百兆&#xff0c;我需要获取到文件中的版本信息&#xff0c;跟本地的缓存文件做比较&#xff0c;如果不一致&#xff0c;才会加载整个文件。从而节省流量。 避免重复加载整个“.pcd文件&#xff0c;以最大…

【PX4学习笔记】04.QGC地面站的使用

目录 文章目录 目录PX4代码烧入PX4固件代码的烧入方式1PX4固件代码的烧入方式2 QGC地面站的基础使用连接地面站的方式查看关键的硬件信息 QGC地面站的Application Settings模块Application Settings模块-常规界面单位其他设置数据持久化飞机中的数传日志飞行视图计划视图自动连…

观察者模式, 发布-订阅模式, 监听器模式

观察者模式, 发布-订阅模式, 监听器模式 观察者模式 观察者模式是一种行为型设计模式, 定义对象间的一种一对多的依赖关系&#xff0c;当一个对象的状态发生改变时&#xff0c;所有依赖于它的对象都得到通知并被自动更新 角色模型和结构图 在观察者模式中&#xff0c;只有两种…

HarmonyOS Stage模型基本概念讲解

本文 我们来说harmonyos中的一种应用模型 Stage模型 官方提供了两种模型 一种是早期的 FA模型 另一种就是就是 harmonyos 3.1才开始的新增的一种模型 Stage模型 目前来讲 Stage 会成为现在乃至将来 长期推进的一种模型 也就是 无论是 现在的harmonyos 4.0 乃至 之后要发布的 …

IP地理位置查询定位:技术原理与实际应用

在互联网时代&#xff0c;IP地址是连接世界的桥梁&#xff0c;而了解IP地址的地理位置对于网络管理、个性化服务以及安全监控都至关重要。IP数据云将深入探讨IP地理位置查询定位的技术原理、实际应用场景以及相关的隐私保护问题&#xff0c;旨在为读者提供全面了解和应用该技术…

印刷机械故障诊断:虹科MSR165助力Müller Martini AG成功案例

在为杂志装订机开发新产品的过程中&#xff0c;作为印刷后处理机械领域的全球领导者&#xff0c;Mller Martini AG公司发现了传感器故障的问题。通过使用虹科MSR 微型加速度数据记录仪&#xff0c;成功地确定了故障的原因。 新杂志装订机中的三刀修整装置的故障部件是边缘传感器…

BOSS直聘招聘经验

招聘低端兼职岗位。流量很大&#xff0c;来的人通常实力也不足。 招聘高端兼职岗位。流量不多。来的人通常具备一定实力。 招聘高薪职位&#xff0c;流量一般&#xff0c;会有有实力的勾搭。 招聘低薪职位&#xff0c;流量一般。通常没什么实力。

使用 Optimum Intel 在英特尔至强上加速 StarCoder: Q8/Q4 及投机解码

引言 近来&#xff0c;随着 BigCode 的 StarCoder 以及 Meta AI 的 Code Llama 等诸多先进模型的发布&#xff0c;代码生成模型变得炙手可热。同时&#xff0c;业界也涌现出了大量的致力于优化大语言模型 (LLM) 的运行速度及易用性的工作。我们很高兴能够分享我们在英特尔至强 …

测试多线程架构的问题

在测试多线程架构时&#xff0c;需要考虑多个方面以确保系统的稳定性和性能。以下是一些关键问题&#xff0c;需要在测试过程中特别关注&#xff1a; 线程同步 多线程环境中&#xff0c;线程同步是非常重要的问题。由于多个线程可能同时访问共享资源&#xff0c;因此需要使用…

Linux环境下查看磁盘层级占用空间的解决方案

大家好,我是爱编程的喵喵。双985硕士毕业,现担任全栈工程师一职,热衷于将数据思维应用到工作与生活中。从事机器学习以及相关的前后端开发工作。曾在阿里云、科大讯飞、CCF等比赛获得多次Top名次。现为CSDN博客专家、人工智能领域优质创作者。喜欢通过博客创作的方式对所学的…

Unity3D xLua开发环境搭建详解

前言 xLua是一种基于Lua语言的开发框架&#xff0c;可以帮助开发者在Unity3D中使用Lua脚本来开发游戏。 对惹&#xff0c;这里有一个游戏开发交流小组&#xff0c;希望大家可以点击进来一起交流一下开发经验呀&#xff01; 在本文中&#xff0c;我们将详细介绍如何搭建Unity…

好奇!为什么gateway和springMVC之间依赖冲突?

Gateway和SpringMVC之间存在冲突&#xff0c;可能是因为它们分别基于不同的技术栈。具体来说&#xff1a; 技术栈差异&#xff1a;Spring Cloud Gateway 是建立在 Spring Boot 2.x 和 Spring WebFlux 基础之上的&#xff0c;它使用的是非阻塞式的 Netty 服务器。而 Spring MVC…

C++从入门到精通 第十三章(认识STL)

写在前面&#xff1a; 本系列专栏主要介绍C的相关知识&#xff0c;思路以下面的参考链接教程为主&#xff0c;大部分笔记也出自该教程&#xff0c;笔者的原创部分主要在示例代码的注释部分。除了参考下面的链接教程以外&#xff0c;笔者还参考了其它的一些C教材&#xff08;比…

下一代自动化爬虫神器--playwright,所见即所得,配合逆向不要太香!!!

文章目录 1.Playwright介绍2.与 Selenium 和 pyppeteer 相比&#xff0c;Playwright 具有以下几个区别和优势3.在爬虫中使用 Playwright 的好处4.环境安装5.屏幕录制6.保留记录cookie信息7.playwright代码编写详解1.第一个Playwright脚本&#xff08;1&#xff09;同步模式&…

有向图的邻接表和邻接矩阵

邻接表 有向图的邻接表是一种常用的表示方法&#xff0c;用于表示图中各个节点之间的关系。在有向图中&#xff0c;每条边都有一个方向&#xff0c;因此邻接表中的每个节点记录了该节点指向的其他节点。 具体来说&#xff0c;有向图的邻接表由一个由节点和它们的邻居节点列表组…