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. Dynamically change delegate QTableView
Forum Updated to NodeBB v4.3 + New Features

Dynamically change delegate QTableView

Scheduled Pinned Locked Moved Solved General and Desktop
26 Posts 3 Posters 8.1k 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.
  • E EagleWatch

    @mrjj
    Hi,

    I've thinking about what you said and I tried to create a subclass of QSqlRelationnalDelegate to get Editor back via the createEditor function.

    However the createEditor function is protected, so I cannot override it.
    I have no clue to get Editor back without create my own delegate class.

    As others have not easier ideas, what you suggests might the best for the moment.

    So , how can I override the createEditor function if this is protected ?

    mrjjM Offline
    mrjjM Offline
    mrjj
    Lifetime Qt Champion
    wrote on last edited by mrjj
    #14

    @EagleWatch
    Hi
    Whats wrong with

    #include <QtSql/QSqlRelationalDelegate>
    class MySQLDelegate : QSqlRelationalDelegate {
    protected:
        virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override
        {
            QSqlRelationalDelegate::createEditor(parent,option,index);// call base
        }
        virtual void setEditorData(QWidget *editor, const QModelIndex &index) const override
        {
        }
    };
    
    E 1 Reply Last reply
    0
    • mrjjM mrjj

      @EagleWatch
      Hi
      Whats wrong with

      #include <QtSql/QSqlRelationalDelegate>
      class MySQLDelegate : QSqlRelationalDelegate {
      protected:
          virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override
          {
              QSqlRelationalDelegate::createEditor(parent,option,index);// call base
          }
          virtual void setEditorData(QWidget *editor, const QModelIndex &index) const override
          {
          }
      };
      
      E Offline
      E Offline
      EagleWatch
      wrote on last edited by
      #15

      @mrjj

      I don't get it. Maybe I need to study a little more in C++.

      That would be what I would like to get :

      #include <QtSql/QSqlRelationalDelegate>
      class MySQLDelegate : QSqlRelationalDelegate {
      protected:
          virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override
          {
              editor = QSqlRelationalDelegate::createEditor(parent,option,index);// call base
          }
          virtual void setEditorData(QWidget *editor, const QModelIndex &index) const override
          {
          }
      
      private:
          QWidget *editor;
      };
      

      Of course, the code will not work because of the "const" word.

      mrjjM 1 Reply Last reply
      0
      • E EagleWatch

        @mrjj

        I don't get it. Maybe I need to study a little more in C++.

        That would be what I would like to get :

        #include <QtSql/QSqlRelationalDelegate>
        class MySQLDelegate : QSqlRelationalDelegate {
        protected:
            virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override
            {
                editor = QSqlRelationalDelegate::createEditor(parent,option,index);// call base
            }
            virtual void setEditorData(QWidget *editor, const QModelIndex &index) const override
            {
            }
        
        private:
            QWidget *editor;
        };
        

        Of course, the code will not work because of the "const" word.

        mrjjM Offline
        mrjjM Offline
        mrjj
        Lifetime Qt Champion
        wrote on last edited by mrjj
        #16

        @EagleWatch
        ahh, the const.
        well you dont need to store the Editor as its given in
        setEditorData(QWidget *editor, const QModelIndex &index) const {
        QComboBox *cb=qobject_cast<QComboBox *>(editor);
        if (cb) {
        use combo...
        }

        // handle other types of widgets or send to base setEditorData

        }

        E 1 Reply Last reply
        1
        • mrjjM mrjj

          @EagleWatch
          ahh, the const.
          well you dont need to store the Editor as its given in
          setEditorData(QWidget *editor, const QModelIndex &index) const {
          QComboBox *cb=qobject_cast<QComboBox *>(editor);
          if (cb) {
          use combo...
          }

          // handle other types of widgets or send to base setEditorData

          }

          E Offline
          E Offline
          EagleWatch
          wrote on last edited by
          #17

          @mrjj
          Hi,
          I get it, thank you.
          The setEditorData(QWidget *editor, const QModelIndex &index) const {} is protected so I cannot override it.

          delegate.h:18: error : 'virtual void Delegate::setEditorData(QWidget*, const QModelIndex&) const' is protected
               virtual void setEditorData(QWidget *editor, const QModelIndex &index) const
                            ^
          

          This function is not present in the QSqlRelationnalDelegate class.
          Maybe I have to subclass QItemDelegate instead ?

          mrjjM 1 Reply Last reply
          0
          • E EagleWatch

            @mrjj
            Hi,
            I get it, thank you.
            The setEditorData(QWidget *editor, const QModelIndex &index) const {} is protected so I cannot override it.

            delegate.h:18: error : 'virtual void Delegate::setEditorData(QWidget*, const QModelIndex&) const' is protected
                 virtual void setEditorData(QWidget *editor, const QModelIndex &index) const
                              ^
            

            This function is not present in the QSqlRelationnalDelegate class.
            Maybe I have to subclass QItemDelegate instead ?

            mrjjM Offline
            mrjjM Offline
            mrjj
            Lifetime Qt Champion
            wrote on last edited by
            #18

            @EagleWatch

            Hi, im missing something. following code compiles with no
            remarks. its listed under protected and im not sure what goes wrong in your case.

            #include <QtSql/QSqlRelationalDelegate>
            class MySQLDelegate : QSqlRelationalDelegate {
            protected:
                virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override
                {
                    QSqlRelationalDelegate::createEditor(parent,option,index);// call base
                }
                virtual void setEditorData(QWidget *editor, const QModelIndex &index) const override
                {
                }
            };
            
            E 1 Reply Last reply
            0
            • mrjjM mrjj

              @EagleWatch

              Hi, im missing something. following code compiles with no
              remarks. its listed under protected and im not sure what goes wrong in your case.

              #include <QtSql/QSqlRelationalDelegate>
              class MySQLDelegate : QSqlRelationalDelegate {
              protected:
                  virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override
                  {
                      QSqlRelationalDelegate::createEditor(parent,option,index);// call base
                  }
                  virtual void setEditorData(QWidget *editor, const QModelIndex &index) const override
                  {
                  }
              };
              
              E Offline
              E Offline
              EagleWatch
              wrote on last edited by EagleWatch
              #19

              @mrjj
              I get the error only when I'm using the MySqlDelegate.

              So, in my projectWindow.h, if I have :

              #include "mysqldelegate.h"
              private:
                  MySqlDelegate *m_delegate;
              

              I get the issue in the MySqlDelegate class.

              Do you get the issue if you call your class ?

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

                Hi,

                Can you show how you are using it ?

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

                E 1 Reply Last reply
                1
                • SGaistS SGaist

                  Hi,

                  Can you show how you are using it ?

                  E Offline
                  E Offline
                  EagleWatch
                  wrote on last edited by
                  #21

                  @SGaist
                  Hi,

                  Thank you for asking.
                  When searching to answer you, I realized that I forgot to remove some tests with the m_delegate pointer.
                  That's why I had the error.

                  Now I have all necessary informations, I'll try to customize this subclass to fit with what I want.

                  I'll keep you updated guys.

                  Thanks.

                  1 Reply Last reply
                  0
                  • E Offline
                    E Offline
                    EagleWatch
                    wrote on last edited by
                    #22

                    Hi guys,

                    I've some news.

                    So after some days studying classes I was using, I discoverd that my problem was not because of the QSqlRelationalDelegate class.
                    In fact, that was the QSqlRelationalTableModel.

                    When I create the QSqlRelationalTableModel, I had to set a relation.
                    When doing this, the QSqlRelationalTableModel keeps in cache the model given by the relation.

                    Even if we change the relation, the model is still the same, that why the combobox was always showing the same data.

                    For now, I just delete the QSqlRelationalTableModel and recreate it with the new relation and it works like a charm.

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

                      Do you mean that if you call setRelation a second time it won't work ?

                      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
                      • E Offline
                        E Offline
                        EagleWatch
                        wrote on last edited by
                        #24

                        Absolutely.

                        All tests I've done have confirmed that.
                        The model doesn't change at all.

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

                          Can you provide a minimal compilable example that shows that ?

                          You should also check the bug report system to see if it's something known.

                          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
                          • E Offline
                            E Offline
                            EagleWatch
                            wrote on last edited by
                            #26

                            Considering we have 3 table :

                            Integrity{
                            id INTEGER PRIMARY KEY AUTOINCREMENT,
                            level VARCHAR(100),
                            definition VARCHAR(500)
                            }
                            Confidentiality{
                            id INTEGER PRIMARY KEY AUTOINCREMENT,
                            level VARCHAR(100),
                            definition VARCHAR(500)
                            }
                            Proba{
                            id INTEGER PRIMARY KEY AUTOINCREMENT,
                            id_crit INT,
                            somethingelse VARCHAR(500);
                            }

                            mainWindow.h

                            private :
                                QSqlRelationalTableModel *m_tableModel;
                            
                            private slots:
                                void slot_refreshRelation();
                            

                            mainWindow.cpp

                            m_tableModel = new QSqlRelationalTableModel();
                            m_tableModel->setTable("Proba");
                            m_tableModel->setEditStrategy(QSqlTableModel::OnManualSubmit);
                            m_tableModel->setRelation(1, QSqlRelation("Integrity", "id", "level"));
                            m_tableModel->select();
                            
                            ui->tableView->setModel(m_tableModel);
                            ui->tableView->hideColumn(0);
                            ui->tableView->setItemDelegate(new QSqlRelationalDelegate(ui->tableView);
                            
                            qDebug() << m_tableModel->relationModel(1)->tableName; // Will show : Integrity
                            
                            connect(ui->pushButton, SIGNAL(clicked()), this, SLOT(slot_refreshRelation()));
                            
                            void mainWindow::slot_refreshRelation()
                            {
                                m_table->setRelation(1, QSqlRelation("Confidentiality", "id", "level"));
                                m_table->select();
                                qDebug() << m_tableModel->relationModel(1)->tableName; // Will show : Integrity
                            }
                            
                            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