Connecting selection of row in 2 QTableWidget









up vote
1
down vote

favorite












I am trying to connect row selections from two QTableWidget.
I mean, when I select one row in Table 1, I want my program selects the same row in table 2. The two table dont have the same number of column so I cannot just select one item for the first and select the same item on the second able.
I have tried to use the following without success:



connect(ui->table1->selectionModel(), SIGNAL(currentRowChanged(QModelIndex, QModelIndex)), ui->table2->selectionModel(), SLOT(setCurrentIndex(QModelIndex)));


It is written:



QObject::connect: No such slot QItemSelectionModel::setCurrentIndex(QModelIndex)


Do you know what is going wrong?










share|improve this question



























    up vote
    1
    down vote

    favorite












    I am trying to connect row selections from two QTableWidget.
    I mean, when I select one row in Table 1, I want my program selects the same row in table 2. The two table dont have the same number of column so I cannot just select one item for the first and select the same item on the second able.
    I have tried to use the following without success:



    connect(ui->table1->selectionModel(), SIGNAL(currentRowChanged(QModelIndex, QModelIndex)), ui->table2->selectionModel(), SLOT(setCurrentIndex(QModelIndex)));


    It is written:



    QObject::connect: No such slot QItemSelectionModel::setCurrentIndex(QModelIndex)


    Do you know what is going wrong?










    share|improve this question

























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I am trying to connect row selections from two QTableWidget.
      I mean, when I select one row in Table 1, I want my program selects the same row in table 2. The two table dont have the same number of column so I cannot just select one item for the first and select the same item on the second able.
      I have tried to use the following without success:



      connect(ui->table1->selectionModel(), SIGNAL(currentRowChanged(QModelIndex, QModelIndex)), ui->table2->selectionModel(), SLOT(setCurrentIndex(QModelIndex)));


      It is written:



      QObject::connect: No such slot QItemSelectionModel::setCurrentIndex(QModelIndex)


      Do you know what is going wrong?










      share|improve this question















      I am trying to connect row selections from two QTableWidget.
      I mean, when I select one row in Table 1, I want my program selects the same row in table 2. The two table dont have the same number of column so I cannot just select one item for the first and select the same item on the second able.
      I have tried to use the following without success:



      connect(ui->table1->selectionModel(), SIGNAL(currentRowChanged(QModelIndex, QModelIndex)), ui->table2->selectionModel(), SLOT(setCurrentIndex(QModelIndex)));


      It is written:



      QObject::connect: No such slot QItemSelectionModel::setCurrentIndex(QModelIndex)


      Do you know what is going wrong?







      c++ qt qt5 selection qtablewidget






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 9 at 19:23









      eyllanesc

      72.2k93054




      72.2k93054










      asked Nov 9 at 18:19









      froz

      215




      215






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          The problem is caused because setCurrentIndex() has two parameters, and not just one, plus the signatures do not match. So in these cases you should use a lambda and use selectRow():



          #include <QApplication>
          #include <QHBoxLayout>
          #include <QTableWidget>
          #include <QItemSelectionModel>

          int main(int argc, char *argv)

          QApplication a(argc, argv);
          auto *table1 = new QTableWidget(4, 3);
          table1->setSelectionBehavior(QAbstractItemView::SelectRows);
          auto table2 = new QTableWidget(4, 4);
          table2->setSelectionBehavior(QAbstractItemView::SelectRows);

          QObject::connect(table1->selectionModel(), &QItemSelectionModel::currentRowChanged,
          [table2](const QModelIndex &current, const QModelIndex & previous)

          if(previous.isValid())
          table2->selectRow(current.row());
          );

          QWidget w;
          auto lay = new QHBoxLayout(&w);
          lay->addWidget(table1);
          lay->addWidget(table2);
          w.show();

          return a.exec();






          share|improve this answer






















          • Dear eyllanesc, Thank you for your answer. I tried to adapt your code to mine without success. I get compil error:expected ',' or ']' in lambda capture list. I did the following:
            – froz
            Nov 9 at 19:03











          • QObject::connect(ui->table1->selectionModel(), &QItemSelectionModel::currentRowChanged, [ui->table2](const QModelIndex &current, const QModelIndex & previous) if(previous.isValid()) QItemSelectionModel::SelectionFlags command = QItemSelectionModel::Rows );
            – froz
            Nov 9 at 19:03











          • @froz Do you have any error or warning message?
            – eyllanesc
            Nov 9 at 19:05










          • @froz change [ui->table2] to [this]
            – eyllanesc
            Nov 9 at 19:06










          • Thanks, It is working :) However, one last thing, I have in the terminal sometimes the following: qt.accessibility.core: Cannot create accessible child interface for object: QTableWidget(0x5593ad844f30, name = "table2") index: 23
            – froz
            Nov 9 at 19:12











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53231320%2fconnecting-selection-of-row-in-2-qtablewidget%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote



          accepted










          The problem is caused because setCurrentIndex() has two parameters, and not just one, plus the signatures do not match. So in these cases you should use a lambda and use selectRow():



          #include <QApplication>
          #include <QHBoxLayout>
          #include <QTableWidget>
          #include <QItemSelectionModel>

          int main(int argc, char *argv)

          QApplication a(argc, argv);
          auto *table1 = new QTableWidget(4, 3);
          table1->setSelectionBehavior(QAbstractItemView::SelectRows);
          auto table2 = new QTableWidget(4, 4);
          table2->setSelectionBehavior(QAbstractItemView::SelectRows);

          QObject::connect(table1->selectionModel(), &QItemSelectionModel::currentRowChanged,
          [table2](const QModelIndex &current, const QModelIndex & previous)

          if(previous.isValid())
          table2->selectRow(current.row());
          );

          QWidget w;
          auto lay = new QHBoxLayout(&w);
          lay->addWidget(table1);
          lay->addWidget(table2);
          w.show();

          return a.exec();






          share|improve this answer






















          • Dear eyllanesc, Thank you for your answer. I tried to adapt your code to mine without success. I get compil error:expected ',' or ']' in lambda capture list. I did the following:
            – froz
            Nov 9 at 19:03











          • QObject::connect(ui->table1->selectionModel(), &QItemSelectionModel::currentRowChanged, [ui->table2](const QModelIndex &current, const QModelIndex & previous) if(previous.isValid()) QItemSelectionModel::SelectionFlags command = QItemSelectionModel::Rows );
            – froz
            Nov 9 at 19:03











          • @froz Do you have any error or warning message?
            – eyllanesc
            Nov 9 at 19:05










          • @froz change [ui->table2] to [this]
            – eyllanesc
            Nov 9 at 19:06










          • Thanks, It is working :) However, one last thing, I have in the terminal sometimes the following: qt.accessibility.core: Cannot create accessible child interface for object: QTableWidget(0x5593ad844f30, name = "table2") index: 23
            – froz
            Nov 9 at 19:12















          up vote
          1
          down vote



          accepted










          The problem is caused because setCurrentIndex() has two parameters, and not just one, plus the signatures do not match. So in these cases you should use a lambda and use selectRow():



          #include <QApplication>
          #include <QHBoxLayout>
          #include <QTableWidget>
          #include <QItemSelectionModel>

          int main(int argc, char *argv)

          QApplication a(argc, argv);
          auto *table1 = new QTableWidget(4, 3);
          table1->setSelectionBehavior(QAbstractItemView::SelectRows);
          auto table2 = new QTableWidget(4, 4);
          table2->setSelectionBehavior(QAbstractItemView::SelectRows);

          QObject::connect(table1->selectionModel(), &QItemSelectionModel::currentRowChanged,
          [table2](const QModelIndex &current, const QModelIndex & previous)

          if(previous.isValid())
          table2->selectRow(current.row());
          );

          QWidget w;
          auto lay = new QHBoxLayout(&w);
          lay->addWidget(table1);
          lay->addWidget(table2);
          w.show();

          return a.exec();






          share|improve this answer






















          • Dear eyllanesc, Thank you for your answer. I tried to adapt your code to mine without success. I get compil error:expected ',' or ']' in lambda capture list. I did the following:
            – froz
            Nov 9 at 19:03











          • QObject::connect(ui->table1->selectionModel(), &QItemSelectionModel::currentRowChanged, [ui->table2](const QModelIndex &current, const QModelIndex & previous) if(previous.isValid()) QItemSelectionModel::SelectionFlags command = QItemSelectionModel::Rows );
            – froz
            Nov 9 at 19:03











          • @froz Do you have any error or warning message?
            – eyllanesc
            Nov 9 at 19:05










          • @froz change [ui->table2] to [this]
            – eyllanesc
            Nov 9 at 19:06










          • Thanks, It is working :) However, one last thing, I have in the terminal sometimes the following: qt.accessibility.core: Cannot create accessible child interface for object: QTableWidget(0x5593ad844f30, name = "table2") index: 23
            – froz
            Nov 9 at 19:12













          up vote
          1
          down vote



          accepted







          up vote
          1
          down vote



          accepted






          The problem is caused because setCurrentIndex() has two parameters, and not just one, plus the signatures do not match. So in these cases you should use a lambda and use selectRow():



          #include <QApplication>
          #include <QHBoxLayout>
          #include <QTableWidget>
          #include <QItemSelectionModel>

          int main(int argc, char *argv)

          QApplication a(argc, argv);
          auto *table1 = new QTableWidget(4, 3);
          table1->setSelectionBehavior(QAbstractItemView::SelectRows);
          auto table2 = new QTableWidget(4, 4);
          table2->setSelectionBehavior(QAbstractItemView::SelectRows);

          QObject::connect(table1->selectionModel(), &QItemSelectionModel::currentRowChanged,
          [table2](const QModelIndex &current, const QModelIndex & previous)

          if(previous.isValid())
          table2->selectRow(current.row());
          );

          QWidget w;
          auto lay = new QHBoxLayout(&w);
          lay->addWidget(table1);
          lay->addWidget(table2);
          w.show();

          return a.exec();






          share|improve this answer














          The problem is caused because setCurrentIndex() has two parameters, and not just one, plus the signatures do not match. So in these cases you should use a lambda and use selectRow():



          #include <QApplication>
          #include <QHBoxLayout>
          #include <QTableWidget>
          #include <QItemSelectionModel>

          int main(int argc, char *argv)

          QApplication a(argc, argv);
          auto *table1 = new QTableWidget(4, 3);
          table1->setSelectionBehavior(QAbstractItemView::SelectRows);
          auto table2 = new QTableWidget(4, 4);
          table2->setSelectionBehavior(QAbstractItemView::SelectRows);

          QObject::connect(table1->selectionModel(), &QItemSelectionModel::currentRowChanged,
          [table2](const QModelIndex &current, const QModelIndex & previous)

          if(previous.isValid())
          table2->selectRow(current.row());
          );

          QWidget w;
          auto lay = new QHBoxLayout(&w);
          lay->addWidget(table1);
          lay->addWidget(table2);
          w.show();

          return a.exec();







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 9 at 19:06

























          answered Nov 9 at 18:42









          eyllanesc

          72.2k93054




          72.2k93054











          • Dear eyllanesc, Thank you for your answer. I tried to adapt your code to mine without success. I get compil error:expected ',' or ']' in lambda capture list. I did the following:
            – froz
            Nov 9 at 19:03











          • QObject::connect(ui->table1->selectionModel(), &QItemSelectionModel::currentRowChanged, [ui->table2](const QModelIndex &current, const QModelIndex & previous) if(previous.isValid()) QItemSelectionModel::SelectionFlags command = QItemSelectionModel::Rows );
            – froz
            Nov 9 at 19:03











          • @froz Do you have any error or warning message?
            – eyllanesc
            Nov 9 at 19:05










          • @froz change [ui->table2] to [this]
            – eyllanesc
            Nov 9 at 19:06










          • Thanks, It is working :) However, one last thing, I have in the terminal sometimes the following: qt.accessibility.core: Cannot create accessible child interface for object: QTableWidget(0x5593ad844f30, name = "table2") index: 23
            – froz
            Nov 9 at 19:12

















          • Dear eyllanesc, Thank you for your answer. I tried to adapt your code to mine without success. I get compil error:expected ',' or ']' in lambda capture list. I did the following:
            – froz
            Nov 9 at 19:03











          • QObject::connect(ui->table1->selectionModel(), &QItemSelectionModel::currentRowChanged, [ui->table2](const QModelIndex &current, const QModelIndex & previous) if(previous.isValid()) QItemSelectionModel::SelectionFlags command = QItemSelectionModel::Rows );
            – froz
            Nov 9 at 19:03











          • @froz Do you have any error or warning message?
            – eyllanesc
            Nov 9 at 19:05










          • @froz change [ui->table2] to [this]
            – eyllanesc
            Nov 9 at 19:06










          • Thanks, It is working :) However, one last thing, I have in the terminal sometimes the following: qt.accessibility.core: Cannot create accessible child interface for object: QTableWidget(0x5593ad844f30, name = "table2") index: 23
            – froz
            Nov 9 at 19:12
















          Dear eyllanesc, Thank you for your answer. I tried to adapt your code to mine without success. I get compil error:expected ',' or ']' in lambda capture list. I did the following:
          – froz
          Nov 9 at 19:03





          Dear eyllanesc, Thank you for your answer. I tried to adapt your code to mine without success. I get compil error:expected ',' or ']' in lambda capture list. I did the following:
          – froz
          Nov 9 at 19:03













          QObject::connect(ui->table1->selectionModel(), &QItemSelectionModel::currentRowChanged, [ui->table2](const QModelIndex &current, const QModelIndex & previous) if(previous.isValid()) QItemSelectionModel::SelectionFlags command = QItemSelectionModel::Rows );
          – froz
          Nov 9 at 19:03





          QObject::connect(ui->table1->selectionModel(), &QItemSelectionModel::currentRowChanged, [ui->table2](const QModelIndex &current, const QModelIndex & previous) if(previous.isValid()) QItemSelectionModel::SelectionFlags command = QItemSelectionModel::Rows );
          – froz
          Nov 9 at 19:03













          @froz Do you have any error or warning message?
          – eyllanesc
          Nov 9 at 19:05




          @froz Do you have any error or warning message?
          – eyllanesc
          Nov 9 at 19:05












          @froz change [ui->table2] to [this]
          – eyllanesc
          Nov 9 at 19:06




          @froz change [ui->table2] to [this]
          – eyllanesc
          Nov 9 at 19:06












          Thanks, It is working :) However, one last thing, I have in the terminal sometimes the following: qt.accessibility.core: Cannot create accessible child interface for object: QTableWidget(0x5593ad844f30, name = "table2") index: 23
          – froz
          Nov 9 at 19:12





          Thanks, It is working :) However, one last thing, I have in the terminal sometimes the following: qt.accessibility.core: Cannot create accessible child interface for object: QTableWidget(0x5593ad844f30, name = "table2") index: 23
          – froz
          Nov 9 at 19:12


















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53231320%2fconnecting-selection-of-row-in-2-qtablewidget%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

          Edmonton

          Crossroads (UK TV series)