Qt常用控件——QRadioButton和QCheckBox

文章目录

QRadioButton

QRadioButton是单选按钮,可以让我们在多个选项当中选择一个

作为QAbstractButtonQWidget的子类,它们的属性和语法,对于QRadioButton同样适用

QAbstractButton中和QRadioButton关联较大的属性

属性 说明
checkable 是否能被使用
checked 是否已经被选择(checkable是check的前提条件)
autoExclusive 是否排他 选中一个按钮之后,是否会取消其他按钮的选中 对于QRadioButton来说,默认排他的(单选)
cpp 复制代码
#include "widget.h"
#include "ui_widget.h"

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

    //添加默认选项
    ui->radioButton_other->setChecked(true);
    ui->label->setText("您的性别为: ?");
}

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


void Widget::on_radioButton_male_clicked()
{
    ui->label->setText("您的性别为: 男");
}

void Widget::on_radioButton_female_clicked()
{
    ui->label->setText("您的性别为: 女");
}

void Widget::on_radioButton_other_clicked()
{
    ui->label->setText("您的性别为: 其他");

}

这里可以看到QRadioButton默认是排他的,单选

禁用选项:

想要禁用某个按钮,可以用setCheckable(false)

cpp 复制代码
#include "widget.h"
#include "ui_widget.h"

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

    //添加默认选项
    ui->radioButton_other->setChecked(true);
    ui->label->setText("您的性别为: ?");

    //禁用
    ui->radioButton_disable->setCheckable(false);
}

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


void Widget::on_radioButton_male_clicked()
{
    ui->label->setText("您的性别为: 男");
}

void Widget::on_radioButton_female_clicked()
{
    ui->label->setText("您的性别为: 女");
}

void Widget::on_radioButton_other_clicked()
{
    ui->label->setText("您的性别为: 其他");

}

void Widget::on_radioButton_disable_clicked()
{
    ui->label->setText("error");
}

这里虽然不可选中,但是还是触发了点击事件。

这是因为checkable只能够让按钮不被选中,但还是可以响应点击事件

可以采用setEnabled或者setDisabled

cpp 复制代码
ui->radioButton_disable->setDisabled(true);
//ui->radioButton_disable->setEnabled(false);

QAbstractButton信号

  • clicked:之前大多数用的都是cicked()信号,表示一次点击事件(等于一次pressed + released
  • clicked(bool):参数的bool,表示是否被选中
  • pressed():鼠标按下
  • released():鼠标释放
  • toggled(bool):切换的时候会触发
cpp 复制代码
void Widget::on_radioButton_clicked(bool checked)
{
    //checked表示当前radioButton的选中状态
    qDebug() << "clicked: " << checked;
}

void Widget::on_radioButton_4_pressed()
{
    qDebug() << "pressd";
}

void Widget::on_radioButton_2_released()
{
    qDebug() << "released";
}

void Widget::on_radioButton_3_toggled(bool checked)
{
    //checked状态发生改变,就会触发这个信号
    qDebug() << "toggled: " << checked;
}

实现简单的点餐页面

这里分为三组,需要选择三个,但是radioButton默认是排他的,所有我们可以分组,采用QButtonGroup针对单选按钮进行分组

cpp 复制代码
#include "widget.h"
#include "ui_widget.h"
#include<QButtonGroup>
Widget::Widget(QWidget *parent)
    : QWidget(parent)
    , ui(new Ui::Widget)
{
    ui->setupUi(this);

    //进行分组
    QButtonGroup *group1 = new QButtonGroup(this);
    QButtonGroup *group2 = new QButtonGroup(this);
    QButtonGroup *group3 = new QButtonGroup(this);

    //将按钮放入不同组里
    group1->addButton(ui->radioButton);
    group1->addButton(ui->radioButton_2);
    group1->addButton(ui->radioButton_3);
    group1->addButton(ui->radioButton_4);

    group2->addButton(ui->radioButton_5);
    group2->addButton(ui->radioButton_6);
    group2->addButton(ui->radioButton_7);
    group2->addButton(ui->radioButton_8);


    group3->addButton(ui->radioButton_9);
    group3->addButton(ui->radioButton_10);
    group3->addButton(ui->radioButton_11);
    group3->addButton(ui->radioButton_12);

}

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

QCheckBox

QRadioButton只能选一个,而QCheckBox可以选中多个。

QCheckBox最相关的属性也是checkablechecked,都是继承自QAbstractButton

QCheckBox独有的属性tristate,用来实现"三态复选框"

示例:

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()
{
    QString ret = "今日:";
    if(ui->checkBox_work->isChecked())
    {
        ret += ui->checkBox_work->text() + " ";
    }
    if(ui->checkBox_eat->isChecked())
    {
        ret += ui->checkBox_eat->text() + " ";
    }
    if(ui->checkBox_sleep->isChecked())
    {
        ret += ui->checkBox_sleep->text() + " ";
    }
    if(ui->checkBox_drink->isChecked())
    {
        ret += ui->checkBox_drink->text() + " ";
    }
    ui->label->setText(ret);
}
相关推荐
-代号95273 分钟前
【JavaScript】十三、事件监听与事件类型
开发语言·javascript·ecmascript
写代码的小王吧26 分钟前
【Java可执行命令】(十)JAR文件签名工具 jarsigner:通过数字签名及验证保证代码信任与安全,深入解析 Java的 jarsigner命令~
java·开发语言·网络·安全·web安全·网络安全·jar
小卡皮巴拉33 分钟前
【力扣刷题实战】矩阵区域和
开发语言·c++·算法·leetcode·前缀和·矩阵
努力搬砖的咸鱼1 小时前
Qt中的数据解析--XML与JSON处理全攻略
xml·开发语言·qt·json
Pacify_The_North1 小时前
【C++进阶三】vector深度剖析(迭代器失效和深浅拷贝)
开发语言·c++·windows·visualstudio
神里流~霜灭1 小时前
蓝桥备赛指南(12)· 省赛(构造or枚举)
c语言·数据结构·c++·算法·枚举·蓝桥·构造
一人の梅雨1 小时前
化工网平台API接口开发实战:从接入到数据解析‌
java·开发语言·数据库
扫地的小何尚1 小时前
NVIDIA工业设施数字孪生中的机器人模拟
android·java·c++·链表·语言模型·机器人·gpu
Zfox_1 小时前
【C++项目】从零实现RPC框架「四」:业务层实现与项目使用
linux·开发语言·c++·rpc·项目
我想吃余1 小时前
【C++篇】类与对象(上篇):从面向过程到面向对象的跨越
开发语言·c++