Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelle Spijker <j.spijker@ultimaker.com>2022-08-23 11:27:21 +0300
committerGitHub <noreply@github.com>2022-08-23 11:27:21 +0300
commit63dc79dca1eec246f11e1078d3d3dbd93a6d8705 (patch)
treec6c69238eb345e3bd5f2d2c3cdde335218023c41
parentcc9a413a49cfc93a6b1105faa4d8ef087816aabb (diff)
parent50d81225dab34f69b30760b952fa9386db57ff11 (diff)
Merge pull request #13082 from digitalfrost/200822
OnExitCallbackManager.py: improve documentation
-rw-r--r--cura/TaskManagement/OnExitCallbackManager.py28
1 files changed, 17 insertions, 11 deletions
diff --git a/cura/TaskManagement/OnExitCallbackManager.py b/cura/TaskManagement/OnExitCallbackManager.py
index 7894931e9c..54121a2960 100644
--- a/cura/TaskManagement/OnExitCallbackManager.py
+++ b/cura/TaskManagement/OnExitCallbackManager.py
@@ -10,10 +10,13 @@ if TYPE_CHECKING:
#
-# This class manages a all registered upon-exit checks that need to be perform when the application tries to exit.
-# For example, to show a confirmation dialog when there is USB printing in progress, etc. All callbacks will be called
-# in the order of when they got registered. If all callbacks "passes", that is, for example, if the user clicks "yes"
-# on the exit confirmation dialog or nothing that's blocking the exit, then the application will quit after that.
+# This class manages all registered upon-exit checks
+# that need to be performed when the application tries to exit.
+# For example, show a confirmation dialog when there is USB printing in progress.
+# All callbacks will be called in the order of when they were registered.
+# If all callbacks "pass", for example:
+# if the user clicks "yes" on the exit confirmation dialog
+# and nothing else is blocking the exit, then the application will quit.
#
class OnExitCallbackManager:
@@ -35,10 +38,12 @@ class OnExitCallbackManager:
def getIsAllChecksPassed(self) -> bool:
return self._is_all_checks_passed
- # Trigger the next callback if available. If not, it means that all callbacks have "passed", which means we should
- # not block the application to quit, and it will call the application to actually quit.
+ # Trigger the next callback if there is one.
+ # If not, all callbacks have "passed",
+ # which means we should not prevent the application from quitting,
+ # and we call the application to actually quit.
def triggerNextCallback(self) -> None:
- # Get the next callback and schedule that if
+ # Get the next callback and schedule it
this_callback = None
if self._current_callback_idx < len(self._on_exit_callback_list):
this_callback = self._on_exit_callback_list[self._current_callback_idx]
@@ -55,10 +60,11 @@ class OnExitCallbackManager:
# Tell the application to exit
self._application.callLater(self._application.closeApplication)
- # This is the callback function which an on-exit callback should call when it finishes, it should provide the
- # "should_proceed" flag indicating whether this check has "passed", or in other words, whether quitting the
- # application should be blocked. If the last on-exit callback doesn't block the quitting, it will call the next
- # registered on-exit callback if available.
+ # Callback function which an on-exit callback calls when it finishes.
+ # It provides a "should_proceed" flag indicating whether the check has "passed",
+ # or whether quitting the application should be blocked.
+ # If the last on-exit callback doesn't block quitting, it will call the next
+ # registered on-exit callback if one is available.
def onCurrentCallbackFinished(self, should_proceed: bool = True) -> None:
if not should_proceed:
Logger.log("d", "on-app-exit callback finished and we should not proceed.")