Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Error: no matching function for call to 'QObject::connect
Forum Updated to NodeBB v4.3 + New Features

Error: no matching function for call to 'QObject::connect

Scheduled Pinned Locked Moved Unsolved General and Desktop
30 Posts 6 Posters 30.8k Views 3 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • W Offline
    W Offline
    WhatIf
    wrote on last edited by
    #14

    No warnings at run time.

    I used both breakpoints and a qDebug statement.

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #15

      Then a silly question: how are you ensuring that you are clicking on the correct button ?

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      1
      • W Offline
        W Offline
        WhatIf
        wrote on last edited by
        #16

        There is only one button

        1 Reply Last reply
        0
        • hskoglundH Online
          hskoglundH Online
          hskoglund
          wrote on last edited by
          #17

          Hi, just guessing, but how do you assign the grid layout into the centralwidget in your mainwindowp.cpp, is it something similar to this:

          ...
          setCentralWidget(new QWidget());
          centralWidget()->setLayout(mainWindowContent->getPageWidgetsLayout());
          ...
          
          1 Reply Last reply
          0
          • Paul ColbyP Offline
            Paul ColbyP Offline
            Paul Colby
            wrote on last edited by
            #18

            What's the lifetime of your MainWindowContent instance?

            It looks to me that MainWindowContent::getPageWidgetsLayout() could be entirely static (if you wanted it to be) except for the this in the connect call. So if, for example, your MainWindowContent instance is destroyed, and re-created later, the slot will have been automatically disconnected, and not reconnected.

            Just something else to check...

            Cheers.

            1 Reply Last reply
            1
            • W Offline
              W Offline
              WhatIf
              wrote on last edited by
              #19

              main.cpp

              #include "mainwindow.h"
              #include <QApplication>
              
              int main(int argc, char *argv[])
              {
                  QApplication a(argc, argv);
                  MainWindow w;
              
                  w.buildPage(); 
              
                  w.show();
              
                  return a.exec();
              }
              

              mainwindow.cpp

              #include "mainwindow.h"
              #include "ui_mainwindow.h"
              
              #include <QLabel>
              #include <QHBoxLayout>
              
              MainWindow::MainWindow(QWidget *parent) :
                  QMainWindow(parent),
                  ui(new Ui::MainWindow)
              {
                  ui->setupUi(this);
              }
              
              MainWindow::~MainWindow()
              {
                  delete ui;
              }
              
              void MainWindow::buildPage()
              {
                  MainWindowContent winContent;
              
                  ui->centralWidget->setLayout(winContent.getPageWidgetsLayout());
              }
              

              mainwindowcontent.cpp

              #include "mainwindowcontent.h"
              
              #include <QDebug>
              
              MainWindowContent::MainWindowContent(QObject *parent) : QObject(parent)
              {
              
              }
              
              QGridLayout* MainWindowContent::getPageWidgetsLayout()
              {
                  QGridLayout *gridLayout  =new QGridLayout();
              
                  QLabel *label = new QLabel("");
              
                  QLineEdit *lineEdit = new QLineEdit("Enter Text!");
              
                  QPushButton *button = new QPushButton("OK!");
              
                  QObject::connect(button, SIGNAL (clicked()),this, SLOT (handleButton()));
              
                  gridLayout->addWidget(label,0,0);
                  gridLayout->addWidget(lineEdit,1,1);
                  gridLayout->addWidget(button,2,2);
                 
              
                  return gridLayout;
              }
              
              void MainWindowContent::handleButton()
              {
                  qDebug() << "INSIDE SLOT!";
              }
              
              1 Reply Last reply
              0
              • Paul ColbyP Offline
                Paul ColbyP Offline
                Paul Colby
                wrote on last edited by Paul Colby
                #20

                The problem is with the winContent lifetime.

                void MainWindow::buildPage()
                {
                    MainWindowContent winContent;
                
                    ui->centralWidget->setLayout(winContent.getPageWidgetsLayout());
                    // at this point, winContent is destroyed, and automatically disconnected.
                }
                

                You probably want to do something more like:

                void MainWindow::buildPage()
                {
                    MainWindowContent * winContent = new MainWindowContent(this);
                
                    ui->centralWidget->setLayout(winContent->getPageWidgetsLayout());
                }
                

                Or move the slot to the MainWindow class.

                Cheers.

                1 Reply Last reply
                4
                • W Offline
                  W Offline
                  WhatIf
                  wrote on last edited by
                  #21

                  Thank you very much for all the help!

                  The last problem I have is how to pass the label and lineedit to the slot. I don't want to make them global variables. if I create a custom signal with the label and lineedit to match the slot, I'm confused about where to emit the signal.

                  1 Reply Last reply
                  0
                  • SGaistS Offline
                    SGaistS Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on last edited by
                    #22

                    Before that, why do you need the MainWindowContent. It looks like a convoluted mean to create the central widget content.

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    1 Reply Last reply
                    1
                    • W Offline
                      W Offline
                      WhatIf
                      wrote on last edited by
                      #23

                      I want to keep the logic of how the program progresses from page to page in MainWindow. But I want other classes to generate the pages to be displayed. Basically I want to be able to manage the program without having a single .cpp file that is a thousand lines or so.

                      1 Reply Last reply
                      0
                      • SGaistS Offline
                        SGaistS Offline
                        SGaist
                        Lifetime Qt Champion
                        wrote on last edited by
                        #24

                        Then why not make them full QWidget derivative ?

                        That's what is usually done, cut your application in logical pieces and then build as many QWidget based classes as needed to keep the code clean, simple and tidy.

                        Interested in AI ? www.idiap.ch
                        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                        1 Reply Last reply
                        1
                        • W Offline
                          W Offline
                          WhatIf
                          wrote on last edited by
                          #25

                          Can you give an example please? Or direct me to any tutorial on the topic?

                          1 Reply Last reply
                          0
                          • SGaistS Offline
                            SGaistS Offline
                            SGaist
                            Lifetime Qt Champion
                            wrote on last edited by
                            #26

                            The scribble example is a simple example to start with.

                            Interested in AI ? www.idiap.ch
                            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                            1 Reply Last reply
                            0
                            • W Offline
                              W Offline
                              WhatIf
                              wrote on last edited by
                              #27

                              I went over the example but I still have some difficulty converting it to my use. I created a MainWindowContent that is a subclass of QWidget and created a

                              QGridLayout* MainWindowContent::getPageWidgetsLayout()
                              

                              the exact same function I provided in the code above.

                              I don't think that this is the intended goal of this example because in MainWindow an instance of the QWidget subclass (ScribbleArea) is passed to setCentralWidget not a call to a function using the instance. Am I supposed to move all the code from getPageWidgetsLayout() to the constructor and declare the label, lineedit, and pushbutton as private variables.

                              1 Reply Last reply
                              0
                              • SGaistS Offline
                                SGaistS Offline
                                SGaist
                                Lifetime Qt Champion
                                wrote on last edited by
                                #28

                                No the example shows what I suggested: create a separated widget that encapsulates the functionality of interest and use that one in the MainWindow.

                                Interested in AI ? www.idiap.ch
                                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                1 Reply Last reply
                                0
                                • W Offline
                                  W Offline
                                  WhatIf
                                  wrote on last edited by
                                  #29

                                  Finally, I got it to work but I still have the same problem that I started with. How do I pass the line edit and label to the slot?

                                  I searched online and all the examples have a condition other than the button being clicked that emit the signal . Any hints please?

                                  1 Reply Last reply
                                  0
                                  • VRoninV Offline
                                    VRoninV Offline
                                    VRonin
                                    wrote on last edited by
                                    #30

                                    https://forum.qt.io/topic/86414/error-no-matching-function-for-call-to-qobject-connect/5

                                    "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
                                    ~Napoleon Bonaparte

                                    On a crusade to banish setIndexWidget() from the holy land of Qt

                                    1 Reply Last reply
                                    1

                                    • Login

                                    • Login or register to search.
                                    • First post
                                      Last post
                                    0
                                    • Categories
                                    • Recent
                                    • Tags
                                    • Popular
                                    • Users
                                    • Groups
                                    • Search
                                    • Get Qt Extensions
                                    • Unsolved