关键信息标红

效果:

        导入一个文本文件到textEdit中,对指定的key关键字标红处理或者对关键字所在的行进行整行标红处理

实现:       

#ifndef WIDGET_H
#define WIDGET_H#include <QWidget>QT_BEGIN_NAMESPACE
namespace Ui { class Widget; }
QT_END_NAMESPACEclass Widget : public QWidget
{Q_OBJECTpublic:Widget(QWidget *parent = nullptr);~Widget();private slots:void on_selectBtn_clicked();//void on_setBtn_clicked();private:void defaultConfig();void loadStyleSheet(const QString &style);void filterKeyWord(const QString& key, const QString& color);private:Ui::Widget *ui;QString mAppPath;
};
#endif // WIDGET_Hcpp      //#include "widget.h"
#include "ui_widget.h"#include <QDebug>
#include <QDir>
#include <QFile>
#include <QStyle>
#include <QSettings>
#include <QTextStream>
#include <QFileDialog>
#include <QMessageBox>
#include <QTextDocument>Widget::Widget(QWidget *parent): QWidget(parent), ui(new Ui::Widget)
{ui->setupUi(this);defaultConfig();loadStyleSheet(":/home.qss");
}Widget::~Widget()
{delete ui;
}void Widget::loadStyleSheet(const QString &style)
{if(style.isEmpty())return;QFile file(style);if(!file.open(QFile::ReadOnly))return;this->style()->unpolish(this);setStyleSheet(file.readAll());this->style()->polish(this);
}void Widget::on_selectBtn_clicked()
{QSettings config(mAppPath+"/setting.ini", QSettings::NativeFormat);auto lastPath = config.value("last_path", QDir::homePath()).toString();auto file = QFileDialog::getOpenFileName(this, tr("OpenFile"), lastPath,tr("Text(*.txt);; All file(*.*)"));if(file.isEmpty())return;QFile inputFile(file);inputFile.open(QIODevice::ReadOnly);QTextStream in(&inputFile);in.setCodec("UTF-8");ui->textEdit->setText(in.readAll());inputFile.close();config.setValue("last_path", file);ui->path->setText(file);//ui->textEdit->document()->undo();config.beginGroup("keys");auto kk = config.childKeys();foreach (auto key, config.childKeys())filterKeyWord(key, config.value(key, "#000").toString());config.endGroup();
}void Widget::defaultConfig()
{mAppPath = QApplication::applicationDirPath();QSettings config(mAppPath+"/setting.ini", QSettings::NativeFormat);config.beginGroup("keys");if(config.childKeys().isEmpty()){config.setValue("ERROR", "#F00");config.setValue("FATAL", "#FF0");}config.endGroup();
}void Widget::filterKeyWord(const QString &key, const QString &color)
{QTextDocument *document = ui->textEdit->document();bool found = false;// undo previous change (if any)//document->undo();if (key.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(QColor(color));while (!highlightCursor.isNull() && !highlightCursor.atEnd()) {highlightCursor = document->find(key, highlightCursor,QTextDocument::FindWholeWords);if (!highlightCursor.isNull()) {found = true;//如果只是对关键字选中,则放开下面注释,并将下面select函数调用行注释掉
//                highlightCursor.movePosition(QTextCursor::WordRight,
//                                             QTextCursor::KeepAnchor);highlightCursor.select(QTextCursor::LineUnderCursor);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."));}}
}

ui文件,比较简单:

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"><class>Widget</class><widget class="QWidget" name="Widget"><property name="geometry"><rect><x>0</x><y>0</y><width>800</width><height>600</height></rect></property><property name="windowTitle"><string>LogParseTool</string></property><layout class="QVBoxLayout" name="verticalLayout" stretch="0,1"><property name="spacing"><number>15</number></property><item><layout class="QHBoxLayout" name="horizontalLayout" stretch="0,1,0,0"><property name="spacing"><number>6</number></property><item><widget class="QLabel" name="label"><property name="text"><string>File:</string></property></widget></item><item><widget class="QLineEdit" name="path"/></item><item><widget class="QPushButton" name="selectBtn"><property name="text"><string>Select</string></property></widget></item><item><spacer name="horizontalSpacer"><property name="orientation"><enum>Qt::Horizontal</enum></property><property name="sizeType"><enum>QSizePolicy::Minimum</enum></property><property name="sizeHint" stdset="0"><size><width>20</width><height>20</height></size></property></spacer></item></layout></item><item><widget class="QTextEdit" name="textEdit"><property name="contextMenuPolicy"><enum>Qt::NoContextMenu</enum></property><property name="verticalScrollBarPolicy"><enum>Qt::ScrollBarAlwaysOff</enum></property><property name="horizontalScrollBarPolicy"><enum>Qt::ScrollBarAsNeeded</enum></property></widget></item></layout></widget><resources/><connections/>
</ui>

样式表,qss文件:

#Widget
{background-color: #4A4A4A;
}#Widget #label
{color: #fff;font-weight: bold;
}#path
{color: #fff;border-top: 0px solid red;border-bottom: 1px solid #cdcdcd;border-left: 0px solid red;border-right: 0px solid red;background: transparent;
}#textEdit
{border-top: 0px solid red;border-bottom: 1px solid #cdcdcd;border-left: 1px solid #cdcdcd;border-right: 1px solid #cdcdcd;border: none;background-color: #4A4A4A;
}#selectBtn, #setBtn
{color: black;background: #2d6699;
}

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

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

相关文章

Django-聚合查询

Django 使用聚合查询前要先从 django.db.models 引入 Avg、Max、Min、Count、Sum&#xff08;首字母大写&#xff09;。 from django.db.models import Avg,Max,Min,Count,Sum # 引入函数 res models.Book.objects.aggregate(Avg("price")) print(res, type(res…

华为数通学习笔记(一):数据通信网络基础

华为数通学习笔记 前言&#xff1a;在学习大数据的过程中&#xff0c;我发现很多地方需要用到网络知识点&#xff0c;由于我哥考取了华为数通 HCIE 证书&#xff0c;目前正在一家大公司担任技术负责人&#xff0c;因此借此机会我要向他学习这方面的知识点&#xff0c;希望能够拓…

dbeaver更换下载驱动地址

DBeaver 是一个免费开源的数据库工具&#xff0c;提供对多种数据库系统的支持&#xff0c;包括 MySQL、PostgreSQL、Oracle、SQLite 等。它是一个通用的数据库管理工具&#xff0c;可以帮助用户连接、管理和查询各种类型的数据库。 下载地址 使用dbeaver连接数据库时需要先下…

【Spring Boot 3】获取已注入的Bean

【Spring Boot 3】获取已注入的Bean 背景介绍开发环境开发步骤及源码工程目录结构总结背景 软件开发是一门实践性科学,对大多数人来说,学习一种新技术不是一开始就去深究其原理,而是先从做出一个可工作的DEMO入手。但在我个人学习和工作经历中,每次学习新技术总是要花费或…

leetcode —— 多数元素

1 多数元素 给定一个大小为 n 的数组 nums &#xff0c;返回其中的多数元素。多数元素是指在数组中出现次数 大于 ⌊ n/2 ⌋ 的元素。你可以假设数组是非空的&#xff0c;并且给定的数组总是存在多数元素。 示例 1&#xff1a; 输入&#xff1a;nums [3,2,3] 输出&#xff…

Linux:kubernetes(k8s)探针LivenessProbe的使用(9)

他做的事情就是当我检测的一个东西他不在规定的时间内存在的话&#xff0c;我就让他重启&#xff0c;这个检测的目标可以是文件或者端口等 我这个是在上一章的基础之上继续操作&#xff0c;我会保留startupProbe探针让后看一下他俩的执行优先的一个效果 Linux&#xff1a;kuber…

prometheus监控zookeeper方案

这里要求zookeeper版本必须达到3.6或以上&#xff0c;用的是官方自带的监控信息。 官方下载地址 https://zookeeper.apache.org/releases.html#download 然后在zookeeper的配置文件&#xff0c;比如zoo.cfg最后面加上这一段 metricsProvider.classNameorg.apache.zookeeper.…

洛谷P2233 公交车路线

本题题号特殊&#xff0c;相对简单。 题目描述 在长沙城新建的环城公路上一共有 88 个公交站&#xff0c;分别为 A、B、C、D、E、F、G、H。公共汽车只能够在相邻的两个公交站之间运行&#xff0c;因此你从某一个公交站到另外一个公交站往往要换几次车&#xff0c;例如从公交站…

【C++从0到王者】第五十站:B树

文章目录 一、内查找与外查找1.内查找2.外查找 二、B树概念三、B树的插入1.B树的插入分析2.B树插入总结3.插入代码实现4.B树满树和最空时候的对比5.B树的删除6.遍历B树7.B树的性能分析 一、内查找与外查找 1.内查找 像我们之前所用的在内存中的查找就是内查找 种类数据格式时…

logrotate日志轮转

logrotate配置文件&#xff1a; 主配置文件&#xff1a; /etc/logrotate.conf (决定每个日志文件如何轮转) 配置日志轮转 vim /etc/logrotate.conf weekly #轮转的周期 rotate 4 #保留4份 create #轮转后创建新文件 …

C#,基于密度的噪声应用空间聚类算法(DBSCAN Algorithm)源代码

1 聚类算法 聚类分析或简单聚类基本上是一种无监督的学习方法&#xff0c;它将数据点划分为若干特定的批次或组&#xff0c;使得相同组中的数据点具有相似的属性&#xff0c;而不同组中的数据点在某种意义上具有不同的属性。它包括许多基于差分进化的不同方法。 E、 g.K-均值…

学习经验分享【NO.21】近期中文核心期刊目标检测论文理解

前言&#xff1a;最近比较忙&#xff0c;很久没有翻看知网论文了&#xff0c;看了下yolo改进相关的论文发现基于YOLOv5改进的核心期刊论文还是层出不穷&#xff0c;并没有因为已经是2024年了YOLOv9的出现而导致论文不好发&#xff0c;同时YOLOv8的论文也出了不少&#xff0c;所…

火柴排队(逆序对 + 离散化)

505. 火柴排队 原题链接 思路 如下是画图分析的一些过程 在这里贪心的思路是排序&#xff0c;然后两个数组都是从小到大那样对应的话最终的答案可达到最小 而我们只能交换相邻的火柴&#xff0c;故在这里先假设一个简化版本&#xff0c;即A有序&#xff0c;而只需要对B进行…

Java定时调度

在Java应用程序中&#xff0c;定时调度是一项重要的任务。它允许你安排代码执行的时间&#xff0c;以便在将来的某个时刻自动执行任务。Java提供了多种方式来实现定时调度&#xff0c;其中最常用的是Java的Timer和ScheduledExecutorService。 在本教程中&#xff0c;我们将学习…

《C++新经典对象模型》之第7章 模板实例化语义学

《C新经典对象模型》之第7章 模板实例化语义学 7.1 模板及其实例化详细分析7.1.1 函数模板7.1.2 类模板的实例化分析7.1.3 多个源文件中使用类模板07.01.cpp 7.2 炫技写法7.2.1 不能被继承的类7.2.2 类外调用私有虚成员函数07.02.cpp 7.1 模板及其实例化详细分析 7.1.1 函数模…

对于泛型的学习

泛型&#xff1a;是JDK5中引入的新特性&#xff0c;可以在编译阶段约束操作的数据类型&#xff0c;并进行检查。 泛型的格式&#xff1a;<数据类型> 注意&#xff1a;泛型只能支持引用的数据类型 import java.util.ArrayList; import java.util.Iterator;public class…

990-39产品经理:Top 5 Most Common Incident Response Scenarios 五大最常见的事件响应场景

Top 5 Most Common Incident Response Scenarios 五大最常见的事件响应场景 Dealing with a cyber incident can be a daunting experience. Whether you’re targeted by phishing, malicious network scanning, or ransomware, it’s easy to feel overwhelmed. Even if you…

蓝桥集训之日志统计

蓝桥集训之日志统计 核心思想&#xff1a; 双指针 用对组储存每次的时刻和编号双指针遍历对组 每次记录对应编号的赞1当该对组区间长度>d时 将上次记录的赞消掉若最终仍满足赞>k 则标记true #include<iostream>#include <algorithm>#include <cstring&…

Frontend - Boostrap 消息弹窗

目录 一、下载 &#xff08;一&#xff09;中文官网 &#xff08;二&#xff09;bootstrap v3 依赖 jQuery 插件 二、解压并安装 &#xff08;一&#xff09;解压 1. 压缩包解压 2. 简化文件 &#xff08;二&#xff09;安装 三、配置 &#xff08;一&#xff09;bas…

Docker 配置阿里云镜像加速器

一、首先需要创建一个阿里云账号 二、登录阿里云账号 三、进入控制台 四、搜索容器镜像服务&#xff0c;并选择 五、选择镜像工具中的镜像加速 六 、配置镜像源 注意&#xff1a;有/etc/docker文件夹的直接从第二个命令开始