М
МишаDec. 11, 2017, 8:30 a.m.

Диалоговое окно прогресса QProgressDialog

QProgressDialog

Здравствуйте.

Хочу отобразить прогресс вычисления, проводящихся в многопоточном режиме. Но при работе программа вылетает. Скажите пожалуйста, как исправить?
for (double i=d1;i<=d2;i=i+d3) //задание  значений стратегии
{
     Perebor.append(i);
}
QProgressDialog* ProgresMulti = new QProgressDialog("Просчет стратегий...", "&Cancel", 0, Perebor.size());
ProgresMulti->setMinimumDuration(0);
ProgresMulti->setWindowTitle("Прогресc");
QLibrary MyLib("C:\\Qt\\project\\build-StrategyCod-Desktop_Qt_5_9_2_MinGW_32bit-Debug\\debug\\StrategyCod");  //путь к библиотеке
MyLib.unload();//отключение библиотеки
MyLib.load();//чтение
typedef void (*MyPrototype)(double,MainWindow *);
MyPrototype StrategyCod = (MyPrototype) MyLib.resolve("StrategyCod");
QFuture<void> Perebor2 = QtConcurrent::map(Perebor,[=](const double& d){ StrategyCod(d,this);
ProgresMulti->setValue((d*Perebor.size())/(Perebor.end()-Perebor.begin())) ;
//qApp->processEvents();
if (ProgresMulti->wasCanceled())
{
     //break;
}
});

 

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

10
М
  • Dec. 11, 2017, 8:31 a.m.
 ProgresMulti->setValue(Perebor.size()) ;
       delete ProgresMulti;
    Evgenii Legotckoi
    • Dec. 11, 2017, 8:43 a.m.
    День добрый
    Здесь нужно использовать QFutureWatcher, который будет наблюдать за прогрессом выполнения вашей стратегии.

    В общем пример может выглядеть следующим образом.
    QProgressDialog dialog;
    
    // Создать объект QFutureWatcher и подключить сигналы и слоты к диалогу.
    // Мониторинга прогресса изменений для future
    QFutureWatcher<void> futureWatcher;
    connect(&futureWatcher, &QFutureWatcher::finished, &dialog, &QProgressDialog::reset);
    connect(&dialog;, &QProgressDialog::canceled, &futureWatcher, &QFutureWatcher::cancel);
    connect(&futureWatcher, &QFutureWatcher::progressRangeChanged, &dialog, &QProgressDialog::setRange);
    connect(&futureWatcher, &QFutureWatcher::progressValueChanged, &dialog, &QProgressDialog::setValue);
    
    // Запуск вычислений
    futureWatcher.setFuture(QtConcurrent::map(vector, spin));
    
    // Показать диалог и запустить программную петлю диалога
    dialog.exec();
    
    futureWatcher.waitForFinished();
      М
      • Dec. 11, 2017, 9:52 a.m.

      но оно не компилируется

        Evgenii Legotckoi
        • Dec. 11, 2017, 9:56 a.m.
        • (edited)
        но оно не компилируется
        Вообще ни о чём не говорит. Я вам привёл это в качестве обобщённого примера, а не в качестве прямого руководства к действию в стиле копипасты.

        Ошибки какие?
          М
          • Dec. 11, 2017, 10:04 a.m.
          C:\Qt\project\MyCandleSrick\mainwindow.cpp:1006: ошибка: 'template<class T> class QFutureWatcher' used without template parameters
          connect(&futureWatcher, &QFutureWatcher::finished, &dialog, &QProgressDialog::reset);
          ^
          C:\Qt\project\MyCandleSrick\mainwindow.cpp:1007: ошибка: 'template<class T> class QFutureWatcher' used without template parameters
          connect(&dialog, &QProgressDialog::canceled, &futureWatcher, &QFutureWatcher::cancel);
          ^
          C:\Qt\project\MyCandleSrick\mainwindow.cpp:1008: ошибка: 'template<class T> class QFutureWatcher' used without template parameters
          connect(&futureWatcher, &QFutureWatcher::progressRangeChanged, &dialog, &QProgressDialog::setRange);
          ^
          C:\Qt\project\MyCandleSrick\mainwindow.cpp:1009: ошибка: 'template<class T> class QFutureWatcher' used without template parameters
          connect(&futureWatcher, &QFutureWatcher::progressValueChanged, &dialog, &QProgressDialog::setValue);
          ^

            М
            • Dec. 11, 2017, 10:14 a.m.

            Еще думал это сделать с помощью ProgressBar

            QFuture<void> Perebor2 = QtConcurrent::map(Perebor,[=](const double& d){ StrategyCod(d,this);
                   ui->ProgressBar->setValue(55);
                   });
            Но при таком варианте приложение тоже вырубается. Может быть вы знаете почему?
              Evgenii Legotckoi
              • Dec. 11, 2017, 10:15 a.m.

              Да скорее всего небезопасная конкуренция с доступом к объекту. Насчёт ошибок, потом гляну, что там с шаблонными аргументами, возможно что-то и забыл.

                М
                • Dec. 11, 2017, 10:18 a.m.

                Спасибо, буду ждать.

                  Evgenii Legotckoi
                  • Dec. 11, 2017, 11:14 a.m.
                  • (edited)

                  Вот рабочий пример

                  void Widget::on_pushButton_clicked()
                  {
                      QProgressDialog dialog;
                  
                      // Создать объект QFutureWatcher и подключить сигналы и слоты к диалогу.
                      // Мониторинг прогресса изменений для future
                      QFutureWatcher<void> futureWatcher;
                      connect(&futureWatcher, &QFutureWatcher<void>::finished, &dialog, &QProgressDialog::reset);
                      connect(&dialog, &QProgressDialog::canceled, &futureWatcher, &QFutureWatcher<void>::cancel);
                      connect(&futureWatcher, &QFutureWatcher<void>::progressRangeChanged, &dialog, &QProgressDialog::setRange);
                      connect(&futureWatcher, &QFutureWatcher<void>::progressValueChanged, &dialog, &QProgressDialog::setValue);
                  
                      QVector<int> vector;
                      // Запуск вычислений
                      futureWatcher.setFuture(QtConcurrent::map(vector, [](const int& i){ qDebug() << i; }));
                  
                      // Показать диалог и запустить программную петлю диалога
                      dialog.exec();
                  
                      futureWatcher.waitForFinished();
                  }
                    М
                    • Dec. 12, 2017, 12:41 a.m.

                    При таком варианте скорость расчетов резко падает и прогоняется несколько раз одно и тоже.

                    Если убрать dialog.exec(); то расчет идет с нормальной скоростью  только один раз, но окошка прогресса нет.

                      Comments

                      Only authorized users can post comments.
                      Please, Log in or Sign up
                      AD

                      C ++ - Test 004. Pointers, Arrays and Loops

                      • Result:50points,
                      • Rating points-4
                      m

                      C ++ - Test 004. Pointers, Arrays and Loops

                      • Result:80points,
                      • Rating points4
                      m

                      C ++ - Test 004. Pointers, Arrays and Loops

                      • Result:20points,
                      • Rating points-10
                      Last comments
                      i
                      innorwallNov. 13, 2024, 11:03 p.m.
                      How to make game using Qt - Lesson 3. Interaction with other objects what is priligy tablets What happens during the LASIK surgery process
                      i
                      innorwallNov. 13, 2024, 8:09 p.m.
                      Using variables declared in CMakeLists.txt inside C ++ files where can i buy priligy online safely Tom Platz How about things like we read about in the magazines like roid rage and does that really
                      i
                      innorwallNov. 11, 2024, 10:12 p.m.
                      Django - Tutorial 055. How to write auto populate field functionality Freckles because of several brand names retin a, atralin buy generic priligy
                      i
                      innorwallNov. 11, 2024, 6:23 p.m.
                      QML - Tutorial 035. Using enumerations in QML without C ++ priligy cvs 24 Together with antibiotics such as amphotericin B 10, griseofulvin 11 and streptomycin 12, chloramphenicol 9 is in the World Health Organisation s List of Essential Medici…
                      i
                      innorwallNov. 11, 2024, 3:50 p.m.
                      Qt/C++ - Lesson 052. Customization Qt Audio player in the style of AIMP It decreases stress, supports hormone balance, and regulates and increases blood flow to the reproductive organs buy priligy online safe Promising data were reported in a PDX model re…
                      Now discuss on the forum
                      i
                      innorwallNov. 14, 2024, 12:39 a.m.
                      добавить qlineseries в функции Listen intently to what Jerry says about Conditional Acceptance because that s the bargaining chip in the song and dance you will have to engage in to protect yourself and your family from AMI S…
                      i
                      innorwallNov. 11, 2024, 10:55 a.m.
                      Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
                      9
                      9AnonimOct. 25, 2024, 9:10 a.m.
                      Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

                      Follow us in social networks