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. Support for constructing QStandardItem objects from QVariant references?
QtWS25 Last Chance

Support for constructing QStandardItem objects from QVariant references?

Scheduled Pinned Locked Moved Unsolved General and Desktop
qstandarditemqvariantdata modelscustom dataconstruction
27 Posts 5 Posters 8.5k Views
  • 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.
  • V VRonin
    27 Sept 2018, 09:41

    @elfring said in Support for constructing QStandardItem objects from QVariant references?:

    I find that such a map would not be needed for the shown source code example.

    What I meant is that a map is a more generic solution:
    new QStandardItem({std::make_pair<QVariant,int>(mcds, Qt::DisplayRole)}); would bind to the map version of the constructor

    @elfring said in Support for constructing QStandardItem objects from QVariant references?:

    Can this possibility be added to the public construction parameters for the class “QStandardItem”?

    Don't see why not. Open a ticket on https://bugreports.qt.io and post the link here. Make sure to mark the component as Core: Item Models. If David Faure gives the green light I'll add it

    J Offline
    J Offline
    JKSH
    Moderators
    wrote on 2 Oct 2018, 03:23 last edited by
    #16

    @VRonin said in Support for constructing QStandardItem objects from QVariant references?:

    @elfring said in Support for constructing QStandardItem objects from QVariant references?:

    Can this possibility be added to the public construction parameters for the class “QStandardItem”?

    Don't see why not. Open a ticket on https://bugreports.qt.io and post the link here. Make sure to mark the component as Core: Item Models. If David Faure gives the green light I'll add it

    Before going down this path... isn't it better to subclass QStandardItem? http://doc.qt.io/qt-5/qstandarditem.html#subclassing

    I presume the new constructor is to make QStandardItem work with a custom data type. If this is the case, then it's way better to have a constructor (AND getter + setter) that takes the custom type directly, without having to do QVariant conversion:

    class MyItem : public QStandardItem {
    public:
        // NICE: Constructor for your custom type
        MyItem(MyData *value);
        
        // NICE: Getter and setter for your custom type. No need to convert to/from with QVariants
        const MyData *myData() const; // IMPORTANT! const MyData -- The pointer should not allow editing
    
        void setMyData(MyData *value) {
            // TODO: Ensure that old data is freed, or use smart pointers
            m_data = value;
            emitDataChanged(); // IMPORTANT! Notifies the view that the data has changed
        }
        
        // Allow the models/views to access your data through the standard interface
        QVariant data(int role) const override;
        void setData(const QVariant &value, int role) override;
    
        // ...
    	
        // Other functions that might also be worth reimplementing are
        // Destructor, clone(), type(), read(), write(), operator<()
    
    private:
        MyData *m_data;
    };
    

    Overall though, I don't like QStandardItemModel. Except for quick prototypes, I think custom data structures are much better served by subclassing QAbstract(Item|Table)Model directly.

    Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

    E 1 Reply Last reply 2 Oct 2018, 07:45
    0
    • J JKSH
      2 Oct 2018, 03:23

      @VRonin said in Support for constructing QStandardItem objects from QVariant references?:

      @elfring said in Support for constructing QStandardItem objects from QVariant references?:

      Can this possibility be added to the public construction parameters for the class “QStandardItem”?

      Don't see why not. Open a ticket on https://bugreports.qt.io and post the link here. Make sure to mark the component as Core: Item Models. If David Faure gives the green light I'll add it

      Before going down this path... isn't it better to subclass QStandardItem? http://doc.qt.io/qt-5/qstandarditem.html#subclassing

      I presume the new constructor is to make QStandardItem work with a custom data type. If this is the case, then it's way better to have a constructor (AND getter + setter) that takes the custom type directly, without having to do QVariant conversion:

      class MyItem : public QStandardItem {
      public:
          // NICE: Constructor for your custom type
          MyItem(MyData *value);
          
          // NICE: Getter and setter for your custom type. No need to convert to/from with QVariants
          const MyData *myData() const; // IMPORTANT! const MyData -- The pointer should not allow editing
      
          void setMyData(MyData *value) {
              // TODO: Ensure that old data is freed, or use smart pointers
              m_data = value;
              emitDataChanged(); // IMPORTANT! Notifies the view that the data has changed
          }
          
          // Allow the models/views to access your data through the standard interface
          QVariant data(int role) const override;
          void setData(const QVariant &value, int role) override;
      
          // ...
      	
          // Other functions that might also be worth reimplementing are
          // Destructor, clone(), type(), read(), write(), operator<()
      
      private:
          MyData *m_data;
      };
      

      Overall though, I don't like QStandardItemModel. Except for quick prototypes, I think custom data structures are much better served by subclassing QAbstract(Item|Table)Model directly.

      E Offline
      E Offline
      elfring
      wrote on 2 Oct 2018, 07:45 last edited by
      #17

      … that takes the custom type directly, without having to do QVariant conversion:

      I imagine that this another software development challenge if you need to work with the provided generic (or standard) programming interfaces.

      class MyItem : public QStandardItem {
      …
      MyData *m_data;
      };

      I find the specification of this member variable questionable for such a software design approach because the base class should take care of the desired data storage.
      You might add attributes there for other design reasons.

      J 1 Reply Last reply 2 Oct 2018, 08:09
      0
      • E elfring
        2 Oct 2018, 07:45

        … that takes the custom type directly, without having to do QVariant conversion:

        I imagine that this another software development challenge if you need to work with the provided generic (or standard) programming interfaces.

        class MyItem : public QStandardItem {
        …
        MyData *m_data;
        };

        I find the specification of this member variable questionable for such a software design approach because the base class should take care of the desired data storage.
        You might add attributes there for other design reasons.

        J Offline
        J Offline
        JKSH
        Moderators
        wrote on 2 Oct 2018, 08:09 last edited by JKSH 10 Feb 2018, 08:32
        #18

        @elfring said in Support for constructing QStandardItem objects from QVariant references?:

        … that takes the custom type directly, without having to do QVariant conversion:

        I imagine that this another software development challenge if you need to work with the provided generic (or standard) programming interfaces.

        Sorry, I didn't understand this. Could you rephrase it?

        I find the specification of this member variable questionable for such a software design approach because the base class should take care of the desired data storage.

        That's true, but you also didn't like converting/copying data in/out of QVariant. That's why I suggested this design, as a compromise to meet your different goals.

        Like I mentioned before, QStandardItemModel is not well-suited for handling custom data structures. If you want a clean software design AND avoid converting/copying data, then avoid QStandardItemModel. Subclass QAbstractItemModel instead.

        Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

        E V 2 Replies Last reply 2 Oct 2018, 08:54
        1
        • J JKSH
          2 Oct 2018, 08:09

          @elfring said in Support for constructing QStandardItem objects from QVariant references?:

          … that takes the custom type directly, without having to do QVariant conversion:

          I imagine that this another software development challenge if you need to work with the provided generic (or standard) programming interfaces.

          Sorry, I didn't understand this. Could you rephrase it?

          I find the specification of this member variable questionable for such a software design approach because the base class should take care of the desired data storage.

          That's true, but you also didn't like converting/copying data in/out of QVariant. That's why I suggested this design, as a compromise to meet your different goals.

          Like I mentioned before, QStandardItemModel is not well-suited for handling custom data structures. If you want a clean software design AND avoid converting/copying data, then avoid QStandardItemModel. Subclass QAbstractItemModel instead.

          E Offline
          E Offline
          elfring
          wrote on 2 Oct 2018, 08:54 last edited by
          #19

          Could you rephrase it?

          The class “QVariant” is a generic programming interface for the handling of known data structures.

          That's true,

          Thanks for your acknowledgement.

          but you also didn't like converting/copying data in/out of QVariant.

          Yes. - Thus I am looking again for useful software adjustments there.

          Subclass QAbstractItemModel instead.

          I would appreciate if I can reuse existing functionality from a higher level base class.

          J 1 Reply Last reply 2 Oct 2018, 14:58
          0
          • J JKSH
            2 Oct 2018, 08:09

            @elfring said in Support for constructing QStandardItem objects from QVariant references?:

            … that takes the custom type directly, without having to do QVariant conversion:

            I imagine that this another software development challenge if you need to work with the provided generic (or standard) programming interfaces.

            Sorry, I didn't understand this. Could you rephrase it?

            I find the specification of this member variable questionable for such a software design approach because the base class should take care of the desired data storage.

            That's true, but you also didn't like converting/copying data in/out of QVariant. That's why I suggested this design, as a compromise to meet your different goals.

            Like I mentioned before, QStandardItemModel is not well-suited for handling custom data structures. If you want a clean software design AND avoid converting/copying data, then avoid QStandardItemModel. Subclass QAbstractItemModel instead.

            V Offline
            V Offline
            VRonin
            wrote on 2 Oct 2018, 11:25 last edited by
            #20

            @JKSH said in Support for constructing QStandardItem objects from QVariant references?:

            QStandardItemModel is not well-suited for handling custom data structures.

            I disagree. It is not performance-efficient but it is generic enough to handle all kinds of custom metatypes

            @elfring said in Support for constructing QStandardItem objects from QVariant references?:

            I would appreciate if I can reuse existing functionality from a higher level base class.

            Since we are moving one step higher, why not be even more generic:
            QAbstractItemModel* model = new QStandardItemModel(parent);

            This allows you to:

            1. use QStandardItemModel instead of subclassing your own
            2. use your custom data types seamlessly as QAbstractItemModel always uses QVariant
            3. Lets you abstract the implementation of the model by using the API that is guaranteed to be available in every model

            "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

            E J 2 Replies Last reply 2 Oct 2018, 12:01
            0
            • V VRonin
              2 Oct 2018, 11:25

              @JKSH said in Support for constructing QStandardItem objects from QVariant references?:

              QStandardItemModel is not well-suited for handling custom data structures.

              I disagree. It is not performance-efficient but it is generic enough to handle all kinds of custom metatypes

              @elfring said in Support for constructing QStandardItem objects from QVariant references?:

              I would appreciate if I can reuse existing functionality from a higher level base class.

              Since we are moving one step higher, why not be even more generic:
              QAbstractItemModel* model = new QStandardItemModel(parent);

              This allows you to:

              1. use QStandardItemModel instead of subclassing your own
              2. use your custom data types seamlessly as QAbstractItemModel always uses QVariant
              3. Lets you abstract the implementation of the model by using the API that is guaranteed to be available in every model
              E Offline
              E Offline
              elfring
              wrote on 2 Oct 2018, 12:01 last edited by
              #21

              It is not performance-efficient

              Will this information trigger any further software evolution?

              but it is generic enough to handle all kinds of custom metatypes

              This design aspect is reasonably documented.

              Since we are moving one step higher, why not be even more generic:
              QAbstractItemModel* model = new QStandardItemModel(parent);

              This data structure combines standard (or also custom) items.

              use QStandardItemModel instead of subclassing your own

              A derivation from an item class is needed if you would like to add member functions there.
              It is a matter how the desired software behaviour is assigned to specific items or corresponding models overall.

              J 1 Reply Last reply 2 Oct 2018, 14:36
              0
              • E elfring
                2 Oct 2018, 12:01

                It is not performance-efficient

                Will this information trigger any further software evolution?

                but it is generic enough to handle all kinds of custom metatypes

                This design aspect is reasonably documented.

                Since we are moving one step higher, why not be even more generic:
                QAbstractItemModel* model = new QStandardItemModel(parent);

                This data structure combines standard (or also custom) items.

                use QStandardItemModel instead of subclassing your own

                A derivation from an item class is needed if you would like to add member functions there.
                It is a matter how the desired software behaviour is assigned to specific items or corresponding models overall.

                J Offline
                J Offline
                JKSH
                Moderators
                wrote on 2 Oct 2018, 14:36 last edited by
                #22

                @elfring said in Support for constructing QStandardItem objects from QVariant references?:

                It is not performance-efficient

                Will this information trigger any further software evolution?

                No. Because... (see below)

                I would appreciate if I can reuse existing functionality from a higher level base class.

                ...remember, engineering involves finding the right balance. In general, these are the trade-offs when you choose a high-level API:

                • Pros:
                  • Simple, easy to use
                  • More protections against errors
                • Cons:
                  • Less performant
                  • Less flexible

                When you choose the pros of the high-level QStandardItemModel, you also choose the cons.

                Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                E 1 Reply Last reply 2 Oct 2018, 14:41
                1
                • V VRonin
                  2 Oct 2018, 11:25

                  @JKSH said in Support for constructing QStandardItem objects from QVariant references?:

                  QStandardItemModel is not well-suited for handling custom data structures.

                  I disagree. It is not performance-efficient but it is generic enough to handle all kinds of custom metatypes

                  @elfring said in Support for constructing QStandardItem objects from QVariant references?:

                  I would appreciate if I can reuse existing functionality from a higher level base class.

                  Since we are moving one step higher, why not be even more generic:
                  QAbstractItemModel* model = new QStandardItemModel(parent);

                  This allows you to:

                  1. use QStandardItemModel instead of subclassing your own
                  2. use your custom data types seamlessly as QAbstractItemModel always uses QVariant
                  3. Lets you abstract the implementation of the model by using the API that is guaranteed to be available in every model
                  J Offline
                  J Offline
                  JKSH
                  Moderators
                  wrote on 2 Oct 2018, 14:37 last edited by
                  #23

                  @VRonin said in Support for constructing QStandardItem objects from QVariant references?:

                  @JKSH said in Support for constructing QStandardItem objects from QVariant references?:

                  QStandardItemModel is not well-suited for handling custom data structures.

                  I disagree. It is not performance-efficient but it is generic enough to handle all kinds of custom metatypes

                  I agree that it's generic enough to handle custom types. I just don't think it handles them nicely. (And to clarify, I was talking about custom, multi-element data structures that can't be easily represented by 1 string.)

                  My main gripe is this: 1 Item represents 1 "cell" in the View, and by default each cell only shows 1 "element". Thus, if I were to squeeze a complex multi-element data structure into an Item, then I'd need to write a custom Delegate too.

                  But anyway, this is a matter of personal preference. There's still a place for QStandardItemModel and I'm still happy to help someone use it if they want to.

                  Since we are moving one step higher, why not be even more generic:

                  I believe that's going lower-level, not higher-level... right...?

                  Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                  V 1 Reply Last reply 2 Oct 2018, 14:49
                  0
                  • J JKSH
                    2 Oct 2018, 14:36

                    @elfring said in Support for constructing QStandardItem objects from QVariant references?:

                    It is not performance-efficient

                    Will this information trigger any further software evolution?

                    No. Because... (see below)

                    I would appreciate if I can reuse existing functionality from a higher level base class.

                    ...remember, engineering involves finding the right balance. In general, these are the trade-offs when you choose a high-level API:

                    • Pros:
                      • Simple, easy to use
                      • More protections against errors
                    • Cons:
                      • Less performant
                      • Less flexible

                    When you choose the pros of the high-level QStandardItemModel, you also choose the cons.

                    E Offline
                    E Offline
                    elfring
                    wrote on 2 Oct 2018, 14:41 last edited by
                    #24

                    …, you also choose the cons.

                    I would prefer to adjust the remaining development challenges somehow in this area.

                    1 Reply Last reply
                    0
                    • J JKSH
                      2 Oct 2018, 14:37

                      @VRonin said in Support for constructing QStandardItem objects from QVariant references?:

                      @JKSH said in Support for constructing QStandardItem objects from QVariant references?:

                      QStandardItemModel is not well-suited for handling custom data structures.

                      I disagree. It is not performance-efficient but it is generic enough to handle all kinds of custom metatypes

                      I agree that it's generic enough to handle custom types. I just don't think it handles them nicely. (And to clarify, I was talking about custom, multi-element data structures that can't be easily represented by 1 string.)

                      My main gripe is this: 1 Item represents 1 "cell" in the View, and by default each cell only shows 1 "element". Thus, if I were to squeeze a complex multi-element data structure into an Item, then I'd need to write a custom Delegate too.

                      But anyway, this is a matter of personal preference. There's still a place for QStandardItemModel and I'm still happy to help someone use it if they want to.

                      Since we are moving one step higher, why not be even more generic:

                      I believe that's going lower-level, not higher-level... right...?

                      V Offline
                      V Offline
                      VRonin
                      wrote on 2 Oct 2018, 14:49 last edited by
                      #25

                      @JKSH said in Support for constructing QStandardItem objects from QVariant references?:

                      then I'd need to write a custom Delegate too.

                      100% agree on this point

                      I believe that's going lower-level, not higher-level

                      I meant higher level of abstraction (i.e. just look at the interface, not the implementation)

                      I would prefer to adjust the remaining development challenges somehow in this area.

                      Then a custom model is the way to go but it is not easy for people approaching Qt for the first time.

                      P.S.
                      It might be just a language issue but this is not StackOverflow, you won't get shouted at if you don't use exact technical terminology all the time, you can relax

                      "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

                      J 1 Reply Last reply 2 Oct 2018, 14:56
                      1
                      • V VRonin
                        2 Oct 2018, 14:49

                        @JKSH said in Support for constructing QStandardItem objects from QVariant references?:

                        then I'd need to write a custom Delegate too.

                        100% agree on this point

                        I believe that's going lower-level, not higher-level

                        I meant higher level of abstraction (i.e. just look at the interface, not the implementation)

                        I would prefer to adjust the remaining development challenges somehow in this area.

                        Then a custom model is the way to go but it is not easy for people approaching Qt for the first time.

                        P.S.
                        It might be just a language issue but this is not StackOverflow, you won't get shouted at if you don't use exact technical terminology all the time, you can relax

                        J Offline
                        J Offline
                        JonB
                        wrote on 2 Oct 2018, 14:56 last edited by
                        #26

                        @VRonin said in Support for constructing QStandardItem objects from QVariant references?:

                        It might be just a language issue but this is not StackOverflow, you won't get shouted at if you don't use exact technical terminology all the time, you can relax

                        +1 for pointing out that this forum is not like The Gestapo from SO!

                        1 Reply Last reply
                        0
                        • E elfring
                          2 Oct 2018, 08:54

                          Could you rephrase it?

                          The class “QVariant” is a generic programming interface for the handling of known data structures.

                          That's true,

                          Thanks for your acknowledgement.

                          but you also didn't like converting/copying data in/out of QVariant.

                          Yes. - Thus I am looking again for useful software adjustments there.

                          Subclass QAbstractItemModel instead.

                          I would appreciate if I can reuse existing functionality from a higher level base class.

                          J Offline
                          J Offline
                          JKSH
                          Moderators
                          wrote on 2 Oct 2018, 14:58 last edited by
                          #27

                          @elfring said in Support for constructing QStandardItem objects from QVariant references?:

                          I would appreciate if I can reuse existing functionality from a higher level base class.

                          Sorry! I just re-read this line and realized you said "higher level base class". In this case, please ignore what I said about choosing pros and cons.

                          Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

                          1 Reply Last reply
                          0

                          25/27

                          2 Oct 2018, 14:49

                          • Login

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