0

実際には、アプリケーションのすべてのショートカットを表示するために、.uiファイルからダイアログを作成します。通常のアイテム(qStringを持つセル)を持つQTableWidgetとセル内のQPushButtonがあります。私のSelectionBehaviorはQAbstractItemView::SelectRowsで、eventFilterをテーブル(->ビューポート)に追加します。セルを選択すると、期待どおりに行全体が選択されます。しかし、ボタンでセルにマウスを合わせると、このセルが選択されます。この動作を回避するにはどうすればよいですか?

mUiShortcutMapperDialog->tableShortcuts->setRowCount(mActionList.size());

    mUiShortcutMapperDialog->tableShortcuts->setColumnCount(4);
    QStringList headerLabels;
    int row = 0;
    for (std::list<QAction*>::const_iterator iterator = mActionList.cbegin(); iterator != mActionList.cend(); iterator++)
    {
        // Add Name to row
        headerLabels.append(QString( QVariant(row +1).toString()));

        QPushButton* _btn = new QPushButton("reset");
        _btn->setMaximumSize(50,20);
        tableShortcuts->setCellWidget(row, 0, _btn);
        tableShortcuts->setItem(row, 0, new QTableWidgetItem(""));

        mUiShortcutMapperDialog->tableShortcuts->setItem(row, 1, new QTableWidgetItem(QString("Edit")));
        QString name = (*iterator)->objectName();
        tableShortcuts->setItem(row, 2, new QTableWidgetItem(name));
        QKeySequence shortcut = (*iterator)->shortcut();
        tableShortcuts->setItem(row, 3, new QTableWidgetItem(shortcut.toString()));

        tableShortcuts->item(row,0)->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
        tableShortcuts->item(row,1)->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
        tableShortcuts->item(row,2)->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);
        tableShortcuts->item(row,3)->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled);

        row++;
    }
    tableShortcuts->setVerticalHeaderLabels(headerLabels);
    tableShortcuts->viewport()->installEventFilter(this);   // (mk) dunno if this is an good idea, we give the acutal class as eventfilter
    tableShortcuts->setSelectionBehavior(QAbstractItemView::SelectRows);
    tableShortcuts->setMouseTracking(true);
4

0 に答える 0