4

有什么方法可以检测用户是否点击了标签上的标签QCheckBox?如果是这样,我想执行一些操作,并且检查状态不应该更改为选中或未选中。

到目前为止,我找不到任何信号/方法。

4

2 回答 2

3

事件过滤器就是答案。

首先在要更改行为的复选框上安装事件过滤器(在构造期间):

ui->checkBox->installEventFilter(this);

然后在鼠标悬停在标签上时拒绝鼠标按下事件(注意标签如何在代码中本地化):

bool MainWindow::eventFilter(QObject *o, QEvent *e)
{
    if (o==ui->checkBox) {
        QMouseEvent*mouseEvent = static_cast<QMouseEvent*>(e);
        if (e->type()==QEvent::MouseButtonPress &&
                mouseEvent->button()==Qt::LeftButton) {
            QStyleOptionButton option;
            option.initFrom(ui->checkBox);
            QRect rect = ui->checkBox->style()->subElementRect(QStyle::SE_CheckBoxContents, &option, ui->checkBox);
            if (rect.contains(mouseEvent->pos())) {
                // consume event
                return true;
            }
        }
        return false;
    }
    return QMainWindow::eventFilter(o,e);
}

我已经在 Qt 4.8.1 for Linux 上对其进行了测试,它可以按你的意愿工作(鼠标点击标签被忽略,在复选框上它会切换复选框的状态)。

于 2014-02-28T13:18:58.690 回答
2

QLabel doesn't have an accessible 'on click' method, however you can subclass QLabel and reimplement the mousePressEvent(QMousePress *ev) slot which will allow you to do click detection.

于 2014-02-28T12:39:01.610 回答