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:
authorJaime van Kessel <nallath@gmail.com>2016-04-28 18:35:40 +0300
committerJaime van Kessel <nallath@gmail.com>2016-04-28 18:35:40 +0300
commitbe7a8ca9b250f392cd49ff7cdadc9388c9e9d237 (patch)
tree82916afd1932212f13c83da1125bff3f053d71d5 /cura/MachineActionManager.py
parent978536162cc80f552efc704c8f1ae0d30996b5d0 (diff)
Added other add action functions
CURA-1385
Diffstat (limited to 'cura/MachineActionManager.py')
-rw-r--r--cura/MachineActionManager.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/cura/MachineActionManager.py b/cura/MachineActionManager.py
index e3cdb690dd..fed798181b 100644
--- a/cura/MachineActionManager.py
+++ b/cura/MachineActionManager.py
@@ -27,6 +27,26 @@ class MachineActionManager:
# Todo: define specific Exception types (instead of general type)
raise Exception("Action %s, which is required for %s is not known." % (action_key, machine.getKey()))
+ ## Add a supported action to a machine.
+ def addSupportedAction(self, machine, action_key):
+ if action_key in self._machine_actions:
+ if machine in self._supported_actions:
+ self._supported_actions[machine].append(self._machine_actions[action_key])
+ else:
+ self._supported_actions[machine] = set(self._machine_actions[action_key])
+ else:
+ Logger.log("W", "Unable to add %s to %s, as the action is not recognised", action_key, machine.getKey())
+
+ ## Add an action to the first start list of a machine.
+ def addFirstStartAction(self, machine, action_key, index = None):
+ if action_key in self._machine_actions:
+ if machine in self._supported_actions and index is not None:
+ self._supported_actions[machine].insert(index, self._machine_actions[action_key])
+ else:
+ self._supported_actions[machine] = [self._machine_actions[action_key]]
+ else:
+ Logger.log("W", "Unable to add %s to %s, as the action is not recognised", action_key, machine.getKey())
+
## Add a (unique) MachineAction
# if the Key of the action is not unique, an exception is raised.
def addMachineAction(self, action):