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

BackwardsCompatibleMessage.py « src « DigitalLibrary « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7dd9f25ba0789b2566286bd7e30d0359891b472d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright (c) 2021 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from typing import Optional

from cura.CuraApplication import CuraApplication
from UM.Message import Message
from UM.Version import Version


def getBackwardsCompatibleMessage(text: str, title: str, message_type_str: str, lifetime: Optional[int] = 30) -> Message:
    if CuraApplication.getInstance().getAPIVersion() < Version("7.7.0"):
        return Message(text=text, title=title, lifetime=lifetime)
    else:
        message_type = Message.MessageType.NEUTRAL
        if ("MessageType." + message_type_str) in [str(item) for item in Message.MessageType]:
            message_type = Message.MessageType[message_type_str]
        return Message(text=text, title=title, lifetime=lifetime, message_type=message_type)