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. [kind of solved] subclassed QAbstractTableModel::setData does not get called
Qt 6.11 is out! See what's new in the release blog

[kind of solved] subclassed QAbstractTableModel::setData does not get called

Scheduled Pinned Locked Moved Solved General and Desktop
26 Posts 5 Posters 3.4k Views 2 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.
  • A Offline
    A Offline
    andi456
    wrote on last edited by andi456
    #12

    Well, that's why I tried to pass a nlohmann::json argument to the constructor, which results in the obscure "undefined reference to vtable" error for the QAbstractTableModel subclass. After some research on the internet this error can have all kinds of causes. But I do not see any obvious error in my code.

    1 Reply Last reply
    0
    • Christian EhrlicherC Offline
      Christian EhrlicherC Offline
      Christian Ehrlicher
      Lifetime Qt Champion
      wrote on last edited by
      #13

      What build system do you use? Is the moc file for zaubertablemodel.h generated, compiled and linked?

      Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
      Visit the Qt Academy at https://academy.qt.io/catalog

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

        Hi,

        Might be a silly question but do you build the class code along with your test ?

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

        A 1 Reply Last reply
        0
        • SGaistS SGaist

          Hi,

          Might be a silly question but do you build the class code along with your test ?

          A Offline
          A Offline
          andi456
          wrote on last edited by
          #15

          @SGaist No, I've written both a minimal test project and a test. The errors were similar. After running qmake on the minimal testproject, new errors occurred:
          :-1: Fehler: moc_ztablemodel.o:(.data.rel.ro._ZTV11ZTableModel[_ZTV11ZTableModel]+0xb0): undefined reference to `ZTableModel::headerData(int, Qt::Orientation, int) const'

          And so on for all the reimplemented methods of QAbstractTableModel.

          The moc_* files are there obviously but cannot be linked somehow?

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

            Missing symbols suggests that you might be:

            • not building the class sources
            • not implementing the methods

            One thing you can is start from an empty class and the gradually add the methods to see where it breaks

            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
            • A Offline
              A Offline
              andi456
              wrote on last edited by andi456
              #17

              Don't i have to implement at least

              code_text
              QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const  Q_DECL_OVERRIDE;
              int rowCount(const QModelIndex &parent = QModelIndex()) const  Q_DECL_OVERRIDE;
              int columnCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;```
              code_text
              

              ? That's what I did in my minimal test class .

              1 Reply Last reply
              0
              • Christian EhrlicherC Offline
                Christian EhrlicherC Offline
                Christian Ehrlicher
                Lifetime Qt Champion
                wrote on last edited by
                #18

                @andi456 said in subclassed QAbstractTableModel::setData does not get called:

                That's what I did in my minimal test class .

                But you declared headerData() without providing an implementation.

                Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                Visit the Qt Academy at https://academy.qt.io/catalog

                A 1 Reply Last reply
                1
                • Christian EhrlicherC Christian Ehrlicher

                  @andi456 said in subclassed QAbstractTableModel::setData does not get called:

                  That's what I did in my minimal test class .

                  But you declared headerData() without providing an implementation.

                  A Offline
                  A Offline
                  andi456
                  wrote on last edited by
                  #19

                  @Christian-Ehrlicher The relevant parts of the implementation can be found in my first post in the second code block. I just copied the necessary parts to my minimal test example, created with qtcreator.

                  Christian EhrlicherC JonBJ 2 Replies Last reply
                  0
                  • A andi456

                    @Christian-Ehrlicher The relevant parts of the implementation can be found in my first post in the second code block. I just copied the necessary parts to my minimal test example, created with qtcreator.

                    Christian EhrlicherC Offline
                    Christian EhrlicherC Offline
                    Christian Ehrlicher
                    Lifetime Qt Champion
                    wrote on last edited by
                    #20

                    @andi456 but even there I see no headerData() implementation...

                    Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                    Visit the Qt Academy at https://academy.qt.io/catalog

                    1 Reply Last reply
                    1
                    • A Offline
                      A Offline
                      andi456
                      wrote on last edited by
                      #21

                      Here it is:

                      QVariant ZTableModel::headerData(int section, Qt::Orientation orientation, int role) const
                      {
                      QList<QString> headerliste = ZTableModel::get_header(j_zl);
                          if (role != Qt::DisplayRole) {
                          return QVariant();
                      }
                      if (orientation == Qt::Horizontal) {
                          for (int i=0; i < headerliste.size(); ++i) {
                              QString s = headerliste.at(i);
                          if (i == section) {
                              return s;
                              break;
                          }
                          }
                      }
                      
                      JonBJ 1 Reply Last reply
                      0
                      • A andi456

                        @Christian-Ehrlicher The relevant parts of the implementation can be found in my first post in the second code block. I just copied the necessary parts to my minimal test example, created with qtcreator.

                        JonBJ Offline
                        JonBJ Offline
                        JonB
                        wrote on last edited by
                        #22

                        @andi456
                        @Christian-Ehrlicher said you had not implemented headerData().
                        The error messages you pasted includes

                        undefined reference to ZTableModel::headerData(int, Qt::Orientation, int) const

                        Do you not think this indicates a problem?

                        1 Reply Last reply
                        0
                        • A andi456

                          Here it is:

                          QVariant ZTableModel::headerData(int section, Qt::Orientation orientation, int role) const
                          {
                          QList<QString> headerliste = ZTableModel::get_header(j_zl);
                              if (role != Qt::DisplayRole) {
                              return QVariant();
                          }
                          if (orientation == Qt::Horizontal) {
                              for (int i=0; i < headerliste.size(); ++i) {
                                  QString s = headerliste.at(i);
                              if (i == section) {
                                  return s;
                                  break;
                              }
                              }
                          }
                          
                          JonBJ Offline
                          JonBJ Offline
                          JonB
                          wrote on last edited by
                          #23

                          @andi456 said in subclassed QAbstractTableModel::setData does not get called:

                          Here it is:

                          Your post crossed with mine.

                          Could you please delete all object files etc. and do a clean rebuild from scratch. If you still get an error could you copy & paste that/those.

                          1 Reply Last reply
                          0
                          • A Offline
                            A Offline
                            andi456
                            wrote on last edited by andi456
                            #24

                            I see, got the minimal example to compile. It was a matter of the header declarations that i forgot to comment out.. Thank you.. I'll see what happens after the implementation of setData and flags and report back later.

                            1 Reply Last reply
                            0
                            • A Offline
                              A Offline
                              andi456
                              wrote on last edited by andi456
                              #25

                              After implementing the setData and flags and making use of the convenient debugging capabilities of qtcreator, I can now tell that setData is being called, when i enter something from the keyboard, which seems to be discarded afterwards.

                              Edit: Wrong impression on first Debug run.

                              Update: The new value is being put into the json-object, according to the debugging information, dataChanged is being emitted too, but for some reason the change is not being displayed. What might i be missing?

                              I missed writing back the data into the json list in the setData method.

                              1 Reply Last reply
                              0
                              • A Offline
                                A Offline
                                andi456
                                wrote on last edited by
                                #26

                                First of all, thank you all for your support. The reason, why I wrote "kind of solved" into the headline of the post, is the following. I just loaded the original project into qtcreator in order to debug it. qtcreator seems to have run some scripts and the setData method got actually called without the code having changed at all. Unfortunately, I do not know what was necessary. (I just used vim for writing the program before.)

                                1 Reply Last reply
                                0

                                • Login

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