Exemplo n.º 1
0
    def __init__(self):
        Action.__init__(self)
        self.name = "MarkRead"
        self.filter = "MarkRead"

        self._pattern = re.compile("MarkRead \"\"")
        return
Exemplo n.º 2
0
    def __init__(self):
        Action.__init__(self)
        self.name = "Move"
        self.filter = "Move"
        self.folder: Union[Folder, None] = None

        self._pattern = re.compile("Move \"(?P<Folder>.+)\"")
        return
Exemplo n.º 3
0
 def __init__(self):
     Action.__init__(self)
     self.name = "Dialog"
     self.filter = "Dialog"
     self.parameter: str = ""
     return
Exemplo n.º 4
0
 def __init__(self):
     Action.__init__(self)
     self.name = "PlaySound"
     self.filter = "PlaySound"
     self.parameter: str = ""
     return
Exemplo n.º 5
0
 def __init__(self):
     Action.__init__(self)
     self.name = "Highlight"
     self.filter = "Highlight"
     self.parameter: int = 0
     return
Exemplo n.º 6
0
 def __init__(self):
     Action.__init__(self)
     self.name = "Append"
     self.filter = "Append"
     self.target: str = ""
     return
Exemplo n.º 7
0
 def __init__(self):
     Action.__init__(self)
     self.name = "Return"
     self.filter = "Return"
     return
Exemplo n.º 8
0
 def __init__(self):
     Action.__init__(self)
     self.name = "SetIdentity"
     self.filter = "SetIdentity"
     self.parameter: str = ""
     return
Exemplo n.º 9
0
 def __init__(self):
     Action.__init__(self)
     self.name = "Expire"
     self.filter = "Expire"
     return
Exemplo n.º 10
0
 def __init__(self):
     Action.__init__(self)
     self.name = "AddToList"
     self.filter = "AddToList"
     self.parameter: str = ""
     return
Exemplo n.º 11
0
 def __init__(self):
     Action.__init__(self)
     self.name = "RemoveFromList"
     self.filter = "RemoveFromList"
     self.parameter: str = ""
     return
Exemplo n.º 12
0
 def __init__(self):
     Action.__init__(self)
     self.name = "SendBinaryFile"
     self.filter = "SendBinaryFile"
     self.parameter: str = ""
     return
Exemplo n.º 13
0
 def __init__(self):
     Action.__init__(self)
     self.name = "Select"
     self.filter = "Select"
     return
Exemplo n.º 14
0
 def __init__(self):
     Action.__init__(self)
     self.name = "SkipNext"
     self.filter = "SkipNext"
     return
Exemplo n.º 15
0
 def __init__(self):
     Action.__init__(self)
     self.name = "Delete"
     self.filter = "Delete"
     return
Exemplo n.º 16
0
 def __init__(self):
     Action.__init__(self)
     self.name = "MarkSignificant"
     self.filter = "MarkSignificant"
     return
Exemplo n.º 17
0
 def __init__(self):
     Action.__init__(self)
     self.name = "Extract"
     self.filter = "eXtract"
     self.target: str = ""
     return
Exemplo n.º 18
0
 def __init__(self):
     Action.__init__(self)
     self.name = "Print"
     self.filter = "Print"
     return
Exemplo n.º 19
0
 def __init__(self):
     Action.__init__(self)
     self.name = "AddHeader"
     self.filter = "AddHeader"
     self.target: str = ""
     return
Exemplo n.º 20
0
 def __init__(self):
     Action.__init__(self)
     self.name = "LogicalAnd"
     self.filter = "LogicalAnd"
     return