Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot connect (null)::selectionChanged to QTableView

I have the following promoted QTableView:

class QRightClickableTableView : public QTableView {
  Q_OBJECT
public:
  explicit QRightClickableTableView(QWidget *parent = 0): QTableView(parent) {}

private slots:
  void mouseReleaseEvent(QMouseEvent *e) {
    if(e->button()==Qt::RightButton)
      emit rightClicked();
    else if (e->button()==Qt::LeftButton)
      emit leftClicked();
  }

signals:
  void rightClicked();
  void leftClicked();
};

When binding the selectionChanged signal of QRightClickableTableView, but getting an error. In .cpp:

QRightClickableTableView *table = ui->dataTableView;
connect(table, SIGNAL(leftClicked()), this, SLOT(on_tableViewLeftClicked()));
connect(table, SIGNAL(rightClicked()), this, SLOT(on_tableViewRightClicked()));

connect(table->selectionModel(), SIGNAL(selectionChanged(QItemSelection, QItemSelection)),
    SLOT(on_tableViewSelectionChanged(QItemSelection)));
table->setModel(model);

The leftClicked and rightClicked signals work as expected, but I get error:

QObject::connect: Cannot connect (null)::selectionChanged(QItemSelection, QItemSelection) to MyApp::on_tableViewSelectionChanged(QItemSelection)
like image 265
user2411693 Avatar asked Jun 12 '15 01:06

user2411693


1 Answers

The signal slot connection has failed since table->selectionModel() has returned null.

If you set the model for your table before making signal slot connection, table->selectionModel() will return a valid model, making the signal slot connection successful.

like image 81
Lahiru Chandima Avatar answered Oct 19 '22 06:10

Lahiru Chandima