- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我在其中一个行编辑器中插入一个数字时,我想让一个按钮可见。按钮和 linedit 在同一行。我知道 lineedit 的位置或名称,但我不知道如何链接回按钮以使其可见或能够更改颜色。
如果您查看 eventFilter,那就是我卡住的地方,我需要一些帮助。谢谢
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QLineEdit>
#include <QPushButton>
#include <QGridLayout>
#include <QLabel>
#include <QRegion>
#include <QLayoutItem>
#include <QList>
#include<QObject>
#include <QEvent>
#include <QKeyEvent>
#include <QModelIndexList>
#include <QKeySequence>
#include <QSignalMapper>
#include<QIntValidator>
#include <QDebug>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->scrollArea->setVerticalScrollBarPolicy( Qt::ScrollBarAlwaysOn );
ui->scrollArea->setWidgetResizable( true );
QWidget *widget = new QWidget(this);
ui->scrollArea->setWidget( widget );
QGridLayout *gridLayout = new QGridLayout();
widget->setLayout( gridLayout );
QPushButton *button[20];
for (int i = 0; i < 20; i++)
{
QLabel *label = new QLabel( QString( "%1" ).arg( i ) );
gridLayout->addWidget(label,i,1,1,1 );
gridLayout->setColumnMinimumWidth(1, 100);
gridLayout->setColumnMinimumWidth(2, 10);
if (i==5)
{
QLineEdit *lineEdit = new QLineEdit;
gridLayout->addWidget(lineEdit,i,5,1,1);
} else
{
QLineEdit *lineEdit = new QLineEdit(this);
gridLayout->addWidget(lineEdit,i,3,1,1);
lineEdit->setValidator(new QIntValidator(0,100,this));
lineEdit->setObjectName(QString::number(i));
lineEdit->installEventFilter(this);
gridLayout->setColumnMinimumWidth(4, 25);
gridLayout->setColumnMinimumWidth(5, 50);
gridLayout->setColumnMinimumWidth(6, 25);
QLineEdit *lineEdit_B = new QLineEdit;
gridLayout->addWidget(lineEdit_B,i,7,1,1);
lineEdit_B->setValidator(new QIntValidator(0,100,this));
gridLayout->setColumnMinimumWidth(8, 10);
}
gridLayout->setColumnMinimumWidth(9, 10);
button[i] = new QPushButton();
gridLayout->addWidget(button[i],i,10,1,1);
gridLayout->setColumnStretch(10,20);
button[i]->setFixedHeight(20);
button[i]->setFixedWidth(20);
button[i]->setStyleSheet("background-color:red;");
button[i]->setText(QString::number(i));
QRegion* region = new QRegion(*(new QRect(button[i]->x(),button[i]->y(),15,15)),QRegion::Ellipse);
button[i]->setMask(*region);
button[i]->setVisible(false);
gridLayout->setColumnMinimumWidth(10, 50);
gridLayout->setColumnMinimumWidth(11, 10);
}
}
MainWindow::~MainWindow()
{
delete ui;
}
bool MainWindow::eventFilter(QObject * obj, QEvent *event)// *event)
{
if (event->type() == QEvent::KeyPress)
{
ui->lineEdit->setText(QString("%1").arg(obj->objectName()));
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event);
qDebug() << "key " << keyEvent->key() << "from" << obj;
// HERE'S WHERE I NEED HELP
QPushButton* button = ui->scrollArea->findChild<QPushButton*>();
// I think here I would use a for loop to match the listedit
// with a number with the corresponding push button.
// When i find the push button I set it to yellow.
}
return QObject::eventFilter(obj, event);
}
void MainWindow::on_pushButton_clicked()
{
}
最佳答案
没有必要使用 eventFilter,因为很难区分它是哪个元素,所以会使任务复杂化。一种可能的选择是使用 textChanged 信号来显示按钮。
还有许多任务在循环中不必要地执行了很多次,那些不依赖于索引的任务必须退出。
此外,如果您要存储按钮,请不要使用数组,而是使用像 QList 这样的容器。
此外,您不应随意创建指针,因为消除它们是您的责任,例如,QRegion
是按值传递给 setMask()
,因此它没有必要创建指针。
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QGridLayout>
#include <QLabel>
#include <QLineEdit>
#include <QPushButton>
#include <QScrollArea>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->scrollArea->setVerticalScrollBarPolicy( Qt::ScrollBarAlwaysOn );
ui->scrollArea->setWidgetResizable( true );
QWidget *widget = new QWidget(this);
ui->scrollArea->setWidget( widget );
QGridLayout *gridLayout = new QGridLayout(widget);
for(int i=0; i<20; i++){
QLabel *label = new QLabel(QString::number(i));
gridLayout->addWidget(label, i, 1);
QPushButton *button = new QPushButton(QString::number(i));
gridLayout->addWidget(button,i,10,1,1);
button->setFixedSize(20, 20);
button->setStyleSheet("background-color:red;");
QRegion region(QRect(button->pos(),QSize(15,15)),QRegion::Ellipse);
button->setMask(region);
button->hide();
if(i==5){
QLineEdit *lineEdit = new QLineEdit;
gridLayout->addWidget(lineEdit,i,5);
connect(lineEdit, &QLineEdit::textChanged, [button](const QString &text){
button->setVisible(!text.isEmpty());
});
}
else{
QLineEdit *lineEdit_A = new QLineEdit;
gridLayout->addWidget(lineEdit_A,i,3);
lineEdit_A->setValidator(new QIntValidator(0,100,this));
QLineEdit *lineEdit_B = new QLineEdit;
gridLayout->addWidget(lineEdit_B,i, 7);
lineEdit_B->setValidator(new QIntValidator(0,100,this));
connect(lineEdit_A, &QLineEdit::textChanged, [button](const QString &text){
button->setVisible(!text.isEmpty());
});
connect(lineEdit_B, &QLineEdit::textChanged, [button](const QString &text){
button->setVisible(!text.isEmpty());
});
}
}
gridLayout->setColumnMinimumWidth(1, 100);
gridLayout->setColumnMinimumWidth(2, 10);
gridLayout->setColumnMinimumWidth(4, 25);
gridLayout->setColumnMinimumWidth(5, 50);
gridLayout->setColumnMinimumWidth(6, 25);
gridLayout->setColumnMinimumWidth(8, 10);
gridLayout->setColumnMinimumWidth(9, 10);
gridLayout->setColumnStretch(10,20);
gridLayout->setColumnMinimumWidth(10, 50);
gridLayout->setColumnMinimumWidth(11, 10);
}
MainWindow::~MainWindow()
{
delete ui;
}
完整的例子可以在下面的link中找到.
关于c++ - QLineEdit eventFilter 中的 QPushButton 颜色变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49163921/
我创建了一个 GUI 宽度的 Qt Creator (Qt 5.0.1),当然也使用了布局。出于美学原因,我希望 QPushButton 与放置在 GUI 其他角落的另一个 QPushButton 具
如何扩展棕色的对象(QPushButton)。 坦率地说,我曾尝试通过添加 Horizontal layout 来做到这一点,但似乎效果不佳。 如图所示,当小部件最大化时,我想扩展(仅宽度)特定
我有一个二维数组QPushButton,当用户点击它时我如何获取按钮的索引?例如当用户点击按钮 a[2][3] 时,它会显示 (2,3) ? 最佳答案 这个例子是这样的: Qt 4/5 使用对象名称
最近想要那个QPushButton当鼠标指针进入时可以发出信号。我怎样才能做到? 我知道 QPushButton 有一些已经定义好的信号,比如 clicked() , pressed() , dest
我是 PySide 的新手。我想在其单击的插槽中获取 QPushButton obj(例如使用它来获取其文本)。 button = QtGui.QPushButton("start go") butt
请注意 redb.clicked[bool].connect(self.setColor) 行,为什么要添加 [bool] 部分?我试图删除该部分,将行修改为 redb.clicked.connect
我在 Qt Designer 中设计了两种不同的 QPushButton。一个是默认的,另一个我想说清楚。在 QT Designer 中,我将后者的初始样式表设置如下: background-colo
我有一个包含以下结构的小部件和布局的大布局: QVBoxLayout QTableView QPushButton 我将布局上的边距、内边距和间距设置为 0。这在 Mac OS X 上呈现的方
我有以下按钮样式表: QPushButton:hover{ background: qlineargradient(x1 : 0, y1 : 0, x2 : 0, y2 : 1,
我有两个小部件(真实的和假的),其中一个有 QPushButton。现在我希望在另一个小部件中显示相同的按钮。我该怎么做? 我不想创建副本,我希望在不更改父级的情况下同时显示另一个小部件上的相同 QO
我在我的程序中使用 QPushButton()。使用这些按钮,我可以旋转我的对象。 到目前为止工作正常。唯一的问题是我必须单击多次才能进一步旋转对象。这有点烦人。只要我按下按钮并且对象将进一步旋转,按
我正在使用以下代码创建一个按钮。它工作正常。但我在左角得到了黄色矩形。为什么?请帮我。提前致谢, backButton = new QPushButton(tr("Back"));
我想让一些按钮看起来像你在 Skype 中看到的按钮。如何设计 QPushButton自定义形状?我不知道这样做。所以我需要一些建议。例如,我想要我的 QPushButton看起来像这样 image
我想将 QPushButton 对齐到右下角,但没有固定大小,因为如果我使用固定大小并调整窗口大小,它看起来就不再好看了。这是我的代码: self.copy_btn = QtWidgets.Q
我从 Qt 开始,每当有人将鼠标悬停在 QPushButton 上时,我想将 QPushButton 设置为不同的图标。到目前为止,这是我的代码: #include QPushButton *but
我在使用 Qt 4.6.0 和 QPushButtons 快捷方式时遇到问题: 当用户单击按钮时,我想在QTextEdit中显示特殊文本,但仅当按下按钮时,如下一旦发布,我希望出现另一个文本。 一切正
我从 Qt 开始,我想在有人将鼠标悬停在 QPushButton 上时将其设置为不同的图标。到目前为止,这是我的代码: #include QPushButton *button = new QPus
是否可以向 QPushButton 添加工具提示。我的意思是,当您将鼠标悬停在按钮上时,会出现一个小文本框(通常是黄色)并告诉用户该按钮正在做什么。 谢谢。 最佳答案 QPushButton 是 QW
我尝试在通过 QtWidgets.QColorDialog 设置 PNG 图像的颜色后更改其颜色。使用Python ---> 至 尽管如此,当我应用代码时,结果是: 它改变了我的PNG图像的背景 PN
我正在连接一个 QPushButton,它将在其中隐藏/显示框架内的小部件。 我使用 .ui 方法加载/创建了我的 GUI。 对于这个 QPushButton,我设置并检查了属性 setChecked
我是一名优秀的程序员,十分优秀!