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. How to insert QProgressBar in QTableWidget cell
Forum Updated to NodeBB v4.3 + New Features

How to insert QProgressBar in QTableWidget cell

Scheduled Pinned Locked Moved General and Desktop
4 Posts 3 Posters 9.9k Views 1 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
    adnan
    wrote on 19 Mar 2012, 12:37 last edited by
    #1

    I want to display progress bar in QTableWidget cell, is it possible at all!

    1 Reply Last reply
    0
    • F Offline
      F Offline
      francomartins
      wrote on 19 Mar 2012, 14:36 last edited by
      #2

      Try it :
      @

      QTableWidget tw = new QTableWidget(1,1);
      QProgressBar *pgbar = new QProgressBar();
      tw.setCellWidget(0,0,pgbar);
      @

      This example inserts a QProgressBar in a QTableWidget with one row and one column;

      1 Reply Last reply
      0
      • A Offline
        A Offline
        adnan
        wrote on 19 Mar 2012, 18:13 last edited by
        #3

        Thanks for the reply!

        1 Reply Last reply
        0
        • A Offline
          A Offline
          andre
          wrote on 20 Mar 2012, 08:49 last edited by
          #4

          Or, take a look at libQxt. It has a "delegate":http://libqxt.bitbucket.org/doc/0.6/qxtitemdelegate.html that can do this without relying on adding widgets explicitly, and that works with data from the model itself.

          1 Reply Last reply
          0

          4/4

          20 Mar 2012, 08:49

          • Login

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