2000-08-17 19:14:57 -03:00
|
|
|
"""Suite AppleScript Suite: Standard terms for AppleScript
|
|
|
|
Level 1, version 1
|
|
|
|
|
2002-08-07 12:53:42 -03:00
|
|
|
Generated from /Volumes/Sap/System Folder/Extensions/AppleScript
|
2000-08-17 19:14:57 -03:00
|
|
|
AETE/AEUT resource version 1/0, language 0, script 0
|
|
|
|
"""
|
|
|
|
|
|
|
|
import aetools
|
|
|
|
import MacOS
|
|
|
|
|
|
|
|
_code = 'ascr'
|
|
|
|
|
|
|
|
class AppleScript_Suite_Events:
|
|
|
|
|
|
|
|
def activate(self, _no_object=None, _attributes={}, **_arguments):
|
|
|
|
"""activate: Bring the targeted application program to the front
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'misc'
|
|
|
|
_subcode = 'actv'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def log(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""log: Cause a comment to be logged
|
|
|
|
Required argument: undocumented, typecode 'TEXT'
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'cmnt'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def stop_log(self, _no_object=None, _attributes={}, **_arguments):
|
|
|
|
"""stop log: Stop event logging in the script editor
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ToyS'
|
|
|
|
_subcode = 'log0'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def start_log(self, _no_object=None, _attributes={}, **_arguments):
|
|
|
|
"""start log: Start event logging in the script editor
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ToyS'
|
|
|
|
_subcode = 'log1'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def idle(self, _no_object=None, _attributes={}, **_arguments):
|
|
|
|
"""idle: Sent to a script application when it is idle
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: the number of seconds to wait for next idle event
|
|
|
|
"""
|
|
|
|
_code = 'misc'
|
|
|
|
_subcode = 'idle'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def launch(self, _no_object=None, _attributes={}, **_arguments):
|
|
|
|
"""launch: Start an application for scripting
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'noop'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def tell(self, _no_object=None, _attributes={}, **_arguments):
|
2002-08-07 12:53:42 -03:00
|
|
|
"""tell: Record or log a \xd4tell\xd5 statement
|
2000-08-17 19:14:57 -03:00
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'tell'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def end_tell(self, _no_object=None, _attributes={}, **_arguments):
|
2002-08-07 12:53:42 -03:00
|
|
|
"""end tell: Record or log an \xd4end tell\xd5 statement
|
2000-08-17 19:14:57 -03:00
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'tend'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
if _no_object != None: raise TypeError, 'No direct arg expected'
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
_argmap_error = {
|
|
|
|
'number' : 'errn',
|
|
|
|
'partial_result' : 'ptlr',
|
2002-08-07 12:53:42 -03:00
|
|
|
'from_' : 'erob',
|
2000-08-17 19:14:57 -03:00
|
|
|
'to' : 'errt',
|
|
|
|
}
|
|
|
|
|
|
|
|
def error(self, _object=None, _attributes={}, **_arguments):
|
|
|
|
"""error: Raise an error
|
|
|
|
Required argument: anything
|
|
|
|
Keyword argument number: an error number
|
|
|
|
Keyword argument partial_result: any partial result occurring before the error
|
2002-08-07 12:53:42 -03:00
|
|
|
Keyword argument from_: the object that caused the error
|
2000-08-17 19:14:57 -03:00
|
|
|
Keyword argument to: the desired class for a failed coercion
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'err '
|
|
|
|
|
|
|
|
aetools.keysubst(_arguments, self._argmap_error)
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
_argmap_Call_a5_subroutine = {
|
|
|
|
'at' : 'at ',
|
2002-08-07 12:53:42 -03:00
|
|
|
'from_' : 'from',
|
|
|
|
'for_' : 'for ',
|
2000-08-17 19:14:57 -03:00
|
|
|
'to' : 'to ',
|
|
|
|
'thru' : 'thru',
|
|
|
|
'through' : 'thgh',
|
|
|
|
'by' : 'by ',
|
|
|
|
'on' : 'on ',
|
|
|
|
'into' : 'into',
|
|
|
|
'onto' : 'onto',
|
|
|
|
'between' : 'btwn',
|
|
|
|
'against' : 'agst',
|
|
|
|
'out_of' : 'outo',
|
|
|
|
'instead_of' : 'isto',
|
|
|
|
'aside_from' : 'asdf',
|
|
|
|
'around' : 'arnd',
|
|
|
|
'beside' : 'bsid',
|
|
|
|
'beneath' : 'bnth',
|
|
|
|
'under' : 'undr',
|
|
|
|
'over' : 'over',
|
|
|
|
'above' : 'abve',
|
|
|
|
'below' : 'belw',
|
|
|
|
'apart_from' : 'aprt',
|
|
|
|
'about' : 'abou',
|
|
|
|
'since' : 'snce',
|
|
|
|
'given' : 'givn',
|
|
|
|
'with' : 'with',
|
|
|
|
'without' : 'wout',
|
|
|
|
}
|
|
|
|
|
|
|
|
def Call_a5_subroutine(self, _object=None, _attributes={}, **_arguments):
|
2002-08-07 12:53:42 -03:00
|
|
|
"""Call\xa5subroutine: A subroutine call
|
2000-08-17 19:14:57 -03:00
|
|
|
Required argument: anything
|
|
|
|
Keyword argument at: a preposition
|
2002-08-07 12:53:42 -03:00
|
|
|
Keyword argument from_: a preposition
|
|
|
|
Keyword argument for_: a preposition
|
2000-08-17 19:14:57 -03:00
|
|
|
Keyword argument to: a preposition
|
|
|
|
Keyword argument thru: a preposition
|
|
|
|
Keyword argument through: a preposition
|
|
|
|
Keyword argument by: a preposition
|
|
|
|
Keyword argument on: a preposition
|
|
|
|
Keyword argument into: a preposition
|
|
|
|
Keyword argument onto: a preposition
|
|
|
|
Keyword argument between: a preposition
|
|
|
|
Keyword argument against: a preposition
|
|
|
|
Keyword argument out_of: a preposition
|
|
|
|
Keyword argument instead_of: a preposition
|
|
|
|
Keyword argument aside_from: a preposition
|
|
|
|
Keyword argument around: a preposition
|
|
|
|
Keyword argument beside: a preposition
|
|
|
|
Keyword argument beneath: a preposition
|
|
|
|
Keyword argument under: a preposition
|
|
|
|
Keyword argument over: a preposition
|
|
|
|
Keyword argument above: a preposition
|
|
|
|
Keyword argument below: a preposition
|
|
|
|
Keyword argument apart_from: a preposition
|
|
|
|
Keyword argument about: a preposition
|
|
|
|
Keyword argument since: a preposition
|
|
|
|
Keyword argument given: parameter:value pairs, comma-separated
|
|
|
|
Keyword argument with: formal parameter set to true if matching actual parameter is provided
|
|
|
|
Keyword argument without: formal parameter set to false if matching actual parmeter is provided
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'psbr'
|
|
|
|
|
|
|
|
aetools.keysubst(_arguments, self._argmap_Call_a5_subroutine)
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _3d_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""=: Equality
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '= '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _ad_(self, _object, _attributes={}, **_arguments):
|
2002-08-07 12:53:42 -03:00
|
|
|
"""\xad: Inequality
|
2000-08-17 19:14:57 -03:00
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
2002-01-22 19:22:32 -04:00
|
|
|
_subcode = '\xad '
|
2000-08-17 19:14:57 -03:00
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _2b_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""+: Addition
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '+ '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _2d_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""-: Subtraction
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '- '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _2a_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""*: Multiplication
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '* '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _d6_(self, _object, _attributes={}, **_arguments):
|
2002-08-07 12:53:42 -03:00
|
|
|
"""\xd6: Division
|
2000-08-17 19:14:57 -03:00
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '/ '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def div(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""div: Quotient
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'div '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def mod(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""mod: Remainder
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'mod '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _5e_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""^: Exponentiation
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '^ '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _3e_(self, _object, _attributes={}, **_arguments):
|
|
|
|
""">: Greater than
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '> '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _b3_(self, _object, _attributes={}, **_arguments):
|
2002-08-07 12:53:42 -03:00
|
|
|
"""\xb3: Greater than or equal to
|
2000-08-17 19:14:57 -03:00
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '>= '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _3c_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""<: Less than
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '< '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _b2_(self, _object, _attributes={}, **_arguments):
|
2002-08-07 12:53:42 -03:00
|
|
|
"""\xb2: Less than or equal to
|
2000-08-17 19:14:57 -03:00
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = '<= '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def _26_(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""&: Concatenation
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'ccat'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def starts_with(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""starts with: Starts with
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'bgwt'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def ends_with(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""ends with: Ends with
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'ends'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def contains(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""contains: Containment
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'cont'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
2002-08-07 12:53:42 -03:00
|
|
|
def and_(self, _object, _attributes={}, **_arguments):
|
2000-08-17 19:14:57 -03:00
|
|
|
"""and: Logical conjunction
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'AND '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
2002-08-07 12:53:42 -03:00
|
|
|
def or_(self, _object, _attributes={}, **_arguments):
|
2000-08-17 19:14:57 -03:00
|
|
|
"""or: Logical disjunction
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'OR '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def as(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""as: Coercion
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'coer'
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
2002-08-07 12:53:42 -03:00
|
|
|
def not_(self, _object, _attributes={}, **_arguments):
|
2000-08-17 19:14:57 -03:00
|
|
|
"""not: Logical negation
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'NOT '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
def negate(self, _object, _attributes={}, **_arguments):
|
|
|
|
"""negate: Numeric negation
|
|
|
|
Required argument: an AE object reference
|
|
|
|
Keyword argument _attributes: AppleEvent attribute dictionary
|
|
|
|
Returns: anything
|
|
|
|
"""
|
|
|
|
_code = 'ascr'
|
|
|
|
_subcode = 'neg '
|
|
|
|
|
|
|
|
if _arguments: raise TypeError, 'No optional args expected'
|
|
|
|
_arguments['----'] = _object
|
|
|
|
|
|
|
|
|
|
|
|
_reply, _arguments, _attributes = self.send(_code, _subcode,
|
|
|
|
_arguments, _attributes)
|
2002-04-23 18:08:54 -03:00
|
|
|
if _arguments.get('errn', 0):
|
2000-08-17 19:14:57 -03:00
|
|
|
raise aetools.Error, aetools.decodeerror(_arguments)
|
|
|
|
# XXXX Optionally decode result
|
|
|
|
if _arguments.has_key('----'):
|
|
|
|
return _arguments['----']
|
|
|
|
|
|
|
|
|
|
|
|
class boolean(aetools.ComponentItem):
|
|
|
|
"""boolean - A true or false value """
|
|
|
|
want = 'bool'
|
|
|
|
|
|
|
|
booleans = boolean
|
|
|
|
|
|
|
|
class integer(aetools.ComponentItem):
|
|
|
|
"""integer - An integral number """
|
|
|
|
want = 'long'
|
|
|
|
|
|
|
|
integers = integer
|
|
|
|
|
|
|
|
class real(aetools.ComponentItem):
|
|
|
|
"""real - A real number """
|
|
|
|
want = 'doub'
|
|
|
|
|
|
|
|
reals = real
|
|
|
|
|
|
|
|
class number(aetools.ComponentItem):
|
|
|
|
"""number - an integer or real number """
|
|
|
|
want = 'nmbr'
|
|
|
|
|
|
|
|
numbers = number
|
|
|
|
|
|
|
|
class list(aetools.ComponentItem):
|
|
|
|
"""list - An ordered collection of items """
|
|
|
|
want = 'list'
|
|
|
|
class length(aetools.NProperty):
|
|
|
|
"""length - the length of a list """
|
|
|
|
which = 'leng'
|
|
|
|
want = 'long'
|
|
|
|
class reverse(aetools.NProperty):
|
|
|
|
"""reverse - the items of the list in reverse order """
|
|
|
|
which = 'rvse'
|
|
|
|
want = 'list'
|
|
|
|
class rest(aetools.NProperty):
|
|
|
|
"""rest - all items of the list excluding first """
|
|
|
|
which = 'rest'
|
|
|
|
want = 'list'
|
|
|
|
|
|
|
|
lists = list
|
|
|
|
|
|
|
|
class linked_list(aetools.ComponentItem):
|
|
|
|
"""linked list - An ordered collection of items """
|
|
|
|
want = 'llst'
|
|
|
|
|
|
|
|
linked_lists = linked_list
|
|
|
|
|
|
|
|
class vector(aetools.ComponentItem):
|
|
|
|
"""vector - An ordered collection of items """
|
|
|
|
want = 'vect'
|
|
|
|
|
|
|
|
vectors = vector
|
|
|
|
|
|
|
|
class record(aetools.ComponentItem):
|
|
|
|
"""record - A set of labeled items """
|
|
|
|
want = 'reco'
|
|
|
|
|
|
|
|
records = record
|
|
|
|
|
|
|
|
class item(aetools.ComponentItem):
|
|
|
|
"""item - An item of any type """
|
|
|
|
want = 'cobj'
|
|
|
|
class id(aetools.NProperty):
|
|
|
|
"""id - the unique ID number of this object """
|
|
|
|
which = 'ID '
|
|
|
|
want = 'long'
|
|
|
|
|
|
|
|
items = item
|
|
|
|
|
|
|
|
class script(aetools.ComponentItem):
|
|
|
|
"""script - An AppleScript script """
|
|
|
|
want = 'scpt'
|
|
|
|
class name(aetools.NProperty):
|
|
|
|
"""name - the name of the script """
|
|
|
|
which = 'pnam'
|
|
|
|
want = 'TEXT'
|
|
|
|
class parent(aetools.NProperty):
|
2002-08-07 12:53:42 -03:00
|
|
|
"""parent - its parent, i.e. the script that will handle events that this script doesn\xd5t """
|
2000-08-17 19:14:57 -03:00
|
|
|
which = 'pare'
|
|
|
|
want = 'scpt'
|
|
|
|
|
|
|
|
scripts = script
|
|
|
|
|
|
|
|
class list_or_record(aetools.ComponentItem):
|
|
|
|
"""list or record - a list or record """
|
|
|
|
want = 'lr '
|
|
|
|
|
|
|
|
class list_or_string(aetools.ComponentItem):
|
|
|
|
"""list or string - a list or string """
|
|
|
|
want = 'ls '
|
|
|
|
|
|
|
|
class number_or_string(aetools.ComponentItem):
|
|
|
|
"""number or string - a number or string """
|
|
|
|
want = 'ns '
|
|
|
|
|
|
|
|
class alias_or_string(aetools.ComponentItem):
|
|
|
|
"""alias or string - an alias or string """
|
|
|
|
want = 'sf '
|
|
|
|
|
|
|
|
class list_2c__record_or_text(aetools.ComponentItem):
|
|
|
|
"""list, record or text - a list, record or text """
|
|
|
|
want = 'lrs '
|
|
|
|
|
|
|
|
class number_or_date(aetools.ComponentItem):
|
|
|
|
"""number or date - a number or date """
|
|
|
|
want = 'nd '
|
|
|
|
|
|
|
|
class number_2c__date_or_text(aetools.ComponentItem):
|
|
|
|
"""number, date or text - a number, date or text """
|
|
|
|
want = 'nds '
|
|
|
|
|
2002-08-07 12:53:42 -03:00
|
|
|
class class_(aetools.ComponentItem):
|
2000-08-17 19:14:57 -03:00
|
|
|
"""class - the type of a value """
|
|
|
|
want = 'pcls'
|
|
|
|
class _3c_Inheritance_3e_(aetools.NProperty):
|
|
|
|
"""<Inheritance> - inherits some of its properties from this class """
|
|
|
|
which = 'c@#^'
|
|
|
|
want = 'type'
|
|
|
|
|
2002-08-07 12:53:42 -03:00
|
|
|
classes = class_
|
2000-08-17 19:14:57 -03:00
|
|
|
|
|
|
|
class event(aetools.ComponentItem):
|
|
|
|
"""event - an AppleEvents event """
|
|
|
|
want = 'evnt'
|
|
|
|
|
|
|
|
events = event
|
|
|
|
|
|
|
|
class property(aetools.ComponentItem):
|
|
|
|
"""property - an AppleEvents property """
|
|
|
|
want = 'prop'
|
|
|
|
|
|
|
|
properties = property
|
|
|
|
|
|
|
|
class constant(aetools.ComponentItem):
|
|
|
|
"""constant - A constant value """
|
|
|
|
want = 'enum'
|
|
|
|
|
|
|
|
constants = constant
|
|
|
|
|
|
|
|
class preposition(aetools.ComponentItem):
|
|
|
|
"""preposition - an AppleEvents preposition """
|
|
|
|
want = 'prep'
|
|
|
|
|
|
|
|
prepositions = preposition
|
|
|
|
|
|
|
|
class reference_form(aetools.ComponentItem):
|
|
|
|
"""reference form - an AppleEvents key form """
|
|
|
|
want = 'kfrm'
|
|
|
|
|
|
|
|
reference_forms = reference_form
|
|
|
|
|
|
|
|
class handler(aetools.ComponentItem):
|
|
|
|
"""handler - an AppleScript event or subroutine handler """
|
|
|
|
want = 'hand'
|
|
|
|
|
|
|
|
handlers = handler
|
|
|
|
|
|
|
|
class data(aetools.ComponentItem):
|
|
|
|
"""data - an AppleScript raw data object """
|
|
|
|
want = 'rdat'
|
|
|
|
|
|
|
|
class text(aetools.ComponentItem):
|
|
|
|
"""text - text with language and style information """
|
|
|
|
want = 'ctxt'
|
|
|
|
|
|
|
|
class international_text(aetools.ComponentItem):
|
|
|
|
"""international text - """
|
|
|
|
want = 'itxt'
|
|
|
|
|
|
|
|
international_text = international_text
|
|
|
|
|
|
|
|
class string(aetools.ComponentItem):
|
|
|
|
"""string - text in 8-bit Macintosh Roman format """
|
|
|
|
want = 'TEXT'
|
|
|
|
|
|
|
|
strings = string
|
|
|
|
|
|
|
|
class styled_text(aetools.ComponentItem):
|
|
|
|
"""styled text - """
|
|
|
|
want = 'STXT'
|
|
|
|
|
|
|
|
styled_text = styled_text
|
|
|
|
|
|
|
|
class styled_Clipboard_text(aetools.ComponentItem):
|
|
|
|
"""styled Clipboard text - """
|
|
|
|
want = 'styl'
|
|
|
|
|
|
|
|
styled_Clipboard_text = styled_Clipboard_text
|
|
|
|
|
|
|
|
class Unicode_text(aetools.ComponentItem):
|
|
|
|
"""Unicode text - """
|
|
|
|
want = 'utxt'
|
|
|
|
|
|
|
|
Unicode_text = Unicode_text
|
|
|
|
|
|
|
|
class styled_Unicode_text(aetools.ComponentItem):
|
|
|
|
"""styled Unicode text - """
|
|
|
|
want = 'sutx'
|
|
|
|
|
|
|
|
styled_Unicode_text = styled_Unicode_text
|
|
|
|
|
|
|
|
class encoded_string(aetools.ComponentItem):
|
|
|
|
"""encoded string - text encoded using the Text Encoding Converter """
|
|
|
|
want = 'encs'
|
|
|
|
|
|
|
|
encoded_strings = encoded_string
|
|
|
|
|
|
|
|
class C_string(aetools.ComponentItem):
|
|
|
|
"""C string - text followed by a null """
|
|
|
|
want = 'cstr'
|
|
|
|
|
|
|
|
C_strings = C_string
|
|
|
|
|
|
|
|
class Pascal_string(aetools.ComponentItem):
|
|
|
|
"""Pascal string - text up to 255 characters preceded by a length byte """
|
|
|
|
want = 'pstr'
|
|
|
|
|
|
|
|
Pascal_strings = Pascal_string
|
|
|
|
|
|
|
|
class character(aetools.ComponentItem):
|
|
|
|
"""character - an individual text character """
|
|
|
|
want = 'cha '
|
|
|
|
|
|
|
|
characters = character
|
|
|
|
|
|
|
|
class text_item(aetools.ComponentItem):
|
|
|
|
"""text item - text between delimiters """
|
|
|
|
want = 'citm'
|
|
|
|
|
|
|
|
text_items = text_item
|
|
|
|
|
|
|
|
class writing_code(aetools.ComponentItem):
|
|
|
|
"""writing code - codes that identify the language and script system """
|
|
|
|
want = 'psct'
|
|
|
|
|
|
|
|
class writing_code_info(aetools.ComponentItem):
|
|
|
|
"""writing code info - script code and language code of text run """
|
|
|
|
want = 'citl'
|
|
|
|
class script_code(aetools.NProperty):
|
|
|
|
"""script code - the script code for the text """
|
|
|
|
which = 'pscd'
|
|
|
|
want = 'shor'
|
|
|
|
class language_code(aetools.NProperty):
|
|
|
|
"""language code - the language code for the text """
|
|
|
|
which = 'plcd'
|
|
|
|
want = 'shor'
|
|
|
|
|
|
|
|
writing_code_infos = writing_code_info
|
|
|
|
|
2002-08-07 12:53:42 -03:00
|
|
|
class empty_ae_name_(aetools.ComponentItem):
|
2000-08-17 19:14:57 -03:00
|
|
|
""" - the undefined value """
|
|
|
|
want = 'undf'
|
|
|
|
|
|
|
|
class missing_value(aetools.ComponentItem):
|
|
|
|
"""missing value - unavailable value, such as properties missing from heterogeneous classes in a Whose clause """
|
|
|
|
want = 'msng'
|
|
|
|
|
|
|
|
missing_values = missing_value
|
|
|
|
|
|
|
|
class reference(aetools.ComponentItem):
|
|
|
|
"""reference - an AppleScript reference """
|
|
|
|
want = 'obj '
|
|
|
|
|
|
|
|
references = reference
|
|
|
|
|
|
|
|
class anything(aetools.ComponentItem):
|
|
|
|
"""anything - any class or reference """
|
|
|
|
want = '****'
|
|
|
|
|
|
|
|
class type_class(aetools.ComponentItem):
|
|
|
|
"""type class - the name of a particular class (or any four-character code) """
|
|
|
|
want = 'type'
|
|
|
|
|
|
|
|
class RGB_color(aetools.ComponentItem):
|
|
|
|
"""RGB color - Three integers specifying red, green, blue color values """
|
|
|
|
want = 'cRGB'
|
|
|
|
|
|
|
|
RGB_colors = RGB_color
|
|
|
|
|
|
|
|
class picture(aetools.ComponentItem):
|
|
|
|
"""picture - A QuickDraw picture object """
|
|
|
|
want = 'PICT'
|
|
|
|
|
|
|
|
pictures = picture
|
|
|
|
|
|
|
|
class sound(aetools.ComponentItem):
|
|
|
|
"""sound - a sound object on the clipboard """
|
|
|
|
want = 'snd '
|
|
|
|
|
|
|
|
sounds = sound
|
|
|
|
|
|
|
|
class version(aetools.ComponentItem):
|
|
|
|
"""version - a version value """
|
|
|
|
want = 'vers'
|
|
|
|
|
|
|
|
class file_specification(aetools.ComponentItem):
|
|
|
|
"""file specification - a file specification as used by the operating system """
|
|
|
|
want = 'fss '
|
|
|
|
|
|
|
|
file_specifications = file_specification
|
|
|
|
|
|
|
|
class alias(aetools.ComponentItem):
|
|
|
|
"""alias - a file on a disk or server. The file must exist when you check the syntax of your script. """
|
|
|
|
want = 'alis'
|
|
|
|
|
|
|
|
aliases = alias
|
|
|
|
|
|
|
|
class machine(aetools.ComponentItem):
|
|
|
|
"""machine - a computer """
|
|
|
|
want = 'mach'
|
|
|
|
|
|
|
|
machines = machine
|
|
|
|
|
|
|
|
class zone(aetools.ComponentItem):
|
|
|
|
"""zone - an AppleTalk zone """
|
|
|
|
want = 'zone'
|
|
|
|
|
|
|
|
zones = zone
|
|
|
|
|
|
|
|
class keystroke(aetools.ComponentItem):
|
|
|
|
"""keystroke - a press of a key combination on a Macintosh keyboard """
|
|
|
|
want = 'kprs'
|
|
|
|
class key(aetools.NProperty):
|
|
|
|
"""key - the character for the key was pressed (ignoring modifiers) """
|
|
|
|
which = 'kMsg'
|
|
|
|
want = 'cha '
|
|
|
|
class modifiers(aetools.NProperty):
|
|
|
|
"""modifiers - the modifier keys pressed in combination """
|
|
|
|
which = 'kMod'
|
|
|
|
want = 'eMds'
|
|
|
|
class key_kind(aetools.NProperty):
|
|
|
|
"""key kind - the kind of key that was pressed """
|
|
|
|
which = 'kknd'
|
|
|
|
want = 'ekst'
|
|
|
|
|
|
|
|
keystrokes = keystroke
|
|
|
|
|
|
|
|
class seconds(aetools.ComponentItem):
|
|
|
|
"""seconds - more than one second """
|
|
|
|
want = 'scnd'
|
|
|
|
|
|
|
|
class date(aetools.ComponentItem):
|
|
|
|
"""date - Absolute date and time values """
|
|
|
|
want = 'ldt '
|
|
|
|
class weekday(aetools.NProperty):
|
|
|
|
"""weekday - the day of a week of a date """
|
|
|
|
which = 'wkdy'
|
|
|
|
want = 'wkdy'
|
|
|
|
class month(aetools.NProperty):
|
|
|
|
"""month - the month of a date """
|
|
|
|
which = 'mnth'
|
|
|
|
want = 'mnth'
|
|
|
|
class day(aetools.NProperty):
|
|
|
|
"""day - the day of the month of a date """
|
|
|
|
which = 'day '
|
|
|
|
want = 'long'
|
|
|
|
class year(aetools.NProperty):
|
|
|
|
"""year - the year of a date """
|
|
|
|
which = 'year'
|
|
|
|
want = 'long'
|
|
|
|
class time(aetools.NProperty):
|
|
|
|
"""time - the time since midnight of a date """
|
|
|
|
which = 'time'
|
|
|
|
want = 'long'
|
|
|
|
class date_string(aetools.NProperty):
|
|
|
|
"""date string - the date portion of a date-time value as text """
|
|
|
|
which = 'dstr'
|
|
|
|
want = 'TEXT'
|
|
|
|
class time_string(aetools.NProperty):
|
|
|
|
"""time string - the time portion of a date-time value as text """
|
|
|
|
which = 'tstr'
|
|
|
|
want = 'TEXT'
|
|
|
|
|
|
|
|
dates = date
|
|
|
|
|
|
|
|
class month(aetools.ComponentItem):
|
|
|
|
"""month - a month """
|
|
|
|
want = 'mnth'
|
|
|
|
|
|
|
|
months = month
|
|
|
|
|
|
|
|
class January(aetools.ComponentItem):
|
|
|
|
"""January - the month of January """
|
|
|
|
want = 'jan '
|
|
|
|
|
|
|
|
class February(aetools.ComponentItem):
|
|
|
|
"""February - the month of February """
|
|
|
|
want = 'feb '
|
|
|
|
|
|
|
|
class March(aetools.ComponentItem):
|
|
|
|
"""March - the month of March """
|
|
|
|
want = 'mar '
|
|
|
|
|
|
|
|
class April(aetools.ComponentItem):
|
|
|
|
"""April - the month of April """
|
|
|
|
want = 'apr '
|
|
|
|
|
|
|
|
class May(aetools.ComponentItem):
|
|
|
|
"""May - the month of May """
|
|
|
|
want = 'may '
|
|
|
|
|
|
|
|
class June(aetools.ComponentItem):
|
|
|
|
"""June - the month of June """
|
|
|
|
want = 'jun '
|
|
|
|
|
|
|
|
class July(aetools.ComponentItem):
|
|
|
|
"""July - the month of July """
|
|
|
|
want = 'jul '
|
|
|
|
|
|
|
|
class August(aetools.ComponentItem):
|
|
|
|
"""August - the month of August """
|
|
|
|
want = 'aug '
|
|
|
|
|
|
|
|
class September(aetools.ComponentItem):
|
|
|
|
"""September - the month of September """
|
|
|
|
want = 'sep '
|
|
|
|
|
|
|
|
class October(aetools.ComponentItem):
|
|
|
|
"""October - the month of October """
|
|
|
|
want = 'oct '
|
|
|
|
|
|
|
|
class November(aetools.ComponentItem):
|
|
|
|
"""November - the month of November """
|
|
|
|
want = 'nov '
|
|
|
|
|
|
|
|
class December(aetools.ComponentItem):
|
|
|
|
"""December - the month of December """
|
|
|
|
want = 'dec '
|
|
|
|
|
|
|
|
class weekday(aetools.ComponentItem):
|
|
|
|
"""weekday - a weekday """
|
|
|
|
want = 'wkdy'
|
|
|
|
|
|
|
|
weekdays = weekday
|
|
|
|
|
|
|
|
class Sunday(aetools.ComponentItem):
|
|
|
|
"""Sunday - Sunday """
|
|
|
|
want = 'sun '
|
|
|
|
|
|
|
|
class Monday(aetools.ComponentItem):
|
|
|
|
"""Monday - Monday """
|
|
|
|
want = 'mon '
|
|
|
|
|
|
|
|
class Tuesday(aetools.ComponentItem):
|
|
|
|
"""Tuesday - Tuesday """
|
|
|
|
want = 'tue '
|
|
|
|
|
|
|
|
class Wednesday(aetools.ComponentItem):
|
|
|
|
"""Wednesday - Wednesday """
|
|
|
|
want = 'wed '
|
|
|
|
|
|
|
|
class Thursday(aetools.ComponentItem):
|
|
|
|
"""Thursday - Thursday """
|
|
|
|
want = 'thu '
|
|
|
|
|
|
|
|
class Friday(aetools.ComponentItem):
|
|
|
|
"""Friday - Friday """
|
|
|
|
want = 'fri '
|
|
|
|
|
|
|
|
class Saturday(aetools.ComponentItem):
|
|
|
|
"""Saturday - Saturday """
|
|
|
|
want = 'sat '
|
|
|
|
|
|
|
|
class metres(aetools.ComponentItem):
|
|
|
|
"""metres - a distance measurement in SI meters """
|
|
|
|
want = 'metr'
|
|
|
|
|
|
|
|
meters = metres
|
|
|
|
|
|
|
|
class inches(aetools.ComponentItem):
|
|
|
|
"""inches - a distance measurement in Imperial inches """
|
|
|
|
want = 'inch'
|
|
|
|
|
|
|
|
class feet(aetools.ComponentItem):
|
|
|
|
"""feet - a distance measurement in Imperial feet """
|
|
|
|
want = 'feet'
|
|
|
|
|
|
|
|
class yards(aetools.ComponentItem):
|
|
|
|
"""yards - a distance measurement in Imperial yards """
|
|
|
|
want = 'yard'
|
|
|
|
|
|
|
|
class miles(aetools.ComponentItem):
|
|
|
|
"""miles - a distance measurement in Imperial miles """
|
|
|
|
want = 'mile'
|
|
|
|
|
|
|
|
class kilometres(aetools.ComponentItem):
|
|
|
|
"""kilometres - a distance measurement in SI kilometers """
|
|
|
|
want = 'kmtr'
|
|
|
|
|
|
|
|
kilometers = kilometres
|
|
|
|
|
|
|
|
class centimetres(aetools.ComponentItem):
|
|
|
|
"""centimetres - a distance measurement in SI centimeters """
|
|
|
|
want = 'cmtr'
|
|
|
|
|
|
|
|
centimeters = centimetres
|
|
|
|
|
|
|
|
class square_metres(aetools.ComponentItem):
|
|
|
|
"""square metres - an area measurement in SI square meters """
|
|
|
|
want = 'sqrm'
|
|
|
|
|
|
|
|
square_meters = square_metres
|
|
|
|
|
|
|
|
class square_feet(aetools.ComponentItem):
|
|
|
|
"""square feet - an area measurement in Imperial square feet """
|
|
|
|
want = 'sqft'
|
|
|
|
|
|
|
|
class square_yards(aetools.ComponentItem):
|
|
|
|
"""square yards - an area measurement in Imperial square yards """
|
|
|
|
want = 'sqyd'
|
|
|
|
|
|
|
|
class square_miles(aetools.ComponentItem):
|
|
|
|
"""square miles - an area measurement in Imperial square miles """
|
|
|
|
want = 'sqmi'
|
|
|
|
|
|
|
|
class square_kilometres(aetools.ComponentItem):
|
|
|
|
"""square kilometres - an area measurement in SI square kilometers """
|
|
|
|
want = 'sqkm'
|
|
|
|
|
|
|
|
square_kilometers = square_kilometres
|
|
|
|
|
|
|
|
class litres(aetools.ComponentItem):
|
|
|
|
"""litres - a volume measurement in SI liters """
|
|
|
|
want = 'litr'
|
|
|
|
|
|
|
|
liters = litres
|
|
|
|
|
|
|
|
class gallons(aetools.ComponentItem):
|
|
|
|
"""gallons - a volume measurement in Imperial gallons """
|
|
|
|
want = 'galn'
|
|
|
|
|
|
|
|
class quarts(aetools.ComponentItem):
|
|
|
|
"""quarts - a volume measurement in Imperial quarts """
|
|
|
|
want = 'qrts'
|
|
|
|
|
|
|
|
class cubic_metres(aetools.ComponentItem):
|
|
|
|
"""cubic metres - a volume measurement in SI cubic meters """
|
|
|
|
want = 'cmet'
|
|
|
|
|
|
|
|
cubic_meters = cubic_metres
|
|
|
|
|
|
|
|
class cubic_centimetres(aetools.ComponentItem):
|
|
|
|
"""cubic centimetres - a volume measurement in SI cubic centimeters """
|
|
|
|
want = 'ccmt'
|
|
|
|
|
|
|
|
cubic_centimeters = cubic_centimetres
|
|
|
|
|
|
|
|
class cubic_feet(aetools.ComponentItem):
|
|
|
|
"""cubic feet - a volume measurement in Imperial cubic feet """
|
|
|
|
want = 'cfet'
|
|
|
|
|
|
|
|
class cubic_inches(aetools.ComponentItem):
|
|
|
|
"""cubic inches - a volume measurement in Imperial cubic inches """
|
|
|
|
want = 'cuin'
|
|
|
|
|
|
|
|
class cubic_yards(aetools.ComponentItem):
|
|
|
|
"""cubic yards - a distance measurement in Imperial cubic yards """
|
|
|
|
want = 'cyrd'
|
|
|
|
|
|
|
|
class kilograms(aetools.ComponentItem):
|
|
|
|
"""kilograms - a mass measurement in SI kilograms """
|
|
|
|
want = 'kgrm'
|
|
|
|
|
|
|
|
class grams(aetools.ComponentItem):
|
|
|
|
"""grams - a mass measurement in SI meters """
|
|
|
|
want = 'gram'
|
|
|
|
|
|
|
|
class ounces(aetools.ComponentItem):
|
|
|
|
"""ounces - a weight measurement in SI meters """
|
|
|
|
want = 'ozs '
|
|
|
|
|
|
|
|
class pounds(aetools.ComponentItem):
|
|
|
|
"""pounds - a weight measurement in SI meters """
|
|
|
|
want = 'lbs '
|
|
|
|
|
|
|
|
class degrees_Celsius(aetools.ComponentItem):
|
|
|
|
"""degrees Celsius - a temperature measurement in SI degrees Celsius """
|
|
|
|
want = 'degc'
|
|
|
|
|
|
|
|
class degrees_Fahrenheit(aetools.ComponentItem):
|
|
|
|
"""degrees Fahrenheit - a temperature measurement in degrees Fahrenheit """
|
|
|
|
want = 'degf'
|
|
|
|
|
|
|
|
class degrees_Kelvin(aetools.ComponentItem):
|
|
|
|
"""degrees Kelvin - a temperature measurement in degrees Kelvin """
|
|
|
|
want = 'degk'
|
|
|
|
|
|
|
|
class upper_case(aetools.ComponentItem):
|
|
|
|
"""upper case - Text with lower case converted to upper case """
|
|
|
|
want = 'case'
|
|
|
|
|
|
|
|
class app(aetools.ComponentItem):
|
|
|
|
"""app - Short name for application """
|
|
|
|
want = 'capp'
|
|
|
|
|
|
|
|
application = app
|
|
|
|
class result(aetools.NProperty):
|
|
|
|
"""result - the last result of evaluation """
|
|
|
|
which = 'rslt'
|
|
|
|
want = '****'
|
|
|
|
class space(aetools.NProperty):
|
|
|
|
"""space - a space character """
|
|
|
|
which = 'spac'
|
|
|
|
want = 'cha '
|
2002-08-07 12:53:42 -03:00
|
|
|
class return_(aetools.NProperty):
|
2000-08-17 19:14:57 -03:00
|
|
|
"""return - a return character """
|
|
|
|
which = 'ret '
|
|
|
|
want = 'cha '
|
|
|
|
class tab(aetools.NProperty):
|
|
|
|
"""tab - a tab character """
|
|
|
|
which = 'tab '
|
|
|
|
want = 'cha '
|
|
|
|
class minutes(aetools.NProperty):
|
|
|
|
"""minutes - the number of seconds in a minute """
|
|
|
|
which = 'min '
|
|
|
|
want = 'long'
|
|
|
|
class hours(aetools.NProperty):
|
|
|
|
"""hours - the number of seconds in an hour """
|
|
|
|
which = 'hour'
|
|
|
|
want = 'long'
|
|
|
|
class days(aetools.NProperty):
|
|
|
|
"""days - the number of seconds in a day """
|
|
|
|
which = 'days'
|
|
|
|
want = 'long'
|
|
|
|
class weeks(aetools.NProperty):
|
|
|
|
"""weeks - the number of seconds in a week """
|
|
|
|
which = 'week'
|
|
|
|
want = 'long'
|
|
|
|
class pi(aetools.NProperty):
|
|
|
|
"""pi - the constant pi """
|
|
|
|
which = 'pi '
|
|
|
|
want = 'doub'
|
|
|
|
class print_length(aetools.NProperty):
|
|
|
|
"""print length - the maximum length to print """
|
|
|
|
which = 'prln'
|
|
|
|
want = 'long'
|
|
|
|
class print_depth(aetools.NProperty):
|
|
|
|
"""print depth - the maximum depth to print """
|
|
|
|
which = 'prdp'
|
|
|
|
want = 'long'
|
|
|
|
class text_item_delimiters(aetools.NProperty):
|
|
|
|
"""text item delimiters - the text item delimiters of a string """
|
|
|
|
which = 'txdl'
|
|
|
|
want = 'list'
|
|
|
|
class AppleScript(aetools.NProperty):
|
|
|
|
"""AppleScript - the top-level script object """
|
|
|
|
which = 'ascr'
|
|
|
|
want = 'scpt'
|
|
|
|
|
|
|
|
applications = app
|
2002-08-07 12:53:42 -03:00
|
|
|
boolean._superclassnames = []
|
|
|
|
boolean._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
boolean._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
integer._superclassnames = []
|
|
|
|
integer._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
integer._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
real._superclassnames = []
|
|
|
|
real._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
real._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
number._superclassnames = []
|
|
|
|
number._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
number._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
list._superclassnames = []
|
|
|
|
list._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
'length' : length,
|
|
|
|
'reverse' : reverse,
|
|
|
|
'rest' : rest,
|
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
list._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
linked_list._superclassnames = []
|
|
|
|
linked_list._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
'length' : length,
|
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
linked_list._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
vector._superclassnames = []
|
|
|
|
vector._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
'length' : length,
|
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
vector._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
record._superclassnames = []
|
|
|
|
record._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
record._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
item._superclassnames = []
|
|
|
|
item._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
'id' : id,
|
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
item._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
script._superclassnames = []
|
|
|
|
script._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
'name' : name,
|
|
|
|
'parent' : parent,
|
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
script._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
list_or_record._superclassnames = []
|
|
|
|
list_or_record._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
list_or_record._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
list_or_string._superclassnames = []
|
|
|
|
list_or_string._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
list_or_string._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
number_or_string._superclassnames = []
|
|
|
|
number_or_string._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
number_or_string._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
alias_or_string._superclassnames = []
|
|
|
|
alias_or_string._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
alias_or_string._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
list_2c__record_or_text._superclassnames = []
|
|
|
|
list_2c__record_or_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
list_2c__record_or_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
number_or_date._superclassnames = []
|
|
|
|
number_or_date._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
number_or_date._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
number_2c__date_or_text._superclassnames = []
|
|
|
|
number_2c__date_or_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
number_2c__date_or_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
class_._superclassnames = ['type_class']
|
|
|
|
class_._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
|
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
class_._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
event._superclassnames = []
|
|
|
|
event._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
event._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
property._superclassnames = []
|
|
|
|
property._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
property._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
constant._superclassnames = []
|
|
|
|
constant._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
constant._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
preposition._superclassnames = []
|
|
|
|
preposition._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
preposition._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
reference_form._superclassnames = []
|
|
|
|
reference_form._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
reference_form._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
handler._superclassnames = []
|
|
|
|
handler._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
handler._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
data._superclassnames = []
|
|
|
|
data._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
data._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
text._superclassnames = []
|
|
|
|
text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
international_text._superclassnames = []
|
|
|
|
international_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
international_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
international_text._superclassnames = []
|
|
|
|
international_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
international_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
string._superclassnames = []
|
|
|
|
string._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
string._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
styled_text._superclassnames = []
|
|
|
|
styled_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
styled_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
styled_text._superclassnames = []
|
|
|
|
styled_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
styled_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
styled_Clipboard_text._superclassnames = []
|
|
|
|
styled_Clipboard_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
styled_Clipboard_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
styled_Clipboard_text._superclassnames = []
|
|
|
|
styled_Clipboard_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
styled_Clipboard_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Unicode_text._superclassnames = []
|
|
|
|
Unicode_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Unicode_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Unicode_text._superclassnames = []
|
|
|
|
Unicode_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Unicode_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
styled_Unicode_text._superclassnames = []
|
|
|
|
styled_Unicode_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
styled_Unicode_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
styled_Unicode_text._superclassnames = []
|
|
|
|
styled_Unicode_text._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
styled_Unicode_text._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
encoded_string._superclassnames = []
|
|
|
|
encoded_string._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
encoded_string._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
C_string._superclassnames = []
|
|
|
|
C_string._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
C_string._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Pascal_string._superclassnames = []
|
|
|
|
Pascal_string._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Pascal_string._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
character._superclassnames = []
|
|
|
|
character._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
character._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
text_item._superclassnames = []
|
|
|
|
text_item._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
text_item._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
writing_code._superclassnames = []
|
|
|
|
writing_code._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
writing_code._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
writing_code_info._superclassnames = []
|
|
|
|
writing_code_info._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
'script_code' : script_code,
|
|
|
|
'language_code' : language_code,
|
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
writing_code_info._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
empty_ae_name_._superclassnames = []
|
|
|
|
empty_ae_name_._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
empty_ae_name_._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
missing_value._superclassnames = []
|
|
|
|
missing_value._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
missing_value._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
reference._superclassnames = []
|
|
|
|
reference._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
reference._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
anything._superclassnames = []
|
|
|
|
anything._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
anything._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
type_class._superclassnames = []
|
|
|
|
type_class._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
type_class._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
RGB_color._superclassnames = []
|
|
|
|
RGB_color._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
RGB_color._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
picture._superclassnames = []
|
|
|
|
picture._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
picture._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
sound._superclassnames = []
|
|
|
|
sound._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
sound._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
version._superclassnames = []
|
|
|
|
version._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
version._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
file_specification._superclassnames = []
|
|
|
|
file_specification._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
file_specification._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
alias._superclassnames = []
|
|
|
|
alias._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
alias._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
machine._superclassnames = []
|
|
|
|
machine._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
machine._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
zone._superclassnames = []
|
|
|
|
zone._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
zone._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
keystroke._superclassnames = []
|
|
|
|
keystroke._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
'key' : key,
|
|
|
|
'modifiers' : modifiers,
|
|
|
|
'key_kind' : key_kind,
|
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
keystroke._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
seconds._superclassnames = []
|
|
|
|
seconds._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
seconds._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
date._superclassnames = []
|
|
|
|
date._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
'weekday' : weekday,
|
|
|
|
'month' : month,
|
|
|
|
'day' : day,
|
|
|
|
'year' : year,
|
|
|
|
'time' : time,
|
|
|
|
'date_string' : date_string,
|
|
|
|
'time_string' : time_string,
|
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
date._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
month._superclassnames = []
|
|
|
|
month._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
month._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
January._superclassnames = []
|
|
|
|
January._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
January._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
February._superclassnames = []
|
|
|
|
February._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
February._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
March._superclassnames = []
|
|
|
|
March._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
March._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
April._superclassnames = []
|
|
|
|
April._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
April._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
May._superclassnames = []
|
|
|
|
May._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
May._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
June._superclassnames = []
|
|
|
|
June._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
June._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
July._superclassnames = []
|
|
|
|
July._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
July._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
August._superclassnames = []
|
|
|
|
August._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
August._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
September._superclassnames = []
|
|
|
|
September._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
September._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
October._superclassnames = []
|
|
|
|
October._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
October._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
November._superclassnames = []
|
|
|
|
November._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
November._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
December._superclassnames = []
|
|
|
|
December._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
December._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
weekday._superclassnames = []
|
|
|
|
weekday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
weekday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Sunday._superclassnames = []
|
|
|
|
Sunday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Sunday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Monday._superclassnames = []
|
|
|
|
Monday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Monday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Tuesday._superclassnames = []
|
|
|
|
Tuesday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Tuesday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Wednesday._superclassnames = []
|
|
|
|
Wednesday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Wednesday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Thursday._superclassnames = []
|
|
|
|
Thursday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Thursday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Friday._superclassnames = []
|
|
|
|
Friday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Friday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Saturday._superclassnames = []
|
|
|
|
Saturday._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
Saturday._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
metres._superclassnames = []
|
|
|
|
metres._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
metres._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
inches._superclassnames = []
|
|
|
|
inches._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
inches._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
feet._superclassnames = []
|
|
|
|
feet._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
feet._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
yards._superclassnames = []
|
|
|
|
yards._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
yards._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
miles._superclassnames = []
|
|
|
|
miles._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
miles._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
kilometres._superclassnames = []
|
|
|
|
kilometres._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
kilometres._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
centimetres._superclassnames = []
|
|
|
|
centimetres._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
centimetres._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_metres._superclassnames = []
|
|
|
|
square_metres._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_metres._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_feet._superclassnames = []
|
|
|
|
square_feet._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_feet._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_yards._superclassnames = []
|
|
|
|
square_yards._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_yards._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_miles._superclassnames = []
|
|
|
|
square_miles._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_miles._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_kilometres._superclassnames = []
|
|
|
|
square_kilometres._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
square_kilometres._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
litres._superclassnames = []
|
|
|
|
litres._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
litres._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
gallons._superclassnames = []
|
|
|
|
gallons._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
gallons._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
quarts._superclassnames = []
|
|
|
|
quarts._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
quarts._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
cubic_metres._superclassnames = []
|
|
|
|
cubic_metres._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
cubic_metres._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
cubic_centimetres._superclassnames = []
|
|
|
|
cubic_centimetres._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
cubic_centimetres._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
cubic_feet._superclassnames = []
|
|
|
|
cubic_feet._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
cubic_feet._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
cubic_inches._superclassnames = []
|
|
|
|
cubic_inches._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
cubic_inches._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
cubic_yards._superclassnames = []
|
|
|
|
cubic_yards._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
cubic_yards._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
kilograms._superclassnames = []
|
|
|
|
kilograms._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
kilograms._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
grams._superclassnames = []
|
|
|
|
grams._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
grams._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
ounces._superclassnames = []
|
|
|
|
ounces._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
ounces._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
pounds._superclassnames = []
|
|
|
|
pounds._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
pounds._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
degrees_Celsius._superclassnames = []
|
|
|
|
degrees_Celsius._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
degrees_Celsius._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
degrees_Fahrenheit._superclassnames = []
|
|
|
|
degrees_Fahrenheit._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
degrees_Fahrenheit._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
degrees_Kelvin._superclassnames = []
|
|
|
|
degrees_Kelvin._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
degrees_Kelvin._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
upper_case._superclassnames = []
|
|
|
|
upper_case._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
upper_case._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
app._superclassnames = []
|
|
|
|
app._privpropdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
2002-08-07 12:53:42 -03:00
|
|
|
app._privelemdict = {
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
|
|
|
_Enum_cons = {
|
|
|
|
'case' : 'case', # case
|
|
|
|
'diacriticals' : 'diac', # diacriticals
|
|
|
|
'white_space' : 'whit', # white space
|
|
|
|
'hyphens' : 'hyph', # hyphens
|
|
|
|
'expansion' : 'expa', # expansion
|
|
|
|
'punctuation' : 'punc', # punctuation
|
|
|
|
'application_responses' : 'rmte', # remote event replies
|
|
|
|
}
|
|
|
|
|
|
|
|
_Enum_boov = {
|
|
|
|
'true' : 'true', # the true boolean value
|
|
|
|
'false' : 'fals', # the false boolean value
|
|
|
|
}
|
|
|
|
|
|
|
|
_Enum_misc = {
|
|
|
|
'current_application' : 'cura', # the current application
|
|
|
|
}
|
|
|
|
|
|
|
|
_Enum_eMds = {
|
|
|
|
'option_down' : 'Kopt', #
|
|
|
|
'command_down' : 'Kcmd', #
|
|
|
|
'control_down' : 'Kctl', #
|
|
|
|
'shift_down' : 'Ksft', #
|
|
|
|
'caps_lock_down' : 'Kclk', #
|
|
|
|
}
|
|
|
|
|
|
|
|
_Enum_ekst = {
|
2002-01-22 19:22:32 -04:00
|
|
|
'escape_key' : 'ks5\x00', #
|
|
|
|
'delete_key' : 'ks3\x00', #
|
|
|
|
'tab_key' : 'ks0\x00', #
|
|
|
|
'return_key' : 'ks$\x00', #
|
|
|
|
'clear_key' : 'ksG\x00', #
|
|
|
|
'enter_key' : 'ksL\x00', #
|
|
|
|
'up_arrow_key' : 'ks~\x00', #
|
|
|
|
'down_arrow_key' : 'ks}\x00', #
|
|
|
|
'left_arrow_key' : 'ks{\x00', #
|
|
|
|
'right_arrow_key' : 'ks|\x00', #
|
|
|
|
'help_key' : 'ksr\x00', #
|
|
|
|
'home_key' : 'kss\x00', #
|
|
|
|
'page_up_key' : 'kst\x00', #
|
|
|
|
'page_down_key' : 'ksy\x00', #
|
|
|
|
'forward_del_key' : 'ksu\x00', #
|
|
|
|
'end_key' : 'ksw\x00', #
|
|
|
|
'F1_key' : 'ksz\x00', #
|
|
|
|
'F2_key' : 'ksx\x00', #
|
|
|
|
'F3_key' : 'ksc\x00', #
|
|
|
|
'F4_key' : 'ksv\x00', #
|
|
|
|
'F5_key' : 'ks`\x00', #
|
|
|
|
'F6_key' : 'ksa\x00', #
|
|
|
|
'F7_key' : 'ksb\x00', #
|
|
|
|
'F8_key' : 'ksd\x00', #
|
|
|
|
'F9_key' : 'kse\x00', #
|
|
|
|
'F10_key' : 'ksm\x00', #
|
|
|
|
'F11_key' : 'ksg\x00', #
|
|
|
|
'F12_key' : 'kso\x00', #
|
|
|
|
'F13_key' : 'ksi\x00', #
|
|
|
|
'F14_key' : 'ksk\x00', #
|
|
|
|
'F15_key' : 'ksq\x00', #
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Indices of types declared in this module
|
|
|
|
#
|
|
|
|
_classdeclarations = {
|
2002-01-22 19:22:32 -04:00
|
|
|
'jul ' : July,
|
|
|
|
'may ' : May,
|
|
|
|
'TEXT' : string,
|
|
|
|
'cmet' : cubic_metres,
|
|
|
|
'STXT' : styled_text,
|
|
|
|
'nds ' : number_2c__date_or_text,
|
|
|
|
'feet' : feet,
|
|
|
|
'feb ' : February,
|
2000-08-17 19:14:57 -03:00
|
|
|
'nmbr' : number,
|
2002-01-22 19:22:32 -04:00
|
|
|
'mile' : miles,
|
|
|
|
'kprs' : keystroke,
|
|
|
|
'psct' : writing_code,
|
|
|
|
'degf' : degrees_Fahrenheit,
|
|
|
|
'lrs ' : list_2c__record_or_text,
|
|
|
|
'ldt ' : date,
|
2000-08-17 19:14:57 -03:00
|
|
|
'litr' : litres,
|
2002-01-22 19:22:32 -04:00
|
|
|
'nd ' : number_or_date,
|
|
|
|
'cmtr' : centimetres,
|
|
|
|
'evnt' : event,
|
2000-08-17 19:14:57 -03:00
|
|
|
'pstr' : Pascal_string,
|
2002-01-22 19:22:32 -04:00
|
|
|
'zone' : zone,
|
|
|
|
'PICT' : picture,
|
|
|
|
'ls ' : list_or_string,
|
|
|
|
'long' : integer,
|
|
|
|
'sf ' : alias_or_string,
|
|
|
|
'citl' : writing_code_info,
|
|
|
|
'citm' : text_item,
|
|
|
|
'mach' : machine,
|
|
|
|
'type' : type_class,
|
|
|
|
'prep' : preposition,
|
|
|
|
'tue ' : Tuesday,
|
|
|
|
'case' : upper_case,
|
|
|
|
'vers' : version,
|
|
|
|
'wed ' : Wednesday,
|
|
|
|
'dec ' : December,
|
|
|
|
'sqkm' : square_kilometres,
|
|
|
|
'obj ' : reference,
|
|
|
|
'vect' : vector,
|
|
|
|
'wkdy' : weekday,
|
2000-08-17 19:14:57 -03:00
|
|
|
'cRGB' : RGB_color,
|
2002-01-22 19:22:32 -04:00
|
|
|
'sun ' : Sunday,
|
2000-08-17 19:14:57 -03:00
|
|
|
'itxt' : international_text,
|
|
|
|
'scnd' : seconds,
|
2002-01-22 19:22:32 -04:00
|
|
|
'mar ' : March,
|
|
|
|
'kmtr' : kilometres,
|
|
|
|
'sqft' : square_feet,
|
|
|
|
'list' : list,
|
|
|
|
'doub' : real,
|
|
|
|
'nov ' : November,
|
|
|
|
'qrts' : quarts,
|
2000-08-17 19:14:57 -03:00
|
|
|
'degc' : degrees_Celsius,
|
2002-01-22 19:22:32 -04:00
|
|
|
'msng' : missing_value,
|
|
|
|
'alis' : alias,
|
|
|
|
'jan ' : January,
|
|
|
|
'metr' : metres,
|
|
|
|
'mnth' : month,
|
|
|
|
'ns ' : number_or_string,
|
|
|
|
'jun ' : June,
|
|
|
|
'aug ' : August,
|
|
|
|
'llst' : linked_list,
|
|
|
|
'styl' : styled_Clipboard_text,
|
|
|
|
'encs' : encoded_string,
|
|
|
|
'galn' : gallons,
|
|
|
|
'cuin' : cubic_inches,
|
|
|
|
'fri ' : Friday,
|
|
|
|
'sutx' : styled_Unicode_text,
|
|
|
|
'lr ' : list_or_record,
|
2000-08-17 19:14:57 -03:00
|
|
|
'degk' : degrees_Kelvin,
|
2002-01-22 19:22:32 -04:00
|
|
|
'mon ' : Monday,
|
|
|
|
'snd ' : sound,
|
2002-08-07 12:53:42 -03:00
|
|
|
'pcls' : class_,
|
2002-01-22 19:22:32 -04:00
|
|
|
'kgrm' : kilograms,
|
|
|
|
'scpt' : script,
|
|
|
|
'****' : anything,
|
|
|
|
'prop' : property,
|
|
|
|
'reco' : record,
|
|
|
|
'bool' : boolean,
|
|
|
|
'oct ' : October,
|
|
|
|
'sqrm' : square_metres,
|
|
|
|
'inch' : inches,
|
|
|
|
'kfrm' : reference_form,
|
|
|
|
'cobj' : item,
|
|
|
|
'gram' : grams,
|
|
|
|
'cha ' : character,
|
|
|
|
'apr ' : April,
|
2002-08-07 12:53:42 -03:00
|
|
|
'undf' : empty_ae_name_,
|
2002-01-22 19:22:32 -04:00
|
|
|
'capp' : app,
|
|
|
|
'enum' : constant,
|
|
|
|
'hand' : handler,
|
|
|
|
'sqmi' : square_miles,
|
|
|
|
'rdat' : data,
|
|
|
|
'cstr' : C_string,
|
|
|
|
'utxt' : Unicode_text,
|
2000-08-17 19:14:57 -03:00
|
|
|
'thu ' : Thursday,
|
2002-01-22 19:22:32 -04:00
|
|
|
'sqyd' : square_yards,
|
|
|
|
'yard' : yards,
|
|
|
|
'cyrd' : cubic_yards,
|
|
|
|
'ozs ' : ounces,
|
|
|
|
'lbs ' : pounds,
|
|
|
|
'cfet' : cubic_feet,
|
|
|
|
'ccmt' : cubic_centimetres,
|
|
|
|
'sat ' : Saturday,
|
|
|
|
'sep ' : September,
|
|
|
|
'fss ' : file_specification,
|
|
|
|
'ctxt' : text,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
_propdeclarations = {
|
2002-01-22 19:22:32 -04:00
|
|
|
'week' : weeks,
|
2000-08-17 19:14:57 -03:00
|
|
|
'kMod' : modifiers,
|
2002-01-22 19:22:32 -04:00
|
|
|
'pare' : parent,
|
|
|
|
'leng' : length,
|
2000-08-17 19:14:57 -03:00
|
|
|
'hour' : hours,
|
2002-01-22 19:22:32 -04:00
|
|
|
'mnth' : month,
|
|
|
|
'min ' : minutes,
|
2000-08-17 19:14:57 -03:00
|
|
|
'wkdy' : weekday,
|
|
|
|
'dstr' : date_string,
|
2002-01-22 19:22:32 -04:00
|
|
|
'rest' : rest,
|
|
|
|
'ascr' : AppleScript,
|
|
|
|
'kknd' : key_kind,
|
|
|
|
'c@#^' : _3c_Inheritance_3e_,
|
|
|
|
'ID ' : id,
|
2000-08-17 19:14:57 -03:00
|
|
|
'year' : year,
|
2002-01-22 19:22:32 -04:00
|
|
|
'rvse' : reverse,
|
|
|
|
'tab ' : tab,
|
|
|
|
'tstr' : time_string,
|
|
|
|
'pi ' : pi,
|
2002-08-07 12:53:42 -03:00
|
|
|
'ret ' : return_,
|
2002-01-22 19:22:32 -04:00
|
|
|
'plcd' : language_code,
|
|
|
|
'kMsg' : key,
|
|
|
|
'spac' : space,
|
|
|
|
'days' : days,
|
|
|
|
'txdl' : text_item_delimiters,
|
|
|
|
'prdp' : print_depth,
|
|
|
|
'prln' : print_length,
|
|
|
|
'pscd' : script_code,
|
|
|
|
'time' : time,
|
|
|
|
'pnam' : name,
|
|
|
|
'rslt' : result,
|
|
|
|
'day ' : day,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
_compdeclarations = {
|
|
|
|
}
|
|
|
|
|
|
|
|
_enumdeclarations = {
|
|
|
|
'eMds' : _Enum_eMds,
|
2002-01-22 19:22:32 -04:00
|
|
|
'cons' : _Enum_cons,
|
|
|
|
'misc' : _Enum_misc,
|
|
|
|
'ekst' : _Enum_ekst,
|
|
|
|
'boov' : _Enum_boov,
|
2000-08-17 19:14:57 -03:00
|
|
|
}
|