Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

juce_ThreadWithProgressWindow.cpp 3.9KB

7 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 5 End-User License
  8. Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
  9. 27th April 2017).
  10. End User License Agreement: www.juce.com/juce-5-licence
  11. Privacy Policy: www.juce.com/juce-5-privacy-policy
  12. Or: You may also use this code under the terms of the GPL v3 (see
  13. www.gnu.org/licenses).
  14. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  15. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  16. DISCLAIMED.
  17. ==============================================================================
  18. */
  19. namespace juce
  20. {
  21. ThreadWithProgressWindow::ThreadWithProgressWindow (const String& title,
  22. const bool hasProgressBar,
  23. const bool hasCancelButton,
  24. const int cancellingTimeOutMs,
  25. const String& cancelButtonText,
  26. Component* componentToCentreAround)
  27. : Thread ("ThreadWithProgressWindow"),
  28. progress (0.0),
  29. timeOutMsWhenCancelling (cancellingTimeOutMs),
  30. wasCancelledByUser (false)
  31. {
  32. alertWindow = LookAndFeel::getDefaultLookAndFeel()
  33. .createAlertWindow (title, String(),
  34. cancelButtonText.isEmpty() ? TRANS("Cancel")
  35. : cancelButtonText,
  36. String(), String(),
  37. AlertWindow::NoIcon, hasCancelButton ? 1 : 0,
  38. componentToCentreAround);
  39. // if there are no buttons, we won't allow the user to interrupt the thread.
  40. alertWindow->setEscapeKeyCancels (false);
  41. if (hasProgressBar)
  42. alertWindow->addProgressBarComponent (progress);
  43. }
  44. ThreadWithProgressWindow::~ThreadWithProgressWindow()
  45. {
  46. stopThread (timeOutMsWhenCancelling);
  47. }
  48. void ThreadWithProgressWindow::launchThread (int priority)
  49. {
  50. jassert (MessageManager::getInstance()->isThisTheMessageThread());
  51. startThread (priority);
  52. startTimer (100);
  53. {
  54. const ScopedLock sl (messageLock);
  55. alertWindow->setMessage (message);
  56. }
  57. alertWindow->enterModalState();
  58. }
  59. void ThreadWithProgressWindow::setProgress (const double newProgress)
  60. {
  61. progress = newProgress;
  62. }
  63. void ThreadWithProgressWindow::setStatusMessage (const String& newStatusMessage)
  64. {
  65. const ScopedLock sl (messageLock);
  66. message = newStatusMessage;
  67. }
  68. void ThreadWithProgressWindow::timerCallback()
  69. {
  70. bool threadStillRunning = isThreadRunning();
  71. if (! (threadStillRunning && alertWindow->isCurrentlyModal()))
  72. {
  73. stopTimer();
  74. stopThread (timeOutMsWhenCancelling);
  75. alertWindow->exitModalState (1);
  76. alertWindow->setVisible (false);
  77. wasCancelledByUser = threadStillRunning;
  78. threadComplete (threadStillRunning);
  79. return; // (this may be deleted now)
  80. }
  81. const ScopedLock sl (messageLock);
  82. alertWindow->setMessage (message);
  83. }
  84. void ThreadWithProgressWindow::threadComplete (bool) {}
  85. #if JUCE_MODAL_LOOPS_PERMITTED
  86. bool ThreadWithProgressWindow::runThread (const int priority)
  87. {
  88. launchThread (priority);
  89. while (isTimerRunning())
  90. MessageManager::getInstance()->runDispatchLoopUntil (5);
  91. return ! wasCancelledByUser;
  92. }
  93. #endif
  94. } // namespace juce