我在tableview的最后一列创建了一个QPushButton(其中包含连接到我的应用程序的客户端的IP地址)。使用该按钮,我可以使用按钮释放信号和插槽' handlebutton(int)'来断开该特定行中连接的客户端。
代码是 -
MainWindow::MainWindow(QWidget *parent) :
QDialog(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QSortFilterProxyModel *model = new QSortFilterProxyModel(this);
model = pCApp->guiClient()->getConnectionManagement()->getProxyModel();
ui->tableView->setModel(model);
QPushButton *button;
QSignalMapper *mapper = new QSignalMapper(this);
QObject::connect(mapper, SIGNAL (mapped(int)), this, SLOT (handleButton(int)));
for (int i = 0; i < model->rowCount(); i++)
{
button = new QPushButton;
button->setText("Disconnect " + QString::number(i));
button->setStyleSheet("QPushButton { color: #E5E5E5; }");
ui->tableView->setIndexWidget(model->index(i,2, QModelIndex()), button);
QObject::connect(button, SIGNAL(released()), mapper, SLOT(map()));
mapper->setMapping(button, i);
}
setAttribute(Qt::WA_DeleteOnClose);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::handleButton(int row)
{
CGuiClientMessage message;
message.setRecipient(CGuiMessage::R_GUISERVER);
message.setObjectId(0);
message.setCommand(CGuiMessage::DISCONNECT_PEER);
message.Parameter().setAttribute("Peers", ui->tableView->model()->data(ui->tableView->model()->index(row,1)).toString());
pCApp->guiClient()->SendMessageToPts(message);
}
现在,我想更新映射。我应该在插槽或其他地方做到这一点?请问,如果有人可以建议我如何以及在哪里做?
提前致谢!
答案 0 :(得分:0)
如果我做对了,你只需要在点击按钮时取消映射按钮,并断开相应的客户端。然后,您只需在相应的按钮上调用mapper->removeMapping(button)
即可。如果您需要再次映射此按钮 - 再次致电mapper->setMapping(button, i)
。
请注意,它不会断开映射器中的按钮released
信号。如果您需要 - 明确使用QObject::disconnect
。
此外,如果您的按钮被销毁,removeMapping
和disconnect
都会为您完成,因此您无需担心。