Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. TabBar not displaying items other than TabButtons
Forum Updated to NodeBB v4.3 + New Features

TabBar not displaying items other than TabButtons

Scheduled Pinned Locked Moved Solved QML and Qt Quick
23 Posts 3 Posters 3.5k 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.
  • fcarneyF Offline
    fcarneyF Offline
    fcarney
    wrote on last edited by fcarney
    #11

    @mzimmers said in TabBar not displaying items other than TabButtons:

    Item {
    id: fullWidth

    You need to set the width here.

    Edit: or use the layout the set the width. There is an expansion flag in Layout for width and height when using layouts.

    C++ is a perfectly valid school of magic.

    mzimmersM 1 Reply Last reply
    1
    • fcarneyF fcarney

      @mzimmers said in TabBar not displaying items other than TabButtons:

      Item {
      id: fullWidth

      You need to set the width here.

      Edit: or use the layout the set the width. There is an expansion flag in Layout for width and height when using layouts.

      mzimmersM Offline
      mzimmersM Offline
      mzimmers
      wrote on last edited by
      #12

      @fcarney I added this line:

      width: parent.width
      

      and it seems to work, but I'd be interested in knowing what you meant by "use the layout the set the width."

      My non-ToolBar items aren't vertically centered, despite my Item containing this line:

      Layout.alignment: Qt.AlignVCenter
      

      I guess this property doesn't propagate down to the items below. I know there are a few options for remedying this; which in your opinion is the best?

      Thanks...

      1 Reply Last reply
      0
      • fcarneyF Offline
        fcarneyF Offline
        fcarney
        wrote on last edited by
        #13

        What is the height of the Item?

        C++ is a perfectly valid school of magic.

        mzimmersM 1 Reply Last reply
        0
        • fcarneyF fcarney

          What is the height of the Item?

          mzimmersM Offline
          mzimmersM Offline
          mzimmers
          wrote on last edited by
          #14

          @fcarney

          ColumnLayout {
              Item {
                  id: fullWidth
                  height: 48
                  width: parent.width
                  Layout.alignment: Qt.AlignVCenter
          
                  TabBar {
                      id: navBar
          ...
          
          1 Reply Last reply
          0
          • fcarneyF Offline
            fcarneyF Offline
            fcarney
            wrote on last edited by
            #15

            @mzimmers said in TabBar not displaying items other than TabButtons:

            but I'd be interested in knowing what you meant by "use the layout the set the width."

            ColumnLayout was commented out. I assume you are going to use a Layout to hold the TabBar? If so then use Layout.fillWidth set to true.

            C++ is a perfectly valid school of magic.

            mzimmersM 1 Reply Last reply
            0
            • fcarneyF Offline
              fcarneyF Offline
              fcarney
              wrote on last edited by
              #16

              @mzimmers said in TabBar not displaying items other than TabButtons:

              TabBar {
              id: navBar

              Use anchors for inside non layout items. anchors.verticalCenter: item.verticalCenter. Yes, it does not propagate.

              C++ is a perfectly valid school of magic.

              1 Reply Last reply
              0
              • fcarneyF fcarney

                @mzimmers said in TabBar not displaying items other than TabButtons:

                but I'd be interested in knowing what you meant by "use the layout the set the width."

                ColumnLayout was commented out. I assume you are going to use a Layout to hold the TabBar? If so then use Layout.fillWidth set to true.

                mzimmersM Offline
                mzimmersM Offline
                mzimmers
                wrote on last edited by mzimmers
                #17

                @fcarney yeah, I've been experimenting with different positioning systems, trying to find the one that works best. Sorry for the confusion.

                My object hierarchy is currently like this:

                ColumnLayout {
                    Item {
                        TabBar {
                        Row {
                            Image {}
                            Image {}
                            Text {}
                        }
                    }
                }
                

                Can I apply a vertical centering to the Row, or do I have to do it for each item in the Row?

                EDIT:

                Answered my last question by modifying the Row above:

                    Row {
                        anchors.right: parent.right
                        anchors.verticalCenter: parent.verticalCenter
                        ...
                

                I think that will wrap up this thread. I'll post my follow-up questions separately. Thanks for all the help...

                1 Reply Last reply
                1
                • fcarneyF Offline
                  fcarneyF Offline
                  fcarney
                  wrote on last edited by
                  #18

                  @mzimmers said in TabBar not displaying items other than TabButtons:

                  experimenting with different positioning systems

                  That is the way to learn how QML behaves. Play around with it. I have a git repo dedicated to playing with things in Qt. I just spin up a new project and try things out so I am not cluttering up my work projects. Then I dump these into this scratchpad repo. I can go back and determine how to do something pretty quickly.

                  C++ is a perfectly valid school of magic.

                  mzimmersM 1 Reply Last reply
                  1
                  • fcarneyF fcarney

                    @mzimmers said in TabBar not displaying items other than TabButtons:

                    experimenting with different positioning systems

                    That is the way to learn how QML behaves. Play around with it. I have a git repo dedicated to playing with things in Qt. I just spin up a new project and try things out so I am not cluttering up my work projects. Then I dump these into this scratchpad repo. I can go back and determine how to do something pretty quickly.

                    mzimmersM Offline
                    mzimmersM Offline
                    mzimmers
                    wrote on last edited by
                    #19

                    @fcarney yeah, I have an empty qml project locally for playing with stuff...not in github, but it achieves mostly the same result.

                    One last question to sneak in here -- my current hierarchy is this:

                    ColumnLayout {
                        Item {
                            TabBar {
                                Navbutton {}
                                Navbutton {}
                                Navbutton {}
                                Navbutton {}
                            }
                            Row {
                    etc.
                    

                    How can I get some spacing before my first Navbutton (which is just a TabButton)?

                    1 Reply Last reply
                    0
                    • fcarneyF Offline
                      fcarneyF Offline
                      fcarney
                      wrote on last edited by
                      #20

                      @mzimmers said in TabBar not displaying items other than TabButtons:

                      Item {
                      TabBar {

                       Item {
                          id: item
                         TabBar {
                            anchors.left:  item.left
                            anchors.leftMargin: 10
                      

                      C++ is a perfectly valid school of magic.

                      mzimmersM 1 Reply Last reply
                      0
                      • fcarneyF fcarney

                        @mzimmers said in TabBar not displaying items other than TabButtons:

                        Item {
                        TabBar {

                         Item {
                            id: item
                           TabBar {
                              anchors.left:  item.left
                              anchors.leftMargin: 10
                        
                        mzimmersM Offline
                        mzimmersM Offline
                        mzimmers
                        wrote on last edited by
                        #21

                        @fcarney I tried that, but that re-introduces a problem with that pesky horizontal line. Where is that coming from, anyway? I mean, I know it's part of the tab bar, but is there some property that controls it? I can't find one. I'd just like it to disappear.

                        1 Reply Last reply
                        0
                        • fcarneyF Offline
                          fcarneyF Offline
                          fcarney
                          wrote on last edited by
                          #22

                          I would look to see if there is a way to style the TabBar or just use another Item like a ListView to do the same thing. I assume you are feeding the currentIndex into a stack view or something? You might have better control with a ListView.

                          C++ is a perfectly valid school of magic.

                          mzimmersM 1 Reply Last reply
                          0
                          • fcarneyF fcarney

                            I would look to see if there is a way to style the TabBar or just use another Item like a ListView to do the same thing. I assume you are feeding the currentIndex into a stack view or something? You might have better control with a ListView.

                            mzimmersM Offline
                            mzimmersM Offline
                            mzimmers
                            wrote on last edited by
                            #23

                            @fcarney said in TabBar not displaying items other than TabButtons:

                            I assume you are feeding the currentIndex into a stack view or something? You might have better control with a ListView.

                            I will be. The only purpose for the tabs is to alter the contents of the main display. ListViews look like more work. I'll look into styling the TabBar.

                            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