04-1_Qt 5.9 C++开发指南_常用界面设计组件_字符串QString

本章主要介绍Qt中的常用界面设计组件,因为更多的是涉及如何使用,因此会强调使用,也就是更多针对实例,而对于一些细节问题,需要参考《Qt5.9 c++开发指南》进行学习。

文章目录

  • 1. 字符串与普通转换、进制转换
    • 1.1 可视化UI设计
    • 1.2 widget.h
    • 1.3 widget.cpp
  • 2. QString 的常用功能
    • 2.1 可视化UI设计
    • 2.2 widget.h
    • 2.3 widget.cpp

1. 字符串与普通转换、进制转换

图4-1是实例samp4_1 设计时的窗体,是基于QWidget 创建的可视化窗体。界面设计使用了布局管理,窗体上组件的布局是:上方的几个组件是一个 GridLayout,下方的9 个组件也是一个GridLayout,两个 GridLayout 和中间一个 VerticalSpacer又组成一个 VerticalLayout。

在这里插入图片描述

在布局设计时,要巧妙运用 VerticalSpacer 和 HorizontalSpacer,还要会设置组件的MaximumSize 和MinimumSize 属性,以取得期望的布局效果。例如,在图 4-1 中,两个 GridLayout 之间放了一个垂直方向的分隔,当窗体变大时,两个 GridLayout 的高度并不会发生变化;而如果不放置这个垂直分隔,两个 GridLayout的高度都会发生变化,GridLayout 内部组件的垂直距离会发生变化。

1.1 可视化UI设计

在这里插入图片描述

1.2 widget.h

#ifndef WIDGET_H
#define WIDGET_H#include <QWidget>namespace Ui {
class Widget;
}class Widget : public QWidget
{Q_OBJECTpublic:explicit Widget(QWidget *parent = 0);~Widget();private slots:void on_btnCal_clicked();  //计算 按键单击响应void on_btnDec_clicked();   //十进制转换为其他进制void on_btnBin_clicked();   //二进制转换为其他进制void on_btnHex_clicked();   //十六进制转换为其他进制private:Ui::Widget *ui;
};#endif // WIDGET_H

1.3 widget.cpp

#include "widget.h"
#include "ui_widget.h"
#include    <QString>Widget::Widget(QWidget *parent) :QWidget(parent),ui(new Ui::Widget)
{ui->setupUi(this);
}Widget::~Widget()
{delete ui;
}void Widget::on_btnCal_clicked()
{ //计算 按键单击响应int num=ui->editNum->text().toInt(); //读取字符串为整数float price=ui->editPrice->text().toFloat();//读取字符串为浮点数float total=num*price;//相乘计算QString str;
//    str=str.setNum(total,'f',2); //浮点数2位小数str=str.sprintf("%.2f",total); //格式化输出浮点数ui->editTotal->setText(str);//在文本框里显示
}void Widget::on_btnDec_clicked()
{ //读取十进制数,转换为其他进制int val=ui->editDec->text().toInt();//读取十进制数QString str=QString::number(val,16);// 显示为16进制 的字符串str=str.toUpper(); //转换为全大写字母ui->editHex->setText(str);//显示16进制字符串str=QString::number(val,2);// 显示2进制的字符串ui->editBin->setText(str);//显示二进制字符串
}void Widget::on_btnBin_clicked()
{ //读取二进制数,转换为其他进制的数bool ok;int val=ui->editBin->text().toInt(&ok,2);//以二进制数读入QString str=QString::number(val,10);//数字显示为10进制字符串ui->editDec->setText(str);//显示10进制数字符串str=QString::number(val,16);//显示为十六进制字符串str=str.toUpper(); //全大写字母ui->editHex->setText(str);//显示十六进制字符串
}void Widget::on_btnHex_clicked()
{//读取16进制数,转换为其他进制的数bool ok;int val=ui->editHex->text().toInt(&ok,16);//以十六进制数读入QString str=QString::number(val,10);// 显示为10进制字符串ui->editDec->setText(str);//显示为10进制字符串str=QString::number(val,2);// 显示二进制字符串ui->editBin->setText(str);//显示二进制字符串
}

2. QString 的常用功能

QString 是 Qt 编程中常用的类,除了用作数字量的输入输出之外,QString 还有很多其他功能,熟悉这些常见的功能,有助于灵活地实现字符串处理功能。
QString 存储字符串采用的是 Unicode 码,每一个字符是一个 16 位的 QChar,而不是8 位的char,所以 QString 处理中文字符没有问题,而且一个汉字算作是一个字符。

图4-2 是对 QString 常用函数的测试实例 samp4_2 的运行界面。下面在说明函数功能时,对于同名不同参数的函数,只说明某种参数下的使用实例。QString 还有很多功能函数没有在此介绍,在使用中如果遇到,可查询 Qt 的帮助文件。

在这里插入图片描述

2.1 可视化UI设计

在这里插入图片描述

2.2 widget.h

#ifndef WIDGET_H
#define WIDGET_H#include <QWidget>namespace Ui {
class Widget;
}class Widget : public QWidget
{Q_OBJECTpublic:explicit Widget(QWidget *parent = 0);~Widget();private slots:void on_pushButton_clicked();void on_pushButton_2_clicked();void on_pushButton_3_clicked();void on_pushButton_4_clicked();void on_pushButton_5_clicked();void on_pushButton_6_clicked();void on_pushButton_7_clicked();void on_pushButton_8_clicked();void on_pushButton_9_clicked();void on_pushButton_10_clicked();void on_pushButton_11_clicked();void on_pushButton_12_clicked();void on_pushButton_13_clicked();void on_pushButton_14_clicked();void on_pushButton_15_clicked();void on_pushButton_16_clicked();void on_pushButton_17_clicked();void on_pushButton_18_clicked();private:Ui::Widget *ui;
};#endif // WIDGET_H

2.3 widget.cpp

#include "widget.h"
#include "ui_widget.h"Widget::Widget(QWidget *parent) :QWidget(parent),ui(new Ui::Widget)
{ui->setupUi(this);
}Widget::~Widget()
{delete ui;
}void Widget::on_pushButton_clicked()
{//append()函数QString str1,str2;str1=ui->comboBox1->currentText();str2=ui->comboBox2->currentText();str1.append(str2);ui->edtResult->setText(str1);
}void Widget::on_pushButton_2_clicked()
{//prepend()函数QString str1,str2;str1=ui->comboBox1->currentText();str2=ui->comboBox2->currentText();str1.prepend(str2);ui->edtResult->setText(str1);
}void Widget::on_pushButton_3_clicked()
{//contains()函数QString str1,str2;str1=ui->comboBox1->currentText();str2=ui->comboBox2->currentText();bool chk;chk=str1.contains(str2);ui->checkBox->setChecked(chk);ui->checkBox->setText("contains()");ui->checkBox->sizeHint();
}void Widget::on_pushButton_4_clicked()
{//count()函数QString str1=ui->comboBox1->currentText();int i=str1.count();
//    int i=str1.length();ui->spinBox->setValue(i);ui->LabSpin->setText("count()");
}void Widget::on_pushButton_5_clicked()
{//size()函数QString str1;str1=ui->comboBox1->currentText();int i=str1.size();ui->spinBox->setValue(i);ui->LabSpin->setText("size()");}void Widget::on_pushButton_6_clicked()
{//endsWith()函数QString str1,str2;str1=ui->comboBox1->currentText();str2=ui->comboBox2->currentText();bool chk;chk=str1.endsWith(str2);ui->checkBox->setChecked(chk);ui->checkBox->setText("endsWith()");ui->checkBox->sizeHint();
}void Widget::on_pushButton_7_clicked()
{//indexOf()函数QString str1,str2;str1=ui->comboBox1->currentText();str2=ui->comboBox2->currentText();int i;i=str1.indexOf(str2);ui->spinBox->setValue(i);ui->LabSpin->setText("indexOf()");
}void Widget::on_pushButton_8_clicked()
{//isEmpty()函数QString str1;str1=ui->comboBox1->currentText();bool chk;chk=str1.isEmpty();ui->checkBox->setChecked(chk);ui->checkBox->setText("isEmpty()");ui->checkBox->sizeHint();
}void Widget::on_pushButton_9_clicked()
{//lastIndexOf()函数QString str1,str2;str1=ui->comboBox1->currentText();str2=ui->comboBox2->currentText();int i;i=str1.lastIndexOf(str2);ui->spinBox->setValue(i);ui->LabSpin->setText("lastIndexOf()");
}void Widget::on_pushButton_10_clicked()
{//startsWith()函数QString str1,str2;str1=ui->comboBox1->currentText();str2=ui->comboBox2->currentText();bool chk;chk=str1.startsWith(str2);ui->checkBox->setChecked(chk);ui->checkBox->setText("startsWith()");ui->checkBox->sizeHint();
}void Widget::on_pushButton_11_clicked()
{//toUpper()函数QString str1,str2;str1=ui->comboBox1->currentText();str2=str1.toUpper();ui->edtResult->setText(str2);
}void Widget::on_pushButton_12_clicked()
{//toLower()函数QString str1,str2;str1=ui->comboBox1->currentText();str2=str1.toLower();ui->edtResult->setText(str2);
}void Widget::on_pushButton_13_clicked()
{//trimmed()函数QString str1;str1=ui->comboBox1->currentText();str1=str1.trimmed();ui->edtResult->setText(str1);}void Widget::on_pushButton_14_clicked()
{//section()函数int i;QString str1,str2,str3;str1=ui->comboBox1->currentText();i=ui->spinBox->value();
//    str2=str1.section('\\',2,2);str3=ui->comboBox2->currentText();if (QString::compare(str3,"\\",Qt::CaseInsensitive)==0)str2=str1.section('\\',i,i+1); //elsestr2=str1.section(str3,i,i+1); //ui->edtResult->setText(str2);
}void Widget::on_pushButton_15_clicked()
{//left()函数QString str1,str2;str1=ui->comboBox1->currentText();int v=ui->spinBox->value();str2=str1.left(v);ui->edtResult->setText(str2);
}void Widget::on_pushButton_16_clicked()
{//right()函数QString str1,str2;str1=ui->comboBox1->currentText();int cnt=str1.size();int v=ui->spinBox->value();str2=str1.right(cnt-v-1);ui->edtResult->setText(str2);
}void Widget::on_pushButton_17_clicked()
{//simplified()函数QString str1;str1=ui->comboBox1->currentText();str1=str1.simplified();ui->edtResult->setText(str1);
}void Widget::on_pushButton_18_clicked()
{//isNull()函数QString str1;str1=ui->comboBox1->currentText();bool chk;chk=str1.isNull();ui->checkBox->setChecked(chk);ui->checkBox->setText("isNull()");ui->checkBox->sizeHint();
}

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

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

相关文章

死磕Android性能优化,卡顿原因与优化方案

随着移动互联网的快速发展&#xff0c;Android应用的性能优化变得尤为重要。卡顿是用户体验中最常见的问题之一&#xff0c;它会导致应用的响应变慢、界面不流畅&#xff0c;甚至影响用户的使用体验。因此&#xff0c;我们需要深入了解卡顿问题的原因&#xff0c;并寻找相应的解…

以http_proxy和ajp_proxy方式整合apache和tomcat(动静分离)

注意&#xff1a;http_proxy和ajp_proxy的稳定性不如mod_jk 一.http_proxy方式 1.下载mod_proxy_html.x86_64 2.在apache下创建http_proxy.conf文件&#xff08;或者直接写到conf/httpd.conf文件最后&#xff09; 3.查看server.xml文件 到tomcat的安装目录下的conf/serve…

[mongo]应用场景及选型

应用场景及选型 MongoDB 数据库定位 OLTP 数据库横向扩展能力&#xff0c;数据量或并发量增加时候架构可以自动扩展灵活模型&#xff0c;适合迭代开发&#xff0c;数据模型多变场景JSON 数据结构&#xff0c;适合微服务/REST API基于功能选择 MongoDB 关系型数据库迁移 从基…

如何在Spring MVC中使用@ControllerAdvice创建全局异常处理器

文章目录 前言一、认识注解&#xff1a;RestControllerAdvice和ExceptionHandler二、使用步骤1、封装统一返回结果类2、自定义异常类封装3、定义全局异常处理类4、测试 总结 前言 全局异常处理器是一种 &#x1f31f;✨机制&#xff0c;用于处理应用程序中发生的异常&#xff…

vivado tcl创建工程和Git管理

一、Tcl工程创建 二、Git版本管理 对于创建完成的工程需要Git备份时&#xff0c;不需要上传完整几百或上G的工程&#xff0c;使用tcl指令创建脚本&#xff0c;并只将Tcl脚本上传&#xff0c;克隆时&#xff0c;只需要克隆tcl脚本&#xff0c;使用vivado导入新建工程即可。 优…

使用openapi-generator-cli时遇到了代理的问题

前言&#xff1a;最近在捣鼓一个开源的管理kafka的web版&#xff0c;名字叫kafka-ui。准备部署到本地&#xff0c;方便平时遇到问题时&#xff0c;查看kafka的情况。开源项目github地址&#xff1a;点这里 。拿到这个项目&#xff0c;折腾了几天&#xff0c;今天终于编译成功了…

Kotlin语法

整理关键语法列表如下&#xff1a; https://developer.android.com/kotlin/interop?hlzh-cn官方指导链接 语法形式 说明 println("count ${countnum}")字符串里取值运算 val count 2 var sum 0 类型自动推导 val 定义只读变量&#xff0c;优先 var定义可变变量…

zookeeper的部署

一 先下载zookeeper 二 解压包 三 修改配置文件 四 把配好文件传到其他的节点上面 五 在每个节点的dataDir指定的目录下创建一个 myid 的文件 六 配置zook的启动脚本 七 设置开机自启 八 分别启动 九查看当前状态service zookeeper status 十 总结 一 先下载zookeeper …

vue 标题文字字数过长超出部分用...代替 动态显示

效果: 浏览器最大化: 浏览器缩小: 代码: html: <div class"title overflow">{{item.name}}</div> <div class"content overflow">{{item.content}}</div> css: .overflow {/* 一定要加宽度 */width: 90%;/* 文字的大小 */he…

Spring中的循环依赖问题

文章目录 前言一、什么是循环依赖&#xff1f;二、三级缓存三、图解三级缓存总结 前言 本文章将讲解Spring循环依赖的问题 一、什么是循环依赖&#xff1f; 一个或多个对象之间存在直接或间接的依赖关系&#xff0c;这种依赖关系构成一个环形调用&#xff0c;有下面 3 种方式…

Linux Shell 编程入门

从程序员的角度来看&#xff0c; Shell本身是一种用C语言编写的程序&#xff0c;从用户的角度来看&#xff0c;Shell是用户与Linux操作系统沟通的桥梁。用户既可以输入命令执行&#xff0c;又可以利用 Shell脚本编程&#xff0c;完成更加复杂的操作。在Linux GUI日益完善的今天…

Node.js |(四)HTTP协议 | 尚硅谷2023版Node.js零基础视频教程

学习视频&#xff1a;尚硅谷2023版Node.js零基础视频教程&#xff0c;nodejs新手到高手 文章目录 &#x1f4da;HTTP概念&#x1f4da;窥探HTTP报文&#x1f4da;请求报文的组成&#x1f407;HTTP请求行&#x1f407;HTTP请求头&#x1f407;HTTP的请求体 &#x1f4da;响应报文…