创建QDialog工程

创建QDialog工程

换掉图标











添加一个组件


水平布局



所有原件横向布局完成后,选中外框,点击Dialog,进行纵向布局

调整文本字体的大小




清空按钮的槽函数


下划线的槽函数


斜体的槽函数


加粗的槽函数


或者使用快剪辑:Alt+Enter。然后点击,"添加定义"


复制代码
#-------------------------------------------------
#
# Project created by QtCreator 2023-10-15T21:31:19
#
#-------------------------------------------------

QT       += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = Demo1
TEMPLATE = app

# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0


SOURCES += \
        main.cpp \
        dialog.cpp

HEADERS += \
        dialog.h

FORMS += \
        dialog.ui

RESOURCES += \
    pic.qrc

#ifndef DIALOG_H
#define DIALOG_H

#include <QDialog>

namespace Ui {
class Dialog;
}

class Dialog : public QDialog
{
    Q_OBJECT

public:
    explicit Dialog(QWidget *parent = 0);
    ~Dialog();

private slots:
    void on_pushButton_Clear_clicked();

    void on_checkBox_unline_clicked(bool checked);

    void on_checkBox_italic_clicked(bool checked);

    void on_checkBox_bold_clicked(bool checked);

    void do_FontColor();

private:
    Ui::Dialog *ui;
};

#endif // DIALOG_H

#include "dialog.h"
#include "ui_dialog.h"

Dialog::Dialog(QWidget *parent) :
    QDialog(parent),
    ui(new Ui::Dialog)
{
    ui->setupUi(this);

    connect(ui->radioButton_black, SIGNAL(clicked()), this, SLOT(do_FontColor()));
    connect(ui->radioButton_blue, SIGNAL(clicked()), this, SLOT(do_FontColor()));
    connect(ui->radioButton_red, SIGNAL(clicked()), this, SLOT(do_FontColor()));
}

Dialog::~Dialog()
{
    delete ui;
}

void Dialog::on_pushButton_Clear_clicked()
{
    ui->plainTextEdit->clear();//清空文本框
}

void Dialog::on_checkBox_unline_clicked(bool checked)
{
    QFont font = ui->plainTextEdit->font();//创建对象,并初始化为文本框字体型号
    font.setUnderline(checked);//如果下划线被选中
    ui->plainTextEdit->setFont(font);//则设置下划线
}

void Dialog::on_checkBox_italic_clicked(bool checked)
{
    QFont font = ui->plainTextEdit->font();//创建对象,并初始化为文本框字体型号
    font.setItalic(checked);//如果斜体被选中
    ui->plainTextEdit->setFont(font);//则设置斜体
}

void Dialog::on_checkBox_bold_clicked(bool checked)
{
    QFont font = ui->plainTextEdit->font();//创建对象,并初始化为文本框字体型号
    font.setBold(checked);//如果加粗被选中
    ui->plainTextEdit->setFont(font);//则设置加粗
}

void Dialog::do_FontColor()
{
    QPalette plet = ui->plainTextEdit->palette();//创建对象,并初始化为文本框字体颜色(获取颜色)

    if(ui->radioButton_black->isChecked())  //判断黑色按钮是否被选中
        plet.setColor(QPalette::Text,Qt::black);//如果选中了,设置为黑色
    if(ui->radioButton_blue->isChecked())  //判断蓝色按钮是否被选中
        plet.setColor(QPalette::Text,Qt::blue);//如果选中了,设置为蓝色
    if(ui->radioButton_red->isChecked())  //判断红色按钮是否被选中
        plet.setColor(QPalette::Text,Qt::red);//如果选中了,设置为红色

    ui->plainTextEdit->setPalette(plet);//设置文本框的颜色
}

#include "dialog.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Dialog w;
    w.show();

    return a.exec();
}
相关推荐
路由侠内网穿透几秒前
本地部署开源工作空间工具 AFFiNE 并实现外部访问
运维·服务器·数据库·物联网·开源
zzzsde3 分钟前
【Linux】Ext文件系统(1)
linux·运维·服务器
njidf3 分钟前
自动化机器学习(AutoML)库TPOT使用指南
jvm·数据库·python
灵魂猎手4 分钟前
14. MyBatis XML 热更新实战:告别重启烦恼
java·mybatis
程途知微4 分钟前
AQS 同步器——Java 并发框架的核心底座全解析
java·后端
爱学习的小囧5 分钟前
ESXi 8.0 无法选择分区方式 小白级详细解决办法
运维·服务器·网络·虚拟化·esxi8.0
F1FJJ9 分钟前
什么是 Shield CLI?视频讲解:一条命令,可浏览器远程访问一切内部服务(RDP/VNC/SSH/数据库等)
运维·网络·数据库·网络协议·ssh
sunwenjian88610 分钟前
SpringBean的生命周期
java·开发语言
毕设源码-赖学姐31 分钟前
【开题答辩全过程】以 基于Java的游泳馆会员管理系统的设计与实现为例,包含答辩的问题和答案
java·开发语言
星辰_mya35 分钟前
InnoDB的“身体结构”:页、Buffer Pool与Redo Log的底层奥秘
数据库·mysql·spring·面试·系统架构