Qt 实现当某个变量的值发生改变时修改按钮控件的参数
// mywidget.h
#ifndef MYWIDGET_H
#define MYWIDGET_H
#include <QWidget>
#include <QPushButton>
class MyWidget : public QWidget
{
Q_OBJECT //允许类中使用信号和槽的机制
signals:
void variableChanged(bool value);
public:
myWidget(QWidget *parent = 0);
~myWidget();
QPushButton *btn1;
QPushButton *btn2;
bool is_Auth;
private slots:
void handleVariableChanged(bool value);
};
#endif // MYWIDGET_H
#include "mywidget.h"
MyWidget::MyWidget(QWidget *parent)
: QWidget(parent)
{
//认证按钮
btn1 = new QPushButton;
btn1->setParent(this);
btn1->setText("开始认证");
btn1->move(45,260);
btn1->setStyleSheet("QPushButton{background-color:rgb(49,109,247); color:black}");
//btn1->setStyleSheet("background-color:rgb(128,128,128); color:black");
btn1->setEnabled(true);
//断线按钮
btn2 = new QPushButton;
btn2->setParent(this);
btn2->setText("断开连接");
btn2->move(160,260);
//btn2->setStyleSheet("QPushButton{background-color:rgb(201,89,99); color:black}");
btn2->setStyleSheet("background-color:rgb(128,128,128); color:black");
btn2->setEnabled(false);
//设置窗口固定大小
setFixedSize(290,300);
is_Auth = false;
connect(this, SIGNAL(variableChanged(bool)), this, SLOT(handleVariableChanged(bool)));
}
MyWidget::~MyWidget()
{
}
void myWidget::handleVariableChanged(bool value)
{
if(value)
{
qDebug()<< "PushButton enable";
btn1->setStyleSheet("background-color:rgb(128,128,128); color:black");
btn1->setEnabled(false);
btn2->setStyleSheet("QPushButton{background-color:rgb(201,89,99); color:black}");
btn2->setEnabled(true);
}
else
{
qDebug()<< "PushButton disable";
btn1->setStyleSheet("QPushButton{background-color:rgb(49,109,247); color:black}");
btn1->setEnabled(true);
btn2->setStyleSheet("background-color:rgb(128,128,128); color:black");
btn2->setEnabled(false);
}
}
后续实现实现时当is_Auth
值发送变化时,执行emit variableChanged(is_Auth);
即可
//伪代码如下
if(...)
{
is_Auth = false;
emit variableChanged(is_Auth);
}
else
{
is_Auth = true;
emit variableChanged(is_Auth);
}
效果大致如下:
初始状态:is_Auth = false;
满足条件时状态:is_Auth = true;