代码之家  ›  专栏  ›  技术社区  ›  Schütze

QT:忽略复选框选择上的关键事件

  •  0
  • Schütze  · 技术社区  · 7 年前

    我在Windows上有一个QT应用程序,它有一个使用箭头键的模式,还有一个应该完全忽略这些箭头键的模式。也就是说,我希望一旦用户选中一个框,箭头键不会触发任何事件。

    我看到一个帖子 eventFilter() 有人建议,但我不知道如何使用它。下面是一个复选框事件,它侦听用户,并在用户检查后触发。在其他部分,我想要 eventFilter() 为箭头键工作,但到目前为止,我无法运行它。

    void MainWindow::on_checkBoxSmartCutMode_stateChanged(int arg1)
    {
        if (arg1 == 0)
        {
         // do as usual, arrow keys should work
        }
        else
        {
            eventFilter(); // if any arrow key is pressed, ignore the event
        }
    
    }
    

    1 回复  |  直到 7 年前
        1
  •  1
  •   Simon    7 年前

    您可以使用 keyEvent 作为您的密钥,通过覆盖进行筛选 keyPressEvent 并测试您的复选框状态。

    例子:

    void MainWindow::keyPressEvent(QKeyEvent *event)
    {
        // check your checkbox state
        if (ui->poCheckBox->checkState() == Qt::Unchecked)
           // do as usual, arrow keys should work
           return;
    
        switch(event->key())
        {
          case Qt::Key_Left:
          case Qt::Key_Right: // add more cases as needed
            event->ignore(); // if any arrow key is pressed, ignore the event
            return;
        }
    
        // handle the event
    }