gpt4 book ai didi

c++ - QTableView : How can i use clicked() signal correctly to get index of selected item?

转载 作者:行者123 更新时间:2023-11-28 05:48:29 27 4
gpt4 key购买 nike

我在每一行都有一个删除按钮。我正在尝试使用 QTableviewclicked() SIGNAL 来获取当前索引,然后执行相应的操作,但在这种情况下不会调用此插槽。由于某种原因它不起作用,我在连接 clicked() SIGNAL 时是否犯了一些错误?

    void MyClass::myFunction()
{
ComboBoxItemDelegate* myDelegate;
myDelegate = new ComboBoxItemDelegate();
model = new STableModel(1, 8, this);
filterSelector->tableView->setModel(model);
filterSelector->tableView->setItemDelegate(myDelegate);
connect(filterSelector->tableView, SIGNAL(clicked(const QModelIndex&)), this, SLOT(slotHandleDeleteButton(const QModelIndex&)));
exec();
}

void MyClass::slotHandleDeleteButton(const QModelIndex& index)
{
if(index.column() == 8)
model->removeRow(index.row());
}

最佳答案

其中一个解决方案可能如下所示:

class Button : public QPushButton
{
Q_OBJECT
public:
Button(int row, QWidget *parent = 0) : QPushButton(parent), m_row(row)
{
connect(this, SIGNAL(clicked()), this, SLOT(onClicked()));
}

signals:
void clicked(int row);

private slots:
void onClicked()
{
emit clicked(m_row);
}
private:
int m_row;
};

Button 类包含一个自定义信号 clicked(int),其中行号作为参数。要在您的 TableView 中使用它,您需要执行以下操作:

Button *btn = new Button(rowNumber, this);
connect(btn, SIGNAL(clicked(int)), this, SLOT(onButtonClicked(int)));

关于c++ - QTableView : How can i use clicked() signal correctly to get index of selected item?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35771060/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com