Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. progress bar
    Log in to post

    • SOLVED How to Draw a circular progress Bar using QML in QT6
      General and Desktop • qml qt6 qml + js progress bar • • vinaygopal  

      2
      0
      Votes
      2
      Posts
      134
      Views

      Hi, it seems ConicalGradient has been removed from Qt 6. There is probably a new alternative for that. Anyway you can still accessing it using the Qt5Compat module. See details here: https://doc.qt.io/qt-6/qml-qt5compat-graphicaleffects-conicalgradient.html Note you'll probably need to install the Qt5Compat module corresponding to your Qt version from the Maintenance Tools if that's not already the case.
    • UNSOLVED Progress bar updating
      General and Desktop • qt5 update progress bar • • deleted286  

      13
      0
      Votes
      13
      Posts
      457
      Views

      @mrjj okey
    • UNSOLVED Showing negative values of axis on the progress bar
      General and Desktop • qt5 progress bar • • deleted286  

      9
      0
      Votes
      9
      Posts
      362
      Views

      @SimonSchroeder I want to update my progress bar, if one of these values greater than 0. For example if the dizi[1] > 0, update. I dont want to see dizi[0]. Because of it i started from 1
    • UNSOLVED "Progress MessageBox"
      General and Desktop • progress bar modal dialog popup • • StringTheory  

      8
      0
      Votes
      8
      Posts
      2629
      Views

      @JonB said in "Progress MessageBox": OK. Forget about modeless for a moment, if you don't want to deal with threads. Take a look at http://doc.qt.io/qt-5/qdialog.html#open, and start from there instead of the normal QDialog::exec(). I'm thinking that may be all you are looking for. I still don't know what it is you think you are going to "show the progress against", but that's another issue..... Thanks for the recommendation. I will look into open(), etc. I will probably end up threading the heavy tasks, but I'm trying to avoid all the tedious synchronization for now. As for 'progress against': I realized why that may not have made sense. Individual time-consuming tasks will not be able to report on their progress mid-stream (no way to gauge how long to complete), but there is a series of them. Basically a chain of image processes--filters, denoising, etc. and each can take from 5 seconds to almost a minute. Awkward to just sit there looking at the barberpole progress bar, so I thought of setting up a timer in the progress dialog in order to monitor a 'status variable' back at the ranch. As each filter stage completes, the status variable would be updated. When the variable changes from "filter 1" to "filter 2", appropriate text could be displayed in the progress dialog. Or so I hope. :-)
    • UNSOLVED Busy progressbar not working in gtk2 style
      General and Desktop • progress bar busy indicator gtk2 style • • mjaga  

      2
      0
      Votes
      2
      Posts
      419
      Views

      @mjaga Just in case somebody wants to test this, here is a minimal example demonstrating the problem: #include <QApplication> #include <QProgressBar> int main(int argc, char *argv[]) { QApplication a(argc, argv); a.setStyle("plastique"); /* working... */ // a.setStyle("cleanlooks"); /* working... */ // a.setStyle("Windows"); /* working... */ // a.setStyle("Fusion"); /* working... */ // a.setStyle("gtk2"); /* NOT working! */ QProgressBar pb; pb.setMaximum(0); pb.setMinimum(0); pb.setValue(0); pb.show(); return a.exec(); }
    • SOLVED Help with progressbar
      General and Desktop • progress bar • • Jedd  

      6
      0
      Votes
      6
      Posts
      1182
      Views

      This is weird, but I had applied a vertical layout to this dialog so it would resize a listbox properly. I removed the layout and the progress bar works properly. So solved, I guess...
    • UNSOLVED Can't Cancel Progress Dialog.
      General and Desktop • c++ qt4 signal progress bar cancel • • DougyDrumz  

      12
      0
      Votes
      12
      Posts
      4234
      Views

      @DougyDrumz said in Can't Cancel Progress Dialog.: OK. I found it. I was being dumb! I have two flavors of Progress Dialogs. One is inside an App, and the other is standalone, meant to be called form a script. I was looking at the one in the App when I should have been looking at the other one. The standalone one doesn't have have a cancel slot. Good !
    • UNSOLVED Use Progressbar To Loading the Window
      General and Desktop • windows progress bar loading using • • M4RZB4Ni  

      6
      0
      Votes
      6
      Posts
      1518
      Views

      The link provided by @Joel-Bodenmann is a good start.
    • UNSOLVED Updating a progress bar
      General and Desktop • qtcreator help progress bar • • dani98000  

      11
      0
      Votes
      11
      Posts
      2388
      Views

      Well, when buffersplit call setValue(buffersplit) on your progress bar. I'd recommend using a more descriptive variable name
    • How to draw and correctly animate progress bar in QTableView?
      General and Desktop • qtableview qprogressbar progress bar • • hamov  

      23
      0
      Votes
      23
      Posts
      13590
      Views

      @hamov well digging around, I also found m_list->viewport()->repaint(); which works for WidgetList. Did not test with model/view yet. I think it is by design as it does redraw when data changes but we are not alone finding it strange working if one google it