mirror of
https://github.com/python/cpython.git
synced 2025-08-01 15:43:13 +00:00
Regenerated to take advantage of new _builtinSuites package.
This commit is contained in:
parent
d50c66b1e5
commit
368875c2d3
15 changed files with 621 additions and 693 deletions
|
@ -1,7 +1,7 @@
|
||||||
"""Suite CodeWarrior suite: Terms for scripting the CodeWarrior IDE
|
"""Suite CodeWarrior suite: Terms for scripting the CodeWarrior IDE
|
||||||
Level 0, version 0
|
Level 0, version 0
|
||||||
|
|
||||||
Generated from Macintosh HD:SWdev:CodeWarrior 6 MPTP:Metrowerks CodeWarrior:CodeWarrior IDE 4.1B9
|
Generated from Moes:Applications (Mac OS 9):Metrowerks CodeWarrior 7.0:Metrowerks CodeWarrior:CodeWarrior IDE 4.2.6
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -257,49 +257,42 @@ build_progress_documents = build_progress_document
|
||||||
class catalog_document(aetools.ComponentItem):
|
class catalog_document(aetools.ComponentItem):
|
||||||
"""catalog document - a browser catalog document """
|
"""catalog document - a browser catalog document """
|
||||||
want = 'CTLG'
|
want = 'CTLG'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
|
|
||||||
catalog_documents = catalog_document
|
catalog_documents = catalog_document
|
||||||
|
|
||||||
class class_browser(aetools.ComponentItem):
|
class class_browser(aetools.ComponentItem):
|
||||||
"""class browser - a class browser """
|
"""class browser - a class browser """
|
||||||
want = 'BROW'
|
want = 'BROW'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
|
|
||||||
class_browsers = class_browser
|
class_browsers = class_browser
|
||||||
|
|
||||||
class class_hierarchy(aetools.ComponentItem):
|
class class_hierarchy(aetools.ComponentItem):
|
||||||
"""class hierarchy - a class hierarchy document """
|
"""class hierarchy - a class hierarchy document """
|
||||||
want = 'HIER'
|
want = 'HIER'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
|
|
||||||
class_hierarchies = class_hierarchy
|
class_hierarchies = class_hierarchy
|
||||||
|
|
||||||
class editor_document(aetools.ComponentItem):
|
class editor_document(aetools.ComponentItem):
|
||||||
"""editor document - an editor document """
|
"""editor document - an editor document """
|
||||||
want = 'EDIT'
|
want = 'EDIT'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
|
|
||||||
editor_documents = editor_document
|
editor_documents = editor_document
|
||||||
|
|
||||||
class file_compare_document(aetools.ComponentItem):
|
class file_compare_document(aetools.ComponentItem):
|
||||||
"""file compare document - a file compare document """
|
"""file compare document - a file compare document """
|
||||||
want = 'COMP'
|
want = 'COMP'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
|
|
||||||
file_compare_documents = file_compare_document
|
file_compare_documents = file_compare_document
|
||||||
|
|
||||||
class message_document(aetools.ComponentItem):
|
class message_document(aetools.ComponentItem):
|
||||||
"""message document - a message document """
|
"""message document - a message document """
|
||||||
want = 'MSSG'
|
want = 'MSSG'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
|
|
||||||
message_documents = message_document
|
message_documents = message_document
|
||||||
|
|
||||||
class project_document(aetools.ComponentItem):
|
class project_document(aetools.ComponentItem):
|
||||||
"""project document - a project document """
|
"""project document - a project document """
|
||||||
want = 'PRJD'
|
want = 'PRJD'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
class current_target(aetools.NProperty):
|
class current_target(aetools.NProperty):
|
||||||
"""current target - the current target """
|
"""current target - the current target """
|
||||||
which = 'CURT'
|
which = 'CURT'
|
||||||
|
@ -311,28 +304,24 @@ project_documents = project_document
|
||||||
class project_inspector(aetools.ComponentItem):
|
class project_inspector(aetools.ComponentItem):
|
||||||
"""project inspector - the project inspector """
|
"""project inspector - the project inspector """
|
||||||
want = 'INSP'
|
want = 'INSP'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
|
|
||||||
project_inspectors = project_inspector
|
project_inspectors = project_inspector
|
||||||
|
|
||||||
class single_class_browser(aetools.ComponentItem):
|
class single_class_browser(aetools.ComponentItem):
|
||||||
"""single class browser - a single class browser """
|
"""single class browser - a single class browser """
|
||||||
want = '1BRW'
|
want = '1BRW'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
|
|
||||||
single_class_browsers = single_class_browser
|
single_class_browsers = single_class_browser
|
||||||
|
|
||||||
class single_class_hierarchy(aetools.ComponentItem):
|
class single_class_hierarchy(aetools.ComponentItem):
|
||||||
"""single class hierarchy - a single class hierarchy document """
|
"""single class hierarchy - a single class hierarchy document """
|
||||||
want = '1HIR'
|
want = '1HIR'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
|
|
||||||
single_class_hierarchies = single_class_hierarchy
|
single_class_hierarchies = single_class_hierarchy
|
||||||
|
|
||||||
class subtarget(aetools.ComponentItem):
|
class subtarget(aetools.ComponentItem):
|
||||||
"""subtarget - a target that is prerequisite for another target """
|
"""subtarget - a target that is prerequisite for another target """
|
||||||
want = 'SBTG'
|
want = 'SBTG'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
class target(aetools.NProperty):
|
class target(aetools.NProperty):
|
||||||
"""target - the target that is dependent on this subtarget """
|
"""target - the target that is dependent on this subtarget """
|
||||||
which = 'TrgT'
|
which = 'TrgT'
|
||||||
|
@ -347,7 +336,6 @@ subtargets = subtarget
|
||||||
class symbol_browser(aetools.ComponentItem):
|
class symbol_browser(aetools.ComponentItem):
|
||||||
"""symbol browser - a symbol browser """
|
"""symbol browser - a symbol browser """
|
||||||
want = 'SYMB'
|
want = 'SYMB'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
|
|
||||||
symbol_browsers = symbol_browser
|
symbol_browsers = symbol_browser
|
||||||
|
|
||||||
|
@ -358,10 +346,6 @@ class name(aetools.NProperty):
|
||||||
"""name - """
|
"""name - """
|
||||||
which = 'pnam'
|
which = 'pnam'
|
||||||
want = 'itxt'
|
want = 'itxt'
|
||||||
class index(aetools.NProperty):
|
|
||||||
"""index - the number of the target """
|
|
||||||
which = 'pidx'
|
|
||||||
want = 'long'
|
|
||||||
class project_document(aetools.NProperty):
|
class project_document(aetools.NProperty):
|
||||||
"""project document - the project document that contains this target """
|
"""project document - the project document that contains this target """
|
||||||
which = 'PrjD'
|
which = 'PrjD'
|
||||||
|
@ -382,7 +366,6 @@ class type(aetools.NProperty):
|
||||||
"""type - the type of source file """
|
"""type - the type of source file """
|
||||||
which = 'FTYP'
|
which = 'FTYP'
|
||||||
want = 'FTYP'
|
want = 'FTYP'
|
||||||
# repeated property index the number of the target file
|
|
||||||
class location(aetools.NProperty):
|
class location(aetools.NProperty):
|
||||||
"""location - the location of the target file on disk """
|
"""location - the location of the target file on disk """
|
||||||
which = 'FILE'
|
which = 'FILE'
|
||||||
|
@ -445,7 +428,6 @@ target_files = target_file
|
||||||
class text_document(aetools.ComponentItem):
|
class text_document(aetools.ComponentItem):
|
||||||
"""text document - a document that contains text """
|
"""text document - a document that contains text """
|
||||||
want = 'TXTD'
|
want = 'TXTD'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
class modified(aetools.NProperty):
|
class modified(aetools.NProperty):
|
||||||
"""modified - Has the document been modified since the last save? """
|
"""modified - Has the document been modified since the last save? """
|
||||||
which = 'imod'
|
which = 'imod'
|
||||||
|
@ -464,7 +446,6 @@ text_documents = text_document
|
||||||
class ToolServer_worksheet(aetools.ComponentItem):
|
class ToolServer_worksheet(aetools.ComponentItem):
|
||||||
"""ToolServer worksheet - a ToolServer worksheet """
|
"""ToolServer worksheet - a ToolServer worksheet """
|
||||||
want = 'TOOL'
|
want = 'TOOL'
|
||||||
# repeated property inherits all properties and elements of the given class are inherited by this class.
|
|
||||||
|
|
||||||
ToolServer_worksheets = ToolServer_worksheet
|
ToolServer_worksheets = ToolServer_worksheet
|
||||||
build_progress_document._propdict = {
|
build_progress_document._propdict = {
|
||||||
|
@ -538,7 +519,6 @@ symbol_browser._elemdict = {
|
||||||
}
|
}
|
||||||
target._propdict = {
|
target._propdict = {
|
||||||
'name' : name,
|
'name' : name,
|
||||||
'index' : index,
|
|
||||||
'project_document' : project_document,
|
'project_document' : project_document,
|
||||||
}
|
}
|
||||||
target._elemdict = {
|
target._elemdict = {
|
||||||
|
@ -548,7 +528,6 @@ target._elemdict = {
|
||||||
target_file._propdict = {
|
target_file._propdict = {
|
||||||
'id' : id,
|
'id' : id,
|
||||||
'type' : type,
|
'type' : type,
|
||||||
'index' : index,
|
|
||||||
'location' : location,
|
'location' : location,
|
||||||
'path' : path,
|
'path' : path,
|
||||||
'linked' : linked,
|
'linked' : linked,
|
||||||
|
@ -629,59 +608,58 @@ _Enum_PERM = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'TOOL' : ToolServer_worksheet,
|
|
||||||
'1HIR' : single_class_hierarchy,
|
|
||||||
'SRCF' : target_file,
|
|
||||||
'TXTD' : text_document,
|
|
||||||
'TRGT' : target,
|
|
||||||
'HIER' : class_hierarchy,
|
|
||||||
'CTLG' : catalog_document,
|
|
||||||
'1BRW' : single_class_browser,
|
'1BRW' : single_class_browser,
|
||||||
|
'PRJD' : project_document,
|
||||||
|
'SYMB' : symbol_browser,
|
||||||
|
'EDIT' : editor_document,
|
||||||
|
'COMP' : file_compare_document,
|
||||||
|
'BROW' : class_browser,
|
||||||
|
'SBTG' : subtarget,
|
||||||
'MSSG' : message_document,
|
'MSSG' : message_document,
|
||||||
'INSP' : project_inspector,
|
'INSP' : project_inspector,
|
||||||
'BROW' : class_browser,
|
'TXTD' : text_document,
|
||||||
'COMP' : file_compare_document,
|
'CTLG' : catalog_document,
|
||||||
'EDIT' : editor_document,
|
'HIER' : class_hierarchy,
|
||||||
'PRJD' : project_document,
|
'TRGT' : target,
|
||||||
'SBTG' : subtarget,
|
|
||||||
'SYMB' : symbol_browser,
|
|
||||||
'PRGS' : build_progress_document,
|
'PRGS' : build_progress_document,
|
||||||
|
'SRCF' : target_file,
|
||||||
|
'TOOL' : ToolServer_worksheet,
|
||||||
|
'1HIR' : single_class_hierarchy,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'PRER' : prerequisites,
|
|
||||||
'DBUG' : debug,
|
|
||||||
'CSZE' : code_size,
|
|
||||||
'Path' : path,
|
|
||||||
'pnam' : name,
|
|
||||||
'TrgT' : target,
|
|
||||||
'DSZE' : data_size,
|
|
||||||
'FTYP' : type,
|
|
||||||
'MODD' : modified_date,
|
|
||||||
'INIT' : init_before,
|
|
||||||
'sele' : selection,
|
|
||||||
'imod' : modified,
|
|
||||||
'DPND' : dependents,
|
|
||||||
'FILE' : location,
|
|
||||||
'LIDX' : link_index,
|
|
||||||
'LINK' : linked,
|
|
||||||
'ID ' : id,
|
|
||||||
'c@#^' : inherits,
|
|
||||||
'pidx' : index,
|
|
||||||
'LNKO' : link_against_output,
|
|
||||||
'WEAK' : weak_link,
|
|
||||||
'MRGE' : merge_output,
|
|
||||||
'CMPD' : compiled_date,
|
|
||||||
'PrjD' : project_document,
|
|
||||||
'CURT' : current_target,
|
'CURT' : current_target,
|
||||||
|
'PrjD' : project_document,
|
||||||
|
'MRGE' : merge_output,
|
||||||
|
'WEAK' : weak_link,
|
||||||
|
'DPND' : dependents,
|
||||||
|
'c@#^' : inherits,
|
||||||
|
'ID ' : id,
|
||||||
|
'CMPD' : compiled_date,
|
||||||
|
'LIDX' : link_index,
|
||||||
|
'FILE' : location,
|
||||||
|
'Path' : path,
|
||||||
|
'LNKO' : link_against_output,
|
||||||
|
'imod' : modified,
|
||||||
|
'sele' : selection,
|
||||||
|
'DSZE' : data_size,
|
||||||
|
'INIT' : init_before,
|
||||||
|
'MODD' : modified_date,
|
||||||
|
'FTYP' : type,
|
||||||
|
'TrgT' : target,
|
||||||
|
'pnam' : name,
|
||||||
|
'LINK' : linked,
|
||||||
|
'CSZE' : code_size,
|
||||||
|
'DBUG' : debug,
|
||||||
|
'PRER' : prerequisites,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
}
|
}
|
||||||
|
|
||||||
_enumdeclarations = {
|
_enumdeclarations = {
|
||||||
'PERM' : _Enum_PERM,
|
|
||||||
'FTYP' : _Enum_FTYP,
|
|
||||||
'DKND' : _Enum_DKND,
|
|
||||||
'Inte' : _Enum_Inte,
|
'Inte' : _Enum_Inte,
|
||||||
|
'DKND' : _Enum_DKND,
|
||||||
|
'FTYP' : _Enum_FTYP,
|
||||||
|
'PERM' : _Enum_PERM,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Suite Metrowerks Shell Suite: Events supported by the Metrowerks Project Shell
|
"""Suite Metrowerks Shell Suite: Events supported by the Metrowerks Project Shell
|
||||||
Level 1, version 1
|
Level 1, version 1
|
||||||
|
|
||||||
Generated from Macintosh HD:SWdev:CodeWarrior 6 MPTP:Metrowerks CodeWarrior:CodeWarrior IDE 4.1B9
|
Generated from Moes:Applications (Mac OS 9):Metrowerks CodeWarrior 7.0:Metrowerks CodeWarrior:CodeWarrior IDE 4.2.6
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -809,6 +809,10 @@ class Convert_Paths(aetools.NProperty):
|
||||||
"""Convert Paths - Enables conversion of DOS & Unix-style relative paths when searching for files. """
|
"""Convert Paths - Enables conversion of DOS & Unix-style relative paths when searching for files. """
|
||||||
which = 'PA04'
|
which = 'PA04'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class Require_Framework_Includes(aetools.NProperty):
|
||||||
|
"""Require Framework Includes - Causes the IDE to only look in the framework access paths if a Mac OS X framework style include (i.e. <Carbon/Carbon.h> ) is used. """
|
||||||
|
which = 'PA05'
|
||||||
|
want = 'bool'
|
||||||
|
|
||||||
class Browser_Coloring(aetools.ComponentItem):
|
class Browser_Coloring(aetools.ComponentItem):
|
||||||
"""Browser Coloring - Colors for Browser symbols. """
|
"""Browser Coloring - Colors for Browser symbols. """
|
||||||
|
@ -1033,7 +1037,6 @@ class Data_Update_Interval(aetools.NProperty):
|
||||||
"""Data Update Interval - How often to update the data while running (in seconds) """
|
"""Data Update Interval - How often to update the data while running (in seconds) """
|
||||||
which = 'Dt09'
|
which = 'Dt09'
|
||||||
want = 'long'
|
want = 'long'
|
||||||
# repeated property Auto_Target_Libraries Automatically target libraries when debugging
|
|
||||||
class Stop_at_temp_breakpoint(aetools.NProperty):
|
class Stop_at_temp_breakpoint(aetools.NProperty):
|
||||||
"""Stop at temp breakpoint - Stop at a temp breakpoint on program launch. Set breakpoint type in Temp Breakpoint Type AppleEvent. """
|
"""Stop at temp breakpoint - Stop at a temp breakpoint on program launch. Set breakpoint type in Temp Breakpoint Type AppleEvent. """
|
||||||
which = 'Dt13'
|
which = 'Dt13'
|
||||||
|
@ -1270,8 +1273,6 @@ class Text_Size(aetools.NProperty):
|
||||||
class Function_Information(aetools.ComponentItem):
|
class Function_Information(aetools.ComponentItem):
|
||||||
"""Function Information - Describes the location of any function or global data definition within the current project. """
|
"""Function Information - Describes the location of any function or global data definition within the current project. """
|
||||||
want = 'FDef'
|
want = 'FDef'
|
||||||
# repeated property disk_file The location on disk of the file containing the definition.
|
|
||||||
# repeated property lineNumber The line number where the definition begins.
|
|
||||||
|
|
||||||
class Global_Source_Trees(aetools.ComponentItem):
|
class Global_Source_Trees(aetools.ComponentItem):
|
||||||
"""Global Source Trees - Globally-defined source tree roots """
|
"""Global Source Trees - Globally-defined source tree roots """
|
||||||
|
@ -1284,7 +1285,6 @@ class Source_Trees(aetools.NProperty):
|
||||||
class Path_Information(aetools.ComponentItem):
|
class Path_Information(aetools.ComponentItem):
|
||||||
"""Path Information - Contains all of the parameters that describe an access path. """
|
"""Path Information - Contains all of the parameters that describe an access path. """
|
||||||
want = 'PInf'
|
want = 'PInf'
|
||||||
# repeated property name The actual path name.
|
|
||||||
class format(aetools.NProperty):
|
class format(aetools.NProperty):
|
||||||
"""format - Format of the a """
|
"""format - Format of the a """
|
||||||
which = 'Frmt'
|
which = 'Frmt'
|
||||||
|
@ -1301,6 +1301,10 @@ class recursive(aetools.NProperty):
|
||||||
"""recursive - Will the path be searched recursively? (Default is true) """
|
"""recursive - Will the path be searched recursively? (Default is true) """
|
||||||
which = 'Recu'
|
which = 'Recu'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
|
class framework(aetools.NProperty):
|
||||||
|
"""framework - Is the path a Mac OS X framework style path? (This flag is readable but not writeable from AppleScript.) """
|
||||||
|
which = 'Frmw'
|
||||||
|
want = 'bool'
|
||||||
class host_flags(aetools.NProperty):
|
class host_flags(aetools.NProperty):
|
||||||
"""host flags - Bit fields enabling the access path for each host OS (1 = Mac OS, 2 = Windows) """
|
"""host flags - Bit fields enabling the access path for each host OS (1 = Mac OS, 2 = Windows) """
|
||||||
which = 'HstF'
|
which = 'HstF'
|
||||||
|
@ -1325,8 +1329,6 @@ class filetype(aetools.NProperty):
|
||||||
"""filetype - What kind of file is this ? """
|
"""filetype - What kind of file is this ? """
|
||||||
which = 'SrcT'
|
which = 'SrcT'
|
||||||
want = 'SrcT'
|
want = 'SrcT'
|
||||||
# repeated property name The fileÕs name
|
|
||||||
# repeated property disk_file The fileÕs location on disk
|
|
||||||
class codesize(aetools.NProperty):
|
class codesize(aetools.NProperty):
|
||||||
"""codesize - The size of this fileÕs code. """
|
"""codesize - The size of this fileÕs code. """
|
||||||
which = 'CSiz'
|
which = 'CSiz'
|
||||||
|
@ -1359,10 +1361,6 @@ class includes(aetools.NProperty):
|
||||||
class Relative_Path(aetools.ComponentItem):
|
class Relative_Path(aetools.ComponentItem):
|
||||||
"""Relative Path - Relative path from some root """
|
"""Relative Path - Relative path from some root """
|
||||||
want = 'RlPt'
|
want = 'RlPt'
|
||||||
# repeated property name relative path from the root
|
|
||||||
# repeated property format Format of the relative path
|
|
||||||
# repeated property origin Origin of the relative path
|
|
||||||
# repeated property root Name of user-defined root
|
|
||||||
|
|
||||||
class Runtime_Settings(aetools.ComponentItem):
|
class Runtime_Settings(aetools.ComponentItem):
|
||||||
"""Runtime Settings - Runtime settings """
|
"""Runtime Settings - Runtime settings """
|
||||||
|
@ -1387,7 +1385,6 @@ class Environment_Variables(aetools.NProperty):
|
||||||
class Segment(aetools.ComponentItem):
|
class Segment(aetools.ComponentItem):
|
||||||
"""Segment - A segment or group in the project """
|
"""Segment - A segment or group in the project """
|
||||||
want = 'Seg '
|
want = 'Seg '
|
||||||
# repeated property name
|
|
||||||
class filecount(aetools.NProperty):
|
class filecount(aetools.NProperty):
|
||||||
"""filecount - """
|
"""filecount - """
|
||||||
which = 'NumF'
|
which = 'NumF'
|
||||||
|
@ -1440,7 +1437,6 @@ class Shielded_Items(aetools.NProperty):
|
||||||
class Source_Tree(aetools.ComponentItem):
|
class Source_Tree(aetools.ComponentItem):
|
||||||
"""Source Tree - User-defined source tree root """
|
"""Source Tree - User-defined source tree root """
|
||||||
want = 'SrcT'
|
want = 'SrcT'
|
||||||
# repeated property name name of the user-defined source tree root
|
|
||||||
class path(aetools.NProperty):
|
class path(aetools.NProperty):
|
||||||
"""path - path for the user-defined source tree root """
|
"""path - path for the user-defined source tree root """
|
||||||
which = 'Path'
|
which = 'Path'
|
||||||
|
@ -1449,7 +1445,6 @@ class path_kind(aetools.NProperty):
|
||||||
"""path kind - kind of path """
|
"""path kind - kind of path """
|
||||||
which = 'Kind'
|
which = 'Kind'
|
||||||
want = 'STKd'
|
want = 'STKd'
|
||||||
# repeated property format Format of the absolute path
|
|
||||||
|
|
||||||
class Syntax_Coloring(aetools.ComponentItem):
|
class Syntax_Coloring(aetools.ComponentItem):
|
||||||
"""Syntax Coloring - """
|
"""Syntax Coloring - """
|
||||||
|
@ -1470,10 +1465,6 @@ class String_Color(aetools.NProperty):
|
||||||
"""String Color - The color for strings. """
|
"""String Color - The color for strings. """
|
||||||
which = 'GH04'
|
which = 'GH04'
|
||||||
want = 'cRGB'
|
want = 'cRGB'
|
||||||
# repeated property Custom_Color_1 The color for the first set of custom keywords.
|
|
||||||
# repeated property Custom_Color_2 The color for the second set custom keywords.
|
|
||||||
# repeated property Custom_Color_3 The color for the third set of custom keywords.
|
|
||||||
# repeated property Custom_Color_4 The color for the fourth set of custom keywords.
|
|
||||||
|
|
||||||
class Target_Settings(aetools.ComponentItem):
|
class Target_Settings(aetools.ComponentItem):
|
||||||
"""Target Settings - Contains the definitions of a projectÕs target. """
|
"""Target Settings - Contains the definitions of a projectÕs target. """
|
||||||
|
@ -1514,7 +1505,6 @@ class Use_Relative_Paths(aetools.NProperty):
|
||||||
class Target_Source_Trees(aetools.ComponentItem):
|
class Target_Source_Trees(aetools.ComponentItem):
|
||||||
"""Target Source Trees - Target-specific user-defined source tree roots """
|
"""Target Source Trees - Target-specific user-defined source tree roots """
|
||||||
want = 'TSTs'
|
want = 'TSTs'
|
||||||
# repeated property Source_Trees List of source tree roots
|
|
||||||
|
|
||||||
class VCS_Setup(aetools.ComponentItem):
|
class VCS_Setup(aetools.ComponentItem):
|
||||||
"""VCS Setup - The version control system preferences. """
|
"""VCS Setup - The version control system preferences. """
|
||||||
|
@ -1567,7 +1557,6 @@ class Local_Path(aetools.NProperty):
|
||||||
class _class(aetools.ComponentItem):
|
class _class(aetools.ComponentItem):
|
||||||
"""class - A class, struct, or record type in the current project. """
|
"""class - A class, struct, or record type in the current project. """
|
||||||
want = 'Clas'
|
want = 'Clas'
|
||||||
# repeated property name
|
|
||||||
class language(aetools.NProperty):
|
class language(aetools.NProperty):
|
||||||
"""language - Implementation language of this class """
|
"""language - Implementation language of this class """
|
||||||
which = 'Lang'
|
which = 'Lang'
|
||||||
|
@ -1601,7 +1590,6 @@ classes = _class
|
||||||
class member_function(aetools.ComponentItem):
|
class member_function(aetools.ComponentItem):
|
||||||
"""member function - A class member function or method. """
|
"""member function - A class member function or method. """
|
||||||
want = 'MbFn'
|
want = 'MbFn'
|
||||||
# repeated property name
|
|
||||||
class access(aetools.NProperty):
|
class access(aetools.NProperty):
|
||||||
"""access - """
|
"""access - """
|
||||||
which = 'Acce'
|
which = 'Acce'
|
||||||
|
@ -1614,9 +1602,6 @@ class static(aetools.NProperty):
|
||||||
"""static - """
|
"""static - """
|
||||||
which = 'Stat'
|
which = 'Stat'
|
||||||
want = 'bool'
|
want = 'bool'
|
||||||
# repeated property declaration_file Source file containing the member function declaration
|
|
||||||
# repeated property declaration_start_offset start of member function declaration source code
|
|
||||||
# repeated property declaration_end_offset end of member function declaration
|
|
||||||
class implementation_file(aetools.NProperty):
|
class implementation_file(aetools.NProperty):
|
||||||
"""implementation file - Source file containing the member function definition """
|
"""implementation file - Source file containing the member function definition """
|
||||||
which = 'DfFl'
|
which = 'DfFl'
|
||||||
|
@ -1635,11 +1620,6 @@ member_functions = member_function
|
||||||
class data_member(aetools.ComponentItem):
|
class data_member(aetools.ComponentItem):
|
||||||
"""data member - A class data member or field """
|
"""data member - A class data member or field """
|
||||||
want = 'DtMb'
|
want = 'DtMb'
|
||||||
# repeated property name
|
|
||||||
# repeated property access
|
|
||||||
# repeated property static
|
|
||||||
# repeated property declaration_start_offset
|
|
||||||
# repeated property declaration_end_offset
|
|
||||||
|
|
||||||
data_members = data_member
|
data_members = data_member
|
||||||
|
|
||||||
|
@ -1650,8 +1630,6 @@ class _class(aetools.NProperty):
|
||||||
"""class - The class object corresponding to this base class """
|
"""class - The class object corresponding to this base class """
|
||||||
which = 'Clas'
|
which = 'Clas'
|
||||||
want = 'obj '
|
want = 'obj '
|
||||||
# repeated property access
|
|
||||||
# repeated property virtual
|
|
||||||
|
|
||||||
base_classes = base_class
|
base_classes = base_class
|
||||||
|
|
||||||
|
@ -1664,6 +1642,7 @@ Access_Paths._propdict = {
|
||||||
'System_Paths' : System_Paths,
|
'System_Paths' : System_Paths,
|
||||||
'Always_Full_Search' : Always_Full_Search,
|
'Always_Full_Search' : Always_Full_Search,
|
||||||
'Convert_Paths' : Convert_Paths,
|
'Convert_Paths' : Convert_Paths,
|
||||||
|
'Require_Framework_Includes' : Require_Framework_Includes,
|
||||||
}
|
}
|
||||||
Access_Paths._elemdict = {
|
Access_Paths._elemdict = {
|
||||||
}
|
}
|
||||||
|
@ -1844,6 +1823,7 @@ Path_Information._propdict = {
|
||||||
'origin' : origin,
|
'origin' : origin,
|
||||||
'root' : root,
|
'root' : root,
|
||||||
'recursive' : recursive,
|
'recursive' : recursive,
|
||||||
|
'framework' : framework,
|
||||||
'host_flags' : host_flags,
|
'host_flags' : host_flags,
|
||||||
}
|
}
|
||||||
Path_Information._elemdict = {
|
Path_Information._elemdict = {
|
||||||
|
@ -2120,236 +2100,238 @@ _Enum_PthF = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'DbDS' : Debugger_Display,
|
|
||||||
'TSTs' : Target_Source_Trees,
|
|
||||||
'VCSs' : VCS_Setup,
|
|
||||||
'mFNT' : Font,
|
|
||||||
'BRKW' : Browser_Coloring,
|
|
||||||
'PSTG' : Plugin_Settings,
|
|
||||||
'RSTG' : Runtime_Settings,
|
|
||||||
'MbFn' : member_function,
|
|
||||||
'DbGL' : Debugger_Global,
|
|
||||||
'SHFL' : Shielded_Folders,
|
|
||||||
'EnvV' : Environment_Variable,
|
|
||||||
'TARG' : Target_Settings,
|
|
||||||
'RlPt' : Relative_Path,
|
|
||||||
'BsCl' : base_class,
|
|
||||||
'PInf' : Path_Information,
|
|
||||||
'Seg ' : Segment,
|
|
||||||
'DtMb' : data_member,
|
|
||||||
'SNTX' : Syntax_Coloring,
|
|
||||||
'LXTR' : Build_Extras,
|
|
||||||
'DbWN' : Debugger_Windowing,
|
|
||||||
'PATH' : Access_Paths,
|
|
||||||
'FDef' : Function_Information,
|
|
||||||
'SrcT' : Source_Tree,
|
|
||||||
'SFit' : Shielded_Folder,
|
|
||||||
'FLMP' : File_Mappings,
|
|
||||||
'GXTR' : Extras,
|
|
||||||
'CUKW' : Custom_Keywords,
|
|
||||||
'GSTs' : Global_Source_Trees,
|
|
||||||
'EDTR' : Editor,
|
|
||||||
'DbTG' : Debugger_Target,
|
|
||||||
'ErrM' : Error_Information,
|
|
||||||
'Clas' : _class,
|
|
||||||
'SrcF' : ProjectFile,
|
|
||||||
'BSTG' : Build_Settings,
|
|
||||||
'Cata' : browser_catalog,
|
|
||||||
'FMap' : File_Mapping,
|
'FMap' : File_Mapping,
|
||||||
|
'Cata' : browser_catalog,
|
||||||
|
'BSTG' : Build_Settings,
|
||||||
|
'SrcF' : ProjectFile,
|
||||||
|
'BRKW' : Browser_Coloring,
|
||||||
|
'ErrM' : Error_Information,
|
||||||
|
'VCSs' : VCS_Setup,
|
||||||
|
'EDTR' : Editor,
|
||||||
|
'SHFL' : Shielded_Folders,
|
||||||
|
'SFit' : Shielded_Folder,
|
||||||
|
'CUKW' : Custom_Keywords,
|
||||||
|
'PInf' : Path_Information,
|
||||||
|
'FLMP' : File_Mappings,
|
||||||
|
'Seg ' : Segment,
|
||||||
|
'DbTG' : Debugger_Target,
|
||||||
|
'FDef' : Function_Information,
|
||||||
|
'PATH' : Access_Paths,
|
||||||
|
'GXTR' : Extras,
|
||||||
|
'DbWN' : Debugger_Windowing,
|
||||||
|
'GSTs' : Global_Source_Trees,
|
||||||
|
'SNTX' : Syntax_Coloring,
|
||||||
|
'BsCl' : base_class,
|
||||||
|
'RlPt' : Relative_Path,
|
||||||
|
'TARG' : Target_Settings,
|
||||||
|
'EnvV' : Environment_Variable,
|
||||||
|
'SrcT' : Source_Tree,
|
||||||
|
'DbGL' : Debugger_Global,
|
||||||
|
'MbFn' : member_function,
|
||||||
|
'RSTG' : Runtime_Settings,
|
||||||
|
'PSTG' : Plugin_Settings,
|
||||||
|
'DtMb' : data_member,
|
||||||
|
'LXTR' : Build_Extras,
|
||||||
|
'mFNT' : Font,
|
||||||
|
'TSTs' : Target_Source_Trees,
|
||||||
|
'DbDS' : Debugger_Display,
|
||||||
|
'Clas' : _class,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'SymG' : symbols,
|
'SymG' : symbols,
|
||||||
|
'BX02' : Success_Sound,
|
||||||
|
'BX03' : Failure_Sound,
|
||||||
|
'BX01' : Completion_Sound,
|
||||||
|
'BX06' : Compiler_Thread_Stack_Size,
|
||||||
|
'BX07' : Save_Before_Building,
|
||||||
|
'BX04' : Build_Before_Running,
|
||||||
|
'BX05' : Include_Cache_Size,
|
||||||
|
'NumF' : filecount,
|
||||||
|
'Frmw' : framework,
|
||||||
|
'Frmt' : format,
|
||||||
|
'FN01' : Auto_Indent,
|
||||||
|
'FN02' : Tab_Size,
|
||||||
|
'FN03' : Tab_Indents_Selection,
|
||||||
|
'FN04' : Tab_Inserts_Spaces,
|
||||||
|
'Dg07' : Dont_Step_in_Runtime,
|
||||||
|
'Dg06' : Select_Stack_Crawl,
|
||||||
|
'Dg05' : Stop_at_Main,
|
||||||
|
'Dg04' : Confirm_Kill,
|
||||||
|
'Dg03' : Launch_Apps_on_Open,
|
||||||
|
'Dg02' : Open_All_Classes,
|
||||||
|
'Dg01' : Ignore_Mod_Dates,
|
||||||
|
'Weak' : weak_link,
|
||||||
|
'DcFl' : declaration_file,
|
||||||
|
'Path' : path,
|
||||||
|
'Recu' : recursive,
|
||||||
|
'TA16' : Output_Directory_Location,
|
||||||
|
'Db10' : Show_As_Decimal,
|
||||||
'CSiz' : codesize,
|
'CSiz' : codesize,
|
||||||
|
'ErrL' : lineNumber,
|
||||||
|
'Dt16' : Temp_Breakpoint_Type,
|
||||||
|
'ErrS' : message,
|
||||||
|
'BW07' : Templates_Color,
|
||||||
|
'ErrT' : messageKind,
|
||||||
|
'EX18' : Use_ToolServer_Menu,
|
||||||
|
'EX19' : Automatic_Toolbar_Help,
|
||||||
|
'TA15' : Use_Relative_Paths,
|
||||||
|
'TA12' : Output_Directory_Origin,
|
||||||
|
'TA13' : Pre_Linker,
|
||||||
|
'TA10' : Target_Name,
|
||||||
|
'TA11' : Output_Directory_Path,
|
||||||
|
'EX10' : Use_Editor_Extensions,
|
||||||
|
'EX11' : Use_External_Editor,
|
||||||
|
'EX12' : Use_Script_Menu,
|
||||||
|
'EX16' : Recent_Editor_Count,
|
||||||
|
'EX17' : Recent_Project_Count,
|
||||||
'DfEn' : implementation_end_offset,
|
'DfEn' : implementation_end_offset,
|
||||||
'DcEn' : declaration_end_offset,
|
'Acce' : access,
|
||||||
'VC10' : Local_Path,
|
'BW02' : Constants_Color,
|
||||||
'FMps' : Mappings,
|
'Kind' : path_kind,
|
||||||
'VC02' : Connection_Method,
|
'Db08' : Default_Array_Size,
|
||||||
'VC03' : Username,
|
'Db09' : Show_Locals,
|
||||||
'TA02' : Extension,
|
|
||||||
'UpTD' : up_to_date,
|
|
||||||
'VC07' : Always_Prompt,
|
|
||||||
'VC04' : Password,
|
|
||||||
'VC05' : Auto_Connect,
|
|
||||||
'Dg13' : File_Cache_Duration,
|
|
||||||
'Dg12' : Cache_Edited_Files,
|
|
||||||
'Dg11' : Auto_Target_Libraries,
|
|
||||||
'VC09' : Database_Path,
|
|
||||||
'VC06' : Store_Password,
|
|
||||||
'Clas' : _class,
|
|
||||||
'PA02' : Always_Full_Search,
|
|
||||||
'PA03' : System_Paths,
|
|
||||||
'GH04' : String_Color,
|
|
||||||
'PA01' : User_Paths,
|
|
||||||
'TA09' : Post_Linker,
|
|
||||||
'PA04' : Convert_Paths,
|
|
||||||
'Lang' : language,
|
|
||||||
'EX31' : Cache_Subproject_Data,
|
|
||||||
'EX30' : Dump_Browser_Info,
|
|
||||||
'SrcT' : filetype,
|
'SrcT' : filetype,
|
||||||
|
'Db02' : Sort_By_Method,
|
||||||
|
'Db03' : Use_RTTI,
|
||||||
|
'Db01' : Show_Variable_Types,
|
||||||
|
'Db06' : Watchpoint_Hilite,
|
||||||
|
'Db07' : Variable_Changed_Hilite,
|
||||||
|
'Db04' : Threads_in_Window,
|
||||||
|
'Db05' : Variable_Hints,
|
||||||
|
'TA01' : Linker,
|
||||||
|
'EX09' : Browser_Active,
|
||||||
|
'EX08' : External_Reference,
|
||||||
|
'TA05' : Launchable,
|
||||||
|
'TA04' : Resource_File,
|
||||||
|
'TA07' : Compiler,
|
||||||
|
'TA06' : Ignored_by_Make,
|
||||||
|
'RS01' : Host_Application,
|
||||||
|
'RS03' : Working_Directory,
|
||||||
|
'RS02' : Command_Line_Arguments,
|
||||||
|
'EX07' : Full_Screen_Zoom,
|
||||||
|
'RS04' : Environment_Variables,
|
||||||
|
'EX04' : Modification_Date_Caching,
|
||||||
|
'PR04' : File_Type,
|
||||||
|
'DfSt' : implementation_start_offset,
|
||||||
|
'pnam' : name,
|
||||||
|
'GH01' : Syntax_Coloring,
|
||||||
|
'GH03' : Keyword_Color,
|
||||||
|
'GH02' : Comment_Color,
|
||||||
|
'GH05' : Custom_Color_1,
|
||||||
|
'GH04' : String_Color,
|
||||||
|
'GH07' : Custom_Color_3,
|
||||||
|
'GH06' : Custom_Color_2,
|
||||||
|
'GH08' : Custom_Color_4,
|
||||||
'ST01' : Source_Trees,
|
'ST01' : Source_Trees,
|
||||||
|
'EX30' : Dump_Browser_Info,
|
||||||
|
'EX31' : Cache_Subproject_Data,
|
||||||
|
'Clas' : _class,
|
||||||
|
'DSiz' : datasize,
|
||||||
|
'ED14' : Context_Popup_Delay,
|
||||||
|
'ED15' : Relaxed_C_Popup_Parsing,
|
||||||
|
'ED16' : Left_Margin_Line_Select,
|
||||||
|
'ED17' : Default_Text_File_Format,
|
||||||
|
'ED10' : Remember_Window,
|
||||||
|
'ED12' : Main_Text_Color,
|
||||||
|
'ED13' : Background_Color,
|
||||||
|
'Prot' : seg_2d_protected,
|
||||||
|
'Purg' : seg_2d_purgeable,
|
||||||
|
'HstF' : host_flags,
|
||||||
|
'Stat' : static,
|
||||||
|
'ptps' : Text_Size,
|
||||||
|
'PA01' : User_Paths,
|
||||||
|
'DcSt' : declaration_start_offset,
|
||||||
|
'IncF' : includes,
|
||||||
|
'Valu' : value,
|
||||||
|
'ED07' : Use_Multiple_Undo,
|
||||||
|
'ED06' : Sort_Function_Popup,
|
||||||
|
'ED04' : Use_Drag__26__Drop_Editing,
|
||||||
|
'ED03' : Balance,
|
||||||
|
'ED02' : Dynamic_Scroll,
|
||||||
|
'ED01' : Flash_Delay,
|
||||||
|
'ED09' : Remember_Selection,
|
||||||
|
'ED08' : Remember_Font,
|
||||||
|
'SF03' : Skip_Find_And_Compare_Operations,
|
||||||
|
'SF02' : Skip_Project_Operations,
|
||||||
|
'SF01' : Expression_To_Match,
|
||||||
|
'SubC' : subclasses,
|
||||||
|
'SubA' : all_subclasses,
|
||||||
|
'ptxf' : Text_Font,
|
||||||
|
'Dg11' : Auto_Target_Libraries,
|
||||||
|
'PX01' : Plugin_Diagnostics_Level,
|
||||||
|
'PX02' : Disable_Third_Party_COM_Plugins,
|
||||||
|
'Lang' : language,
|
||||||
|
'BW10' : Template_Commands_in_Menu,
|
||||||
|
'Dt08' : Update_Data_While_Running,
|
||||||
|
'Dt09' : Data_Update_Interval,
|
||||||
|
'VC04' : Password,
|
||||||
|
'Dt02' : Log_System_Messages,
|
||||||
|
'Orig' : origin,
|
||||||
|
'Prel' : seg_2d_preloaded,
|
||||||
|
'UpTD' : up_to_date,
|
||||||
|
'Dw02' : Do_Nothing_To_Projects,
|
||||||
|
'SFis' : Shielded_Items,
|
||||||
|
'SysH' : seg_2d_system_heap,
|
||||||
|
'file' : disk_file,
|
||||||
|
'Bfor' : initialize_before,
|
||||||
|
'VC10' : Local_Path,
|
||||||
'VC11' : Use_Global_Settings,
|
'VC11' : Use_Global_Settings,
|
||||||
'PLck' : seg_2d_locked,
|
'PLck' : seg_2d_locked,
|
||||||
'GH08' : Custom_Color_4,
|
|
||||||
'DfFl' : implementation_file,
|
|
||||||
'GH06' : Custom_Color_2,
|
|
||||||
'GH07' : Custom_Color_3,
|
|
||||||
'Db10' : Show_As_Decimal,
|
|
||||||
'GH05' : Custom_Color_1,
|
|
||||||
'GH02' : Comment_Color,
|
|
||||||
'Kind' : path_kind,
|
|
||||||
'GH01' : Syntax_Coloring,
|
|
||||||
'Dt10' : Relocated_Executable_Path,
|
|
||||||
'BW03' : Enums_Color,
|
|
||||||
'BW00' : Browser_Keywords,
|
|
||||||
'Dt13' : Stop_at_temp_breakpoint,
|
|
||||||
'Dt14' : Temp_breakpoint_names,
|
|
||||||
'Dt15' : Cache_symbolics,
|
|
||||||
'Dt16' : Temp_Breakpoint_Type,
|
|
||||||
'pnam' : name,
|
|
||||||
'DfSt' : implementation_start_offset,
|
|
||||||
'Dw01' : Debugging_Start_Action,
|
|
||||||
'BW08' : Typedefs_Color,
|
|
||||||
'TA16' : Output_Directory_Location,
|
|
||||||
'PR04' : File_Type,
|
|
||||||
'EX04' : Modification_Date_Caching,
|
|
||||||
'RS04' : Environment_Variables,
|
|
||||||
'EX07' : Full_Screen_Zoom,
|
|
||||||
'RS02' : Command_Line_Arguments,
|
|
||||||
'RS03' : Working_Directory,
|
|
||||||
'RS01' : Host_Application,
|
|
||||||
'TA06' : Ignored_by_Make,
|
|
||||||
'TA07' : Compiler,
|
|
||||||
'TA04' : Resource_File,
|
|
||||||
'TA05' : Launchable,
|
|
||||||
'EX08' : External_Reference,
|
|
||||||
'EX09' : Browser_Active,
|
|
||||||
'Prot' : seg_2d_protected,
|
|
||||||
'TA01' : Linker,
|
|
||||||
'Db05' : Variable_Hints,
|
|
||||||
'Db04' : Threads_in_Window,
|
|
||||||
'Db07' : Variable_Changed_Hilite,
|
|
||||||
'Db06' : Watchpoint_Hilite,
|
|
||||||
'Db01' : Show_Variable_Types,
|
|
||||||
'Db03' : Use_RTTI,
|
|
||||||
'Db02' : Sort_By_Method,
|
|
||||||
'file' : disk_file,
|
|
||||||
'SysH' : seg_2d_system_heap,
|
|
||||||
'Db09' : Show_Locals,
|
|
||||||
'Db08' : Default_Array_Size,
|
|
||||||
'GH03' : Keyword_Color,
|
|
||||||
'VC08' : Mount_Volume,
|
|
||||||
'SFis' : Shielded_Items,
|
|
||||||
'SubA' : all_subclasses,
|
|
||||||
'Prel' : seg_2d_preloaded,
|
|
||||||
'Orig' : origin,
|
|
||||||
'Dt02' : Log_System_Messages,
|
|
||||||
'DcFl' : declaration_file,
|
|
||||||
'BW02' : Constants_Color,
|
|
||||||
'Dt09' : Data_Update_Interval,
|
|
||||||
'Dt08' : Update_Data_While_Running,
|
|
||||||
'BW10' : Template_Commands_in_Menu,
|
|
||||||
'BW01' : Classes_Color,
|
|
||||||
'EX17' : Recent_Project_Count,
|
|
||||||
'EX16' : Recent_Editor_Count,
|
|
||||||
'BW07' : Templates_Color,
|
|
||||||
'BW04' : Functions_Color,
|
|
||||||
'EX12' : Use_Script_Menu,
|
|
||||||
'BW05' : Globals_Color,
|
|
||||||
'EX10' : Use_Editor_Extensions,
|
|
||||||
'TA11' : Output_Directory_Path,
|
|
||||||
'TA10' : Target_Name,
|
|
||||||
'TA13' : Pre_Linker,
|
|
||||||
'TA12' : Output_Directory_Origin,
|
|
||||||
'TA15' : Use_Relative_Paths,
|
|
||||||
'EX19' : Automatic_Toolbar_Help,
|
|
||||||
'EX18' : Use_ToolServer_Menu,
|
|
||||||
'ErrT' : messageKind,
|
|
||||||
'ptxf' : Text_Font,
|
|
||||||
'Weak' : weak_link,
|
|
||||||
'ptps' : Text_Size,
|
|
||||||
'Root' : root,
|
|
||||||
'ErrS' : message,
|
|
||||||
'SubC' : subclasses,
|
|
||||||
'Dg04' : Confirm_Kill,
|
|
||||||
'SF01' : Expression_To_Match,
|
|
||||||
'SF02' : Skip_Project_Operations,
|
|
||||||
'SF03' : Skip_Find_And_Compare_Operations,
|
|
||||||
'ED08' : Remember_Font,
|
|
||||||
'ED09' : Remember_Selection,
|
|
||||||
'DSiz' : datasize,
|
|
||||||
'VC01' : VCS_Active,
|
|
||||||
'ErrL' : lineNumber,
|
|
||||||
'ED01' : Flash_Delay,
|
|
||||||
'ED02' : Dynamic_Scroll,
|
|
||||||
'ED03' : Balance,
|
|
||||||
'ED04' : Use_Drag__26__Drop_Editing,
|
|
||||||
'ED06' : Sort_Function_Popup,
|
|
||||||
'ED07' : Use_Multiple_Undo,
|
|
||||||
'Recu' : recursive,
|
|
||||||
'Valu' : value,
|
|
||||||
'Path' : path,
|
|
||||||
'IncF' : includes,
|
|
||||||
'Bfor' : initialize_before,
|
|
||||||
'Dw02' : Do_Nothing_To_Projects,
|
|
||||||
'TA03' : Precompiled,
|
|
||||||
'PX01' : Plugin_Diagnostics_Level,
|
|
||||||
'EX11' : Use_External_Editor,
|
|
||||||
'PX02' : Disable_Third_Party_COM_Plugins,
|
|
||||||
'DcSt' : declaration_start_offset,
|
|
||||||
'Dg01' : Ignore_Mod_Dates,
|
|
||||||
'Dg02' : Open_All_Classes,
|
|
||||||
'Dg03' : Launch_Apps_on_Open,
|
|
||||||
'BW06' : Macros_Color,
|
'BW06' : Macros_Color,
|
||||||
'Dg05' : Stop_at_Main,
|
'BW08' : Typedefs_Color,
|
||||||
'Dg06' : Select_Stack_Crawl,
|
'Dw01' : Debugging_Start_Action,
|
||||||
'Dg07' : Dont_Step_in_Runtime,
|
'BW05' : Globals_Color,
|
||||||
'HstF' : host_flags,
|
'BW04' : Functions_Color,
|
||||||
'FN04' : Tab_Inserts_Spaces,
|
'Dt15' : Cache_symbolics,
|
||||||
'FN03' : Tab_Indents_Selection,
|
'Dt14' : Temp_breakpoint_names,
|
||||||
'FN02' : Tab_Size,
|
'Dt13' : Stop_at_temp_breakpoint,
|
||||||
'FN01' : Auto_Indent,
|
'BW00' : Browser_Keywords,
|
||||||
'Frmt' : format,
|
'BW03' : Enums_Color,
|
||||||
'Stat' : static,
|
'Dt10' : Relocated_Executable_Path,
|
||||||
|
'DfFl' : implementation_file,
|
||||||
|
'BW01' : Classes_Color,
|
||||||
|
'TA03' : Precompiled,
|
||||||
|
'TA02' : Extension,
|
||||||
|
'PA05' : Require_Framework_Includes,
|
||||||
|
'PA04' : Convert_Paths,
|
||||||
|
'Root' : root,
|
||||||
|
'PA03' : System_Paths,
|
||||||
|
'PA02' : Always_Full_Search,
|
||||||
|
'VC09' : Database_Path,
|
||||||
|
'VC08' : Mount_Volume,
|
||||||
|
'Dg12' : Cache_Edited_Files,
|
||||||
|
'Dg13' : File_Cache_Duration,
|
||||||
|
'VC05' : Auto_Connect,
|
||||||
'Virt' : virtual,
|
'Virt' : virtual,
|
||||||
'Purg' : seg_2d_purgeable,
|
'VC07' : Always_Prompt,
|
||||||
'NumF' : filecount,
|
'VC06' : Store_Password,
|
||||||
'Acce' : access,
|
'VC01' : VCS_Active,
|
||||||
'BX05' : Include_Cache_Size,
|
'VC03' : Username,
|
||||||
'BX04' : Build_Before_Running,
|
'VC02' : Connection_Method,
|
||||||
'BX07' : Save_Before_Building,
|
'FMps' : Mappings,
|
||||||
'BX06' : Compiler_Thread_Stack_Size,
|
'TA09' : Post_Linker,
|
||||||
'BX01' : Completion_Sound,
|
'DcEn' : declaration_end_offset,
|
||||||
'BX03' : Failure_Sound,
|
|
||||||
'BX02' : Success_Sound,
|
|
||||||
'ED13' : Background_Color,
|
|
||||||
'ED12' : Main_Text_Color,
|
|
||||||
'ED10' : Remember_Window,
|
|
||||||
'ED17' : Default_Text_File_Format,
|
|
||||||
'ED16' : Left_Margin_Line_Select,
|
|
||||||
'ED15' : Relaxed_C_Popup_Parsing,
|
|
||||||
'ED14' : Context_Popup_Delay,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
}
|
}
|
||||||
|
|
||||||
_enumdeclarations = {
|
_enumdeclarations = {
|
||||||
'PPrm' : _Enum_PPrm,
|
|
||||||
'BXbr' : _Enum_BXbr,
|
|
||||||
'PthF' : _Enum_PthF,
|
|
||||||
'Lang' : _Enum_Lang,
|
'Lang' : _Enum_Lang,
|
||||||
'PXdg' : _Enum_PXdg,
|
'Inte' : _Enum_Inte,
|
||||||
'SrcT' : _Enum_SrcT,
|
|
||||||
'savo' : _Enum_savo,
|
|
||||||
'TmpB' : _Enum_TmpB,
|
|
||||||
'DbSA' : _Enum_DbSA,
|
|
||||||
'ErrT' : _Enum_ErrT,
|
|
||||||
'TxtF' : _Enum_TxtF,
|
|
||||||
'RefP' : _Enum_RefP,
|
|
||||||
'Acce' : _Enum_Acce,
|
|
||||||
'STKd' : _Enum_STKd,
|
'STKd' : _Enum_STKd,
|
||||||
'DgBL' : _Enum_DgBL,
|
'DgBL' : _Enum_DgBL,
|
||||||
'Inte' : _Enum_Inte,
|
'Acce' : _Enum_Acce,
|
||||||
|
'RefP' : _Enum_RefP,
|
||||||
|
'TxtF' : _Enum_TxtF,
|
||||||
|
'DbSA' : _Enum_DbSA,
|
||||||
|
'TmpB' : _Enum_TmpB,
|
||||||
|
'savo' : _Enum_savo,
|
||||||
|
'PthF' : _Enum_PthF,
|
||||||
|
'SrcT' : _Enum_SrcT,
|
||||||
|
'PXdg' : _Enum_PXdg,
|
||||||
|
'ErrT' : _Enum_ErrT,
|
||||||
|
'BXbr' : _Enum_BXbr,
|
||||||
|
'PPrm' : _Enum_PPrm,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Suite Required: Terms that every application should support
|
"""Suite Required: Terms that every application should support
|
||||||
Level 1, version 1
|
Level 1, version 1
|
||||||
|
|
||||||
Generated from Macintosh HD:SWdev:CodeWarrior 6 MPTP:Metrowerks CodeWarrior:CodeWarrior IDE 4.1B9
|
Generated from Moes:Applications (Mac OS 9):Metrowerks CodeWarrior 7.0:Metrowerks CodeWarrior:CodeWarrior IDE 4.2.6
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Suite Standard Suite: Common terms for most applications
|
"""Suite Standard Suite: Common terms for most applications
|
||||||
Level 1, version 1
|
Level 1, version 1
|
||||||
|
|
||||||
Generated from Macintosh HD:SWdev:CodeWarrior 6 MPTP:Metrowerks CodeWarrior:CodeWarrior IDE 4.1B9
|
Generated from Moes:Applications (Mac OS 9):Metrowerks CodeWarrior 7.0:Metrowerks CodeWarrior:CodeWarrior IDE 4.2.6
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -233,15 +233,10 @@ files = file
|
||||||
class insertion_point(aetools.ComponentItem):
|
class insertion_point(aetools.ComponentItem):
|
||||||
"""insertion point - An insertion location between two objects """
|
"""insertion point - An insertion location between two objects """
|
||||||
want = 'cins'
|
want = 'cins'
|
||||||
# repeated property length length of text object (in characters)
|
|
||||||
# repeated property offset offset of a text object from the beginning of the document (first char has offset 1)
|
|
||||||
|
|
||||||
class line(aetools.ComponentItem):
|
class line(aetools.ComponentItem):
|
||||||
"""line - lines of text """
|
"""line - lines of text """
|
||||||
want = 'clin'
|
want = 'clin'
|
||||||
# repeated property index index of a line object from the beginning of the document (first line has index 1)
|
|
||||||
# repeated property offset offset (in characters) of a line object from the beginning of the document
|
|
||||||
# repeated property length length in characters of this object
|
|
||||||
# element 'cha ' as ['indx', 'rang', 'rele']
|
# element 'cha ' as ['indx', 'rang', 'rele']
|
||||||
|
|
||||||
lines = line
|
lines = line
|
||||||
|
@ -253,8 +248,6 @@ class contents(aetools.NProperty):
|
||||||
"""contents - the contents of the selection """
|
"""contents - the contents of the selection """
|
||||||
which = 'pcnt'
|
which = 'pcnt'
|
||||||
want = 'type'
|
want = 'type'
|
||||||
# repeated property length length of text object (in characters)
|
|
||||||
# repeated property offset offset of a text object from the beginning of the document (first char has offset 1)
|
|
||||||
# element 'cha ' as ['indx', 'rele', 'rang', 'test']
|
# element 'cha ' as ['indx', 'rele', 'rang', 'test']
|
||||||
# element 'clin' as ['indx', 'rang', 'rele']
|
# element 'clin' as ['indx', 'rang', 'rele']
|
||||||
# element 'ctxt' as ['rang']
|
# element 'ctxt' as ['rang']
|
||||||
|
@ -262,8 +255,6 @@ class contents(aetools.NProperty):
|
||||||
class text(aetools.ComponentItem):
|
class text(aetools.ComponentItem):
|
||||||
"""text - Text """
|
"""text - Text """
|
||||||
want = 'ctxt'
|
want = 'ctxt'
|
||||||
# repeated property length length of text object (in characters)
|
|
||||||
# repeated property offset offset of a text object from the beginning of the document (first char has offset 1)
|
|
||||||
# element 'cha ' as ['indx', 'rele', 'rang']
|
# element 'cha ' as ['indx', 'rele', 'rang']
|
||||||
# element 'cins' as ['rele']
|
# element 'cins' as ['rele']
|
||||||
# element 'clin' as ['indx', 'rang', 'rele']
|
# element 'clin' as ['indx', 'rang', 'rele']
|
||||||
|
@ -272,8 +263,6 @@ class text(aetools.ComponentItem):
|
||||||
class window(aetools.ComponentItem):
|
class window(aetools.ComponentItem):
|
||||||
"""window - A window """
|
"""window - A window """
|
||||||
want = 'cwin'
|
want = 'cwin'
|
||||||
# repeated property name the title of the window
|
|
||||||
# repeated property index the number of the window
|
|
||||||
class bounds(aetools.NProperty):
|
class bounds(aetools.NProperty):
|
||||||
"""bounds - the boundary rectangle for the window """
|
"""bounds - the boundary rectangle for the window """
|
||||||
which = 'pbnd'
|
which = 'pbnd'
|
||||||
|
@ -368,40 +357,38 @@ window._propdict = {
|
||||||
}
|
}
|
||||||
window._elemdict = {
|
window._elemdict = {
|
||||||
}
|
}
|
||||||
import Metrowerks_Shell_Suite
|
|
||||||
from Metrowerks_Shell_Suite import _Enum_savo
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'docu' : document,
|
|
||||||
'cins' : insertion_point,
|
|
||||||
'capp' : application,
|
|
||||||
'ctxt' : text,
|
|
||||||
'csel' : selection_2d_object,
|
|
||||||
'clin' : line,
|
|
||||||
'file' : file,
|
|
||||||
'cwin' : window,
|
|
||||||
'cha ' : character,
|
'cha ' : character,
|
||||||
|
'ctxt' : text,
|
||||||
|
'cwin' : window,
|
||||||
|
'file' : file,
|
||||||
|
'clin' : line,
|
||||||
|
'csel' : selection_2d_object,
|
||||||
|
'capp' : application,
|
||||||
|
'cins' : insertion_point,
|
||||||
|
'docu' : document,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'pzum' : zoomed,
|
|
||||||
'DKND' : kind,
|
|
||||||
'pOff' : offset,
|
|
||||||
'pLen' : length,
|
|
||||||
'pnam' : name,
|
|
||||||
'FILE' : location,
|
|
||||||
'pcnt' : contents,
|
|
||||||
'cwin' : window,
|
|
||||||
'ppos' : position,
|
|
||||||
'pidx' : index,
|
|
||||||
'docu' : document,
|
|
||||||
'PERM' : file_permissions,
|
|
||||||
'pbnd' : bounds,
|
|
||||||
'pvis' : visible,
|
|
||||||
'inte' : user_interaction,
|
'inte' : user_interaction,
|
||||||
|
'pvis' : visible,
|
||||||
|
'DKND' : kind,
|
||||||
|
'pbnd' : bounds,
|
||||||
|
'PERM' : file_permissions,
|
||||||
|
'docu' : document,
|
||||||
|
'pidx' : index,
|
||||||
|
'pOff' : offset,
|
||||||
|
'cwin' : window,
|
||||||
|
'FILE' : location,
|
||||||
|
'pnam' : name,
|
||||||
|
'pLen' : length,
|
||||||
|
'ppos' : position,
|
||||||
|
'pzum' : zoomed,
|
||||||
|
'pcnt' : contents,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
"""
|
"""
|
||||||
Package generated from Macintosh HD:SWdev:CodeWarrior 6 MPTP:Metrowerks CodeWarrior:CodeWarrior IDE 4.1B9
|
Package generated from Moes:Applications (Mac OS 9):Metrowerks CodeWarrior 7.0:Metrowerks CodeWarrior:CodeWarrior IDE 4.2.6
|
||||||
Resource aete resid 0 AppleEvent Suites
|
Resource aete resid 0 AppleEvent Suites
|
||||||
"""
|
"""
|
||||||
import aetools
|
import aetools
|
||||||
|
Error = aetools.Error
|
||||||
import Required
|
import Required
|
||||||
import Standard_Suite
|
import Standard_Suite
|
||||||
import CodeWarrior_suite
|
import CodeWarrior_suite
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Suite AppleScript Suite: Standard terms for AppleScript
|
"""Suite AppleScript Suite: Standard terms for AppleScript
|
||||||
Level 1, version 1
|
Level 1, version 1
|
||||||
|
|
||||||
Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
|
Generated from Moes:Systeemmap:Extensies:AppleScript
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -305,7 +305,7 @@ class AppleScript_Suite_Events:
|
||||||
Returns: anything
|
Returns: anything
|
||||||
"""
|
"""
|
||||||
_code = 'ascr'
|
_code = 'ascr'
|
||||||
_subcode = '\255 '
|
_subcode = '\xad '
|
||||||
|
|
||||||
if _arguments: raise TypeError, 'No optional args expected'
|
if _arguments: raise TypeError, 'No optional args expected'
|
||||||
_arguments['----'] = _object
|
_arguments['----'] = _object
|
||||||
|
@ -785,14 +785,12 @@ lists = list
|
||||||
class linked_list(aetools.ComponentItem):
|
class linked_list(aetools.ComponentItem):
|
||||||
"""linked list - An ordered collection of items """
|
"""linked list - An ordered collection of items """
|
||||||
want = 'llst'
|
want = 'llst'
|
||||||
# repeated property length the length of a list
|
|
||||||
|
|
||||||
linked_lists = linked_list
|
linked_lists = linked_list
|
||||||
|
|
||||||
class vector(aetools.ComponentItem):
|
class vector(aetools.ComponentItem):
|
||||||
"""vector - An ordered collection of items """
|
"""vector - An ordered collection of items """
|
||||||
want = 'vect'
|
want = 'vect'
|
||||||
# repeated property length the length of a list
|
|
||||||
|
|
||||||
vectors = vector
|
vectors = vector
|
||||||
|
|
||||||
|
@ -1882,37 +1880,37 @@ _Enum_eMds = {
|
||||||
}
|
}
|
||||||
|
|
||||||
_Enum_ekst = {
|
_Enum_ekst = {
|
||||||
'escape_key' : 'ks5\000', #
|
'escape_key' : 'ks5\x00', #
|
||||||
'delete_key' : 'ks3\000', #
|
'delete_key' : 'ks3\x00', #
|
||||||
'tab_key' : 'ks0\000', #
|
'tab_key' : 'ks0\x00', #
|
||||||
'return_key' : 'ks$\000', #
|
'return_key' : 'ks$\x00', #
|
||||||
'clear_key' : 'ksG\000', #
|
'clear_key' : 'ksG\x00', #
|
||||||
'enter_key' : 'ksL\000', #
|
'enter_key' : 'ksL\x00', #
|
||||||
'up_arrow_key' : 'ks~\000', #
|
'up_arrow_key' : 'ks~\x00', #
|
||||||
'down_arrow_key' : 'ks}\000', #
|
'down_arrow_key' : 'ks}\x00', #
|
||||||
'left_arrow_key' : 'ks{\000', #
|
'left_arrow_key' : 'ks{\x00', #
|
||||||
'right_arrow_key' : 'ks|\000', #
|
'right_arrow_key' : 'ks|\x00', #
|
||||||
'help_key' : 'ksr\000', #
|
'help_key' : 'ksr\x00', #
|
||||||
'home_key' : 'kss\000', #
|
'home_key' : 'kss\x00', #
|
||||||
'page_up_key' : 'kst\000', #
|
'page_up_key' : 'kst\x00', #
|
||||||
'page_down_key' : 'ksy\000', #
|
'page_down_key' : 'ksy\x00', #
|
||||||
'forward_del_key' : 'ksu\000', #
|
'forward_del_key' : 'ksu\x00', #
|
||||||
'end_key' : 'ksw\000', #
|
'end_key' : 'ksw\x00', #
|
||||||
'F1_key' : 'ksz\000', #
|
'F1_key' : 'ksz\x00', #
|
||||||
'F2_key' : 'ksx\000', #
|
'F2_key' : 'ksx\x00', #
|
||||||
'F3_key' : 'ksc\000', #
|
'F3_key' : 'ksc\x00', #
|
||||||
'F4_key' : 'ksv\000', #
|
'F4_key' : 'ksv\x00', #
|
||||||
'F5_key' : 'ks`\000', #
|
'F5_key' : 'ks`\x00', #
|
||||||
'F6_key' : 'ksa\000', #
|
'F6_key' : 'ksa\x00', #
|
||||||
'F7_key' : 'ksb\000', #
|
'F7_key' : 'ksb\x00', #
|
||||||
'F8_key' : 'ksd\000', #
|
'F8_key' : 'ksd\x00', #
|
||||||
'F9_key' : 'kse\000', #
|
'F9_key' : 'kse\x00', #
|
||||||
'F10_key' : 'ksm\000', #
|
'F10_key' : 'ksm\x00', #
|
||||||
'F11_key' : 'ksg\000', #
|
'F11_key' : 'ksg\x00', #
|
||||||
'F12_key' : 'kso\000', #
|
'F12_key' : 'kso\x00', #
|
||||||
'F13_key' : 'ksi\000', #
|
'F13_key' : 'ksi\x00', #
|
||||||
'F14_key' : 'ksk\000', #
|
'F14_key' : 'ksk\x00', #
|
||||||
'F15_key' : 'ksq\000', #
|
'F15_key' : 'ksq\x00', #
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1920,155 +1918,155 @@ _Enum_ekst = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
|
'jul ' : July,
|
||||||
|
'may ' : May,
|
||||||
|
'TEXT' : string,
|
||||||
|
'cmet' : cubic_metres,
|
||||||
|
'STXT' : styled_text,
|
||||||
|
'nds ' : number_2c__date_or_text,
|
||||||
|
'feet' : feet,
|
||||||
|
'feb ' : February,
|
||||||
'nmbr' : number,
|
'nmbr' : number,
|
||||||
'ctxt' : text,
|
'mile' : miles,
|
||||||
'fss ' : file_specification,
|
'kprs' : keystroke,
|
||||||
'sat ' : Saturday,
|
|
||||||
'ccmt' : cubic_centimetres,
|
|
||||||
'cfet' : cubic_feet,
|
|
||||||
'lbs ' : pounds,
|
|
||||||
'yard' : yards,
|
|
||||||
'sqyd' : square_yards,
|
|
||||||
'mach' : machine,
|
|
||||||
'utxt' : Unicode_text,
|
|
||||||
'cstr' : C_string,
|
|
||||||
'rdat' : data,
|
|
||||||
'doub' : real,
|
|
||||||
'hand' : handler,
|
|
||||||
'sutx' : styled_Unicode_text,
|
|
||||||
'sqmi' : square_miles,
|
|
||||||
'undf' : _empty_ae_name,
|
|
||||||
'reco' : record,
|
|
||||||
'cha ' : character,
|
|
||||||
'cobj' : item,
|
|
||||||
'kfrm' : reference_form,
|
|
||||||
'enum' : constant,
|
|
||||||
'inch' : inches,
|
|
||||||
'sqrm' : square_metres,
|
|
||||||
'bool' : boolean,
|
|
||||||
'prop' : property,
|
|
||||||
'****' : anything,
|
|
||||||
'scpt' : script,
|
|
||||||
'kgrm' : kilograms,
|
|
||||||
'sep ' : September,
|
|
||||||
'snd ' : sound,
|
|
||||||
'mon ' : Monday,
|
|
||||||
'capp' : app,
|
|
||||||
'lr ' : list_or_record,
|
|
||||||
'fri ' : Friday,
|
|
||||||
'cuin' : cubic_inches,
|
|
||||||
'mar ' : March,
|
|
||||||
'galn' : gallons,
|
|
||||||
'encs' : encoded_string,
|
|
||||||
'litr' : litres,
|
|
||||||
'case' : upper_case,
|
|
||||||
'styl' : styled_Clipboard_text,
|
|
||||||
'llst' : linked_list,
|
|
||||||
'pcls' : _class,
|
|
||||||
'jun ' : June,
|
|
||||||
'ns ' : number_or_string,
|
|
||||||
'ozs ' : ounces,
|
|
||||||
'mnth' : month,
|
|
||||||
'metr' : metres,
|
|
||||||
'jan ' : January,
|
|
||||||
'pstr' : Pascal_string,
|
|
||||||
'alis' : alias,
|
|
||||||
'gram' : grams,
|
|
||||||
'msng' : missing_value,
|
|
||||||
'qrts' : quarts,
|
|
||||||
'nov ' : November,
|
|
||||||
'list' : list,
|
|
||||||
'sqft' : square_feet,
|
|
||||||
'kmtr' : kilometres,
|
|
||||||
'cRGB' : RGB_color,
|
|
||||||
'itxt' : international_text,
|
|
||||||
'scnd' : seconds,
|
|
||||||
'apr ' : April,
|
|
||||||
'nd ' : number_or_date,
|
|
||||||
'wkdy' : weekday,
|
|
||||||
'vect' : vector,
|
|
||||||
'obj ' : reference,
|
|
||||||
'sqkm' : square_kilometres,
|
|
||||||
'dec ' : December,
|
|
||||||
'wed ' : Wednesday,
|
|
||||||
'cyrd' : cubic_yards,
|
|
||||||
'vers' : version,
|
|
||||||
'tue ' : Tuesday,
|
|
||||||
'prep' : preposition,
|
|
||||||
'type' : type_class,
|
|
||||||
'citm' : text_item,
|
|
||||||
'citl' : writing_code_info,
|
|
||||||
'sf ' : alias_or_string,
|
|
||||||
'degc' : degrees_Celsius,
|
|
||||||
'long' : integer,
|
|
||||||
'ls ' : list_or_string,
|
|
||||||
'PICT' : picture,
|
|
||||||
'zone' : zone,
|
|
||||||
'psct' : writing_code,
|
'psct' : writing_code,
|
||||||
|
'degf' : degrees_Fahrenheit,
|
||||||
'lrs ' : list_2c__record_or_text,
|
'lrs ' : list_2c__record_or_text,
|
||||||
|
'ldt ' : date,
|
||||||
|
'litr' : litres,
|
||||||
|
'nd ' : number_or_date,
|
||||||
'cmtr' : centimetres,
|
'cmtr' : centimetres,
|
||||||
'evnt' : event,
|
'evnt' : event,
|
||||||
'oct ' : October,
|
'pstr' : Pascal_string,
|
||||||
'degk' : degrees_Kelvin,
|
'zone' : zone,
|
||||||
'ldt ' : date,
|
'PICT' : picture,
|
||||||
'thu ' : Thursday,
|
'ls ' : list_or_string,
|
||||||
'degf' : degrees_Fahrenheit,
|
'long' : integer,
|
||||||
'kprs' : keystroke,
|
'sf ' : alias_or_string,
|
||||||
'mile' : miles,
|
'citl' : writing_code_info,
|
||||||
'feb ' : February,
|
'citm' : text_item,
|
||||||
'feet' : feet,
|
'mach' : machine,
|
||||||
'nds ' : number_2c__date_or_text,
|
'type' : type_class,
|
||||||
'STXT' : styled_text,
|
'prep' : preposition,
|
||||||
'cmet' : cubic_metres,
|
'tue ' : Tuesday,
|
||||||
|
'case' : upper_case,
|
||||||
|
'vers' : version,
|
||||||
|
'wed ' : Wednesday,
|
||||||
|
'dec ' : December,
|
||||||
|
'sqkm' : square_kilometres,
|
||||||
|
'obj ' : reference,
|
||||||
|
'vect' : vector,
|
||||||
|
'wkdy' : weekday,
|
||||||
|
'cRGB' : RGB_color,
|
||||||
'sun ' : Sunday,
|
'sun ' : Sunday,
|
||||||
|
'itxt' : international_text,
|
||||||
|
'scnd' : seconds,
|
||||||
|
'mar ' : March,
|
||||||
|
'kmtr' : kilometres,
|
||||||
|
'sqft' : square_feet,
|
||||||
|
'list' : list,
|
||||||
|
'doub' : real,
|
||||||
|
'nov ' : November,
|
||||||
|
'qrts' : quarts,
|
||||||
|
'degc' : degrees_Celsius,
|
||||||
|
'msng' : missing_value,
|
||||||
|
'alis' : alias,
|
||||||
|
'jan ' : January,
|
||||||
|
'metr' : metres,
|
||||||
|
'mnth' : month,
|
||||||
|
'ns ' : number_or_string,
|
||||||
|
'jun ' : June,
|
||||||
'aug ' : August,
|
'aug ' : August,
|
||||||
'may ' : May,
|
'llst' : linked_list,
|
||||||
'jul ' : July,
|
'styl' : styled_Clipboard_text,
|
||||||
'TEXT' : string,
|
'encs' : encoded_string,
|
||||||
|
'galn' : gallons,
|
||||||
|
'cuin' : cubic_inches,
|
||||||
|
'fri ' : Friday,
|
||||||
|
'sutx' : styled_Unicode_text,
|
||||||
|
'lr ' : list_or_record,
|
||||||
|
'degk' : degrees_Kelvin,
|
||||||
|
'mon ' : Monday,
|
||||||
|
'snd ' : sound,
|
||||||
|
'pcls' : _class,
|
||||||
|
'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,
|
||||||
|
'undf' : _empty_ae_name,
|
||||||
|
'capp' : app,
|
||||||
|
'enum' : constant,
|
||||||
|
'hand' : handler,
|
||||||
|
'sqmi' : square_miles,
|
||||||
|
'rdat' : data,
|
||||||
|
'cstr' : C_string,
|
||||||
|
'utxt' : Unicode_text,
|
||||||
|
'thu ' : Thursday,
|
||||||
|
'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,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'pscd' : script_code,
|
|
||||||
'rslt' : result,
|
|
||||||
'pnam' : name,
|
|
||||||
'time' : time,
|
|
||||||
'txdl' : text_item_delimiters,
|
|
||||||
'prln' : print_length,
|
|
||||||
'prdp' : print_depth,
|
|
||||||
'kMod' : modifiers,
|
|
||||||
'days' : days,
|
|
||||||
'spac' : space,
|
|
||||||
'kMsg' : key,
|
|
||||||
'plcd' : language_code,
|
|
||||||
'ret ' : _return,
|
|
||||||
'tstr' : time_string,
|
|
||||||
'hour' : hours,
|
|
||||||
'tab ' : tab,
|
|
||||||
'rvse' : reverse,
|
|
||||||
'wkdy' : weekday,
|
|
||||||
'day ' : day,
|
|
||||||
'ID ' : id,
|
|
||||||
'c@#^' : _3c_Inheritance_3e_,
|
|
||||||
'kknd' : key_kind,
|
|
||||||
'ascr' : AppleScript,
|
|
||||||
'rest' : rest,
|
|
||||||
'dstr' : date_string,
|
|
||||||
'min ' : minutes,
|
|
||||||
'pi ' : pi,
|
|
||||||
'leng' : length,
|
|
||||||
'year' : year,
|
|
||||||
'pare' : parent,
|
|
||||||
'mnth' : month,
|
|
||||||
'week' : weeks,
|
'week' : weeks,
|
||||||
|
'kMod' : modifiers,
|
||||||
|
'pare' : parent,
|
||||||
|
'leng' : length,
|
||||||
|
'hour' : hours,
|
||||||
|
'mnth' : month,
|
||||||
|
'min ' : minutes,
|
||||||
|
'wkdy' : weekday,
|
||||||
|
'dstr' : date_string,
|
||||||
|
'rest' : rest,
|
||||||
|
'ascr' : AppleScript,
|
||||||
|
'kknd' : key_kind,
|
||||||
|
'c@#^' : _3c_Inheritance_3e_,
|
||||||
|
'ID ' : id,
|
||||||
|
'year' : year,
|
||||||
|
'rvse' : reverse,
|
||||||
|
'tab ' : tab,
|
||||||
|
'tstr' : time_string,
|
||||||
|
'pi ' : pi,
|
||||||
|
'ret ' : _return,
|
||||||
|
'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,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
}
|
}
|
||||||
|
|
||||||
_enumdeclarations = {
|
_enumdeclarations = {
|
||||||
'boov' : _Enum_boov,
|
|
||||||
'ekst' : _Enum_ekst,
|
|
||||||
'misc' : _Enum_misc,
|
|
||||||
'cons' : _Enum_cons,
|
|
||||||
'eMds' : _Enum_eMds,
|
'eMds' : _Enum_eMds,
|
||||||
|
'cons' : _Enum_cons,
|
||||||
|
'misc' : _Enum_misc,
|
||||||
|
'ekst' : _Enum_ekst,
|
||||||
|
'boov' : _Enum_boov,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Suite Macintosh Connectivity Classes: Classes relating to Apple Macintosh personal computer connectivity
|
"""Suite Macintosh Connectivity Classes: Classes relating to Apple Macintosh personal computer connectivity
|
||||||
Level 1, version 1
|
Level 1, version 1
|
||||||
|
|
||||||
Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
|
Generated from Moes:Systeemmap:Extensies:AppleScript
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -36,7 +36,6 @@ device_specifications = device_specification
|
||||||
class address_specification(aetools.ComponentItem):
|
class address_specification(aetools.ComponentItem):
|
||||||
"""address specification - Unique designation of a device or service connected to this computer """
|
"""address specification - Unique designation of a device or service connected to this computer """
|
||||||
want = 'cadr'
|
want = 'cadr'
|
||||||
# repeated property properties property that allows getting and setting of multiple properties
|
|
||||||
class conduit(aetools.NProperty):
|
class conduit(aetools.NProperty):
|
||||||
"""conduit - How the addressee is physically connected """
|
"""conduit - How the addressee is physically connected """
|
||||||
which = 'pcon'
|
which = 'pcon'
|
||||||
|
@ -65,7 +64,6 @@ ADB_addresses = ADB_address
|
||||||
class AppleTalk_address(aetools.ComponentItem):
|
class AppleTalk_address(aetools.ComponentItem):
|
||||||
"""AppleTalk address - Addresses a device or service connected via the AppleTalk protocol """
|
"""AppleTalk address - Addresses a device or service connected via the AppleTalk protocol """
|
||||||
want = 'cat '
|
want = 'cat '
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
class AppleTalk_machine(aetools.NProperty):
|
class AppleTalk_machine(aetools.NProperty):
|
||||||
"""AppleTalk machine - the machine name part of the address """
|
"""AppleTalk machine - the machine name part of the address """
|
||||||
which = 'patm'
|
which = 'patm'
|
||||||
|
@ -84,32 +82,24 @@ AppleTalk_addresses = AppleTalk_address
|
||||||
class bus_slot(aetools.ComponentItem):
|
class bus_slot(aetools.ComponentItem):
|
||||||
"""bus slot - Addresses a PC, PCI, or NuBus card """
|
"""bus slot - Addresses a PC, PCI, or NuBus card """
|
||||||
want = 'cbus'
|
want = 'cbus'
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
# repeated property ID the slot number
|
|
||||||
|
|
||||||
bus_slots = bus_slot
|
bus_slots = bus_slot
|
||||||
|
|
||||||
class Ethernet_address(aetools.ComponentItem):
|
class Ethernet_address(aetools.ComponentItem):
|
||||||
"""Ethernet address - Addresses a device by its Ethernet address """
|
"""Ethernet address - Addresses a device by its Ethernet address """
|
||||||
want = 'cen '
|
want = 'cen '
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
# repeated property ID the Ethernet address
|
|
||||||
|
|
||||||
Ethernet_addresses = Ethernet_address
|
Ethernet_addresses = Ethernet_address
|
||||||
|
|
||||||
class FireWire_address(aetools.ComponentItem):
|
class FireWire_address(aetools.ComponentItem):
|
||||||
"""FireWire address - Addresses a device on the FireWire bus """
|
"""FireWire address - Addresses a device on the FireWire bus """
|
||||||
want = 'cfw '
|
want = 'cfw '
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
# repeated property ID the FireWire device ID
|
|
||||||
|
|
||||||
FireWire_addresses = FireWire_address
|
FireWire_addresses = FireWire_address
|
||||||
|
|
||||||
class IP_address(aetools.ComponentItem):
|
class IP_address(aetools.ComponentItem):
|
||||||
"""IP address - Addresses a device or service via the Internet Protocol (IP) """
|
"""IP address - Addresses a device or service via the Internet Protocol (IP) """
|
||||||
want = 'cip '
|
want = 'cip '
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
# repeated property ID the address in the form "127.201.0.1"
|
|
||||||
class DNS_form(aetools.NProperty):
|
class DNS_form(aetools.NProperty):
|
||||||
"""DNS form - the address in the form "apple.com" """
|
"""DNS form - the address in the form "apple.com" """
|
||||||
which = 'pdns'
|
which = 'pdns'
|
||||||
|
@ -124,7 +114,6 @@ IP_addresses = IP_address
|
||||||
class LocalTalk_address(aetools.ComponentItem):
|
class LocalTalk_address(aetools.ComponentItem):
|
||||||
"""LocalTalk address - Addresses a device by its LocalTalk address """
|
"""LocalTalk address - Addresses a device by its LocalTalk address """
|
||||||
want = 'clt '
|
want = 'clt '
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
class network(aetools.NProperty):
|
class network(aetools.NProperty):
|
||||||
"""network - the LocalTalk network number """
|
"""network - the LocalTalk network number """
|
||||||
which = 'pnet'
|
which = 'pnet'
|
||||||
|
@ -143,12 +132,10 @@ LocalTalk_addresses = LocalTalk_address
|
||||||
class SCSI_address(aetools.ComponentItem):
|
class SCSI_address(aetools.ComponentItem):
|
||||||
"""SCSI address - Addresses a SCSI device """
|
"""SCSI address - Addresses a SCSI device """
|
||||||
want = 'cscs'
|
want = 'cscs'
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
class SCSI_bus(aetools.NProperty):
|
class SCSI_bus(aetools.NProperty):
|
||||||
"""SCSI bus - the SCSI bus number """
|
"""SCSI bus - the SCSI bus number """
|
||||||
which = 'pscb'
|
which = 'pscb'
|
||||||
want = 'shor'
|
want = 'shor'
|
||||||
# repeated property ID the SCSI ID
|
|
||||||
class LUN(aetools.NProperty):
|
class LUN(aetools.NProperty):
|
||||||
"""LUN - the SCSI logical unit number """
|
"""LUN - the SCSI logical unit number """
|
||||||
which = 'pslu'
|
which = 'pslu'
|
||||||
|
@ -159,15 +146,12 @@ SCSI_addresses = SCSI_address
|
||||||
class Token_Ring_address(aetools.ComponentItem):
|
class Token_Ring_address(aetools.ComponentItem):
|
||||||
"""Token Ring address - Addresses a device or service via the Token Ring protocol """
|
"""Token Ring address - Addresses a device or service via the Token Ring protocol """
|
||||||
want = 'ctok'
|
want = 'ctok'
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
# repeated property ID the Token Ring ID
|
|
||||||
|
|
||||||
Token_Ring_addresses = Token_Ring_address
|
Token_Ring_addresses = Token_Ring_address
|
||||||
|
|
||||||
class USB_address(aetools.ComponentItem):
|
class USB_address(aetools.ComponentItem):
|
||||||
"""USB address - Addresses a device on the Universal Serial Bus """
|
"""USB address - Addresses a device on the Universal Serial Bus """
|
||||||
want = 'cusb'
|
want = 'cusb'
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
class name(aetools.NProperty):
|
class name(aetools.NProperty):
|
||||||
"""name - the USB device name """
|
"""name - the USB device name """
|
||||||
which = 'pnam'
|
which = 'pnam'
|
||||||
|
@ -332,39 +316,39 @@ _Enum_epro = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'cen ' : Ethernet_address,
|
'cat ' : AppleTalk_address,
|
||||||
'clt ' : LocalTalk_address,
|
'cadr' : address_specification,
|
||||||
'cip ' : IP_address,
|
|
||||||
'cusb' : USB_address,
|
|
||||||
'cadb' : ADB_address,
|
|
||||||
'cscs' : SCSI_address,
|
|
||||||
'cbus' : bus_slot,
|
|
||||||
'cdev' : device_specification,
|
|
||||||
'ctok' : Token_Ring_address,
|
'ctok' : Token_Ring_address,
|
||||||
'cfw ' : FireWire_address,
|
'cfw ' : FireWire_address,
|
||||||
'cadr' : address_specification,
|
'cbus' : bus_slot,
|
||||||
'cat ' : AppleTalk_address,
|
'cscs' : SCSI_address,
|
||||||
|
'cadb' : ADB_address,
|
||||||
|
'cusb' : USB_address,
|
||||||
|
'cdev' : device_specification,
|
||||||
|
'clt ' : LocalTalk_address,
|
||||||
|
'cip ' : IP_address,
|
||||||
|
'cen ' : Ethernet_address,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'pnod' : node,
|
|
||||||
'pslu' : LUN,
|
|
||||||
'patm' : AppleTalk_machine,
|
|
||||||
'pdva' : device_address,
|
|
||||||
'pscb' : SCSI_bus,
|
|
||||||
'ppor' : port,
|
|
||||||
'pALL' : properties,
|
|
||||||
'ID ' : ID,
|
|
||||||
'c@#^' : _3c_inheritance_3e_,
|
|
||||||
'pdvt' : device_type,
|
|
||||||
'pnet' : network,
|
|
||||||
'patz' : AppleTalk_zone,
|
|
||||||
'pnam' : name,
|
|
||||||
'pcon' : conduit,
|
|
||||||
'pprt' : protocol,
|
|
||||||
'patt' : AppleTalk_type,
|
|
||||||
'psoc' : socket,
|
|
||||||
'pdns' : DNS_form,
|
'pdns' : DNS_form,
|
||||||
|
'ppor' : port,
|
||||||
|
'patt' : AppleTalk_type,
|
||||||
|
'pprt' : protocol,
|
||||||
|
'pcon' : conduit,
|
||||||
|
'patz' : AppleTalk_zone,
|
||||||
|
'pnet' : network,
|
||||||
|
'pdvt' : device_type,
|
||||||
|
'pnam' : name,
|
||||||
|
'c@#^' : _3c_inheritance_3e_,
|
||||||
|
'ID ' : ID,
|
||||||
|
'pALL' : properties,
|
||||||
|
'pscb' : SCSI_bus,
|
||||||
|
'pdva' : device_address,
|
||||||
|
'patm' : AppleTalk_machine,
|
||||||
|
'psoc' : socket,
|
||||||
|
'pslu' : LUN,
|
||||||
|
'pnod' : node,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
@ -372,6 +356,6 @@ _compdeclarations = {
|
||||||
|
|
||||||
_enumdeclarations = {
|
_enumdeclarations = {
|
||||||
'econ' : _Enum_econ,
|
'econ' : _Enum_econ,
|
||||||
'epro' : _Enum_epro,
|
|
||||||
'edvt' : _Enum_edvt,
|
'edvt' : _Enum_edvt,
|
||||||
|
'epro' : _Enum_epro,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Suite QuickDraw Graphics Suite: A set of basic classes for graphics
|
"""Suite QuickDraw Graphics Suite: A set of basic classes for graphics
|
||||||
Level 1, version 1
|
Level 1, version 1
|
||||||
|
|
||||||
Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
|
Generated from Moes:Systeemmap:Extensies:AppleScript
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -188,7 +188,6 @@ ovals = oval
|
||||||
class pixel(aetools.ComponentItem):
|
class pixel(aetools.ComponentItem):
|
||||||
"""pixel - A pixel """
|
"""pixel - A pixel """
|
||||||
want = 'cpxl'
|
want = 'cpxl'
|
||||||
# repeated property color the color
|
|
||||||
|
|
||||||
pixels = pixel
|
pixels = pixel
|
||||||
|
|
||||||
|
@ -344,62 +343,62 @@ _Enum_arro = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'crec' : rectangle,
|
'cpic' : graphic_group,
|
||||||
'cpix' : pixel_map,
|
'covl' : oval,
|
||||||
'carc' : arc,
|
'cgtx' : graphic_text,
|
||||||
'cgsh' : graphic_shape,
|
'cgsh' : graphic_shape,
|
||||||
|
'glin' : graphic_line,
|
||||||
|
'cgob' : graphic_object,
|
||||||
|
'cdrw' : drawing_area,
|
||||||
|
'cpgn' : polygon,
|
||||||
'cpxl' : pixel,
|
'cpxl' : pixel,
|
||||||
'crrc' : rounded_rectangle,
|
'crrc' : rounded_rectangle,
|
||||||
'cpgn' : polygon,
|
'carc' : arc,
|
||||||
'cdrw' : drawing_area,
|
'cpix' : pixel_map,
|
||||||
'cgob' : graphic_object,
|
'crec' : rectangle,
|
||||||
'glin' : graphic_line,
|
|
||||||
'cgtx' : graphic_text,
|
|
||||||
'covl' : oval,
|
|
||||||
'cpic' : graphic_group,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'pend' : end_point,
|
|
||||||
'pupd' : update_on_change,
|
|
||||||
'pstp' : start_point,
|
|
||||||
'pdrt' : definition_rect,
|
|
||||||
'pnam' : name,
|
|
||||||
'pbcl' : background_color,
|
|
||||||
'pptm' : transfer_mode,
|
|
||||||
'pnel' : default_location,
|
|
||||||
'pdpt' : pixel_depth,
|
|
||||||
'gobs' : ordering,
|
|
||||||
'ustl' : uniform_styles,
|
|
||||||
'ptlt' : point_list,
|
|
||||||
'pdst' : dash_style,
|
|
||||||
'psct' : writing_code,
|
|
||||||
'txst' : style,
|
|
||||||
'font' : font,
|
|
||||||
'pchd' : corner_curve_height,
|
|
||||||
'arro' : arrow_style,
|
|
||||||
'ppwd' : pen_width,
|
|
||||||
'ptps' : default_size,
|
|
||||||
'ppcl' : pen_color,
|
|
||||||
'ptxf' : default_font,
|
|
||||||
'pcwd' : corner_curve_width,
|
|
||||||
'ptxc' : text_color,
|
|
||||||
'cltb' : color_table,
|
|
||||||
'pppa' : pen_pattern,
|
|
||||||
'pang' : start_angle,
|
|
||||||
'flpt' : fill_pattern,
|
|
||||||
'colr' : color,
|
|
||||||
'pbnd' : bounds,
|
|
||||||
'ptsz' : size,
|
|
||||||
'parc' : arc_angle,
|
|
||||||
'flcl' : fill_color,
|
|
||||||
'pbpt' : background_pattern,
|
'pbpt' : background_pattern,
|
||||||
|
'flcl' : fill_color,
|
||||||
|
'parc' : arc_angle,
|
||||||
|
'pbnd' : bounds,
|
||||||
|
'colr' : color,
|
||||||
|
'flpt' : fill_pattern,
|
||||||
|
'ustl' : uniform_styles,
|
||||||
|
'font' : font,
|
||||||
|
'pend' : end_point,
|
||||||
|
'pstp' : start_point,
|
||||||
|
'pang' : start_angle,
|
||||||
|
'pptm' : transfer_mode,
|
||||||
|
'cltb' : color_table,
|
||||||
|
'ptxc' : text_color,
|
||||||
|
'ptxf' : default_font,
|
||||||
|
'ppcl' : pen_color,
|
||||||
|
'ptps' : default_size,
|
||||||
|
'ppwd' : pen_width,
|
||||||
|
'arro' : arrow_style,
|
||||||
|
'pcwd' : corner_curve_width,
|
||||||
|
'txst' : style,
|
||||||
|
'psct' : writing_code,
|
||||||
|
'pdst' : dash_style,
|
||||||
|
'ptlt' : point_list,
|
||||||
|
'gobs' : ordering,
|
||||||
|
'pdpt' : pixel_depth,
|
||||||
|
'pnel' : default_location,
|
||||||
|
'pchd' : corner_curve_height,
|
||||||
|
'pbcl' : background_color,
|
||||||
|
'pnam' : name,
|
||||||
|
'pdrt' : definition_rect,
|
||||||
|
'ptsz' : size,
|
||||||
|
'pupd' : update_on_change,
|
||||||
|
'pppa' : pen_pattern,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
}
|
}
|
||||||
|
|
||||||
_enumdeclarations = {
|
_enumdeclarations = {
|
||||||
'tran' : _Enum_tran,
|
|
||||||
'arro' : _Enum_arro,
|
'arro' : _Enum_arro,
|
||||||
|
'tran' : _Enum_tran,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Suite QuickDraw Graphics Supplemental Suite: Defines transformations of graphic objects
|
"""Suite QuickDraw Graphics Supplemental Suite: Defines transformations of graphic objects
|
||||||
Level 1, version 1
|
Level 1, version 1
|
||||||
|
|
||||||
Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
|
Generated from Moes:Systeemmap:Extensies:AppleScript
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -60,8 +60,8 @@ _classdeclarations = {
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'prot' : rotation,
|
'prot' : rotation,
|
||||||
'pscl' : scale,
|
|
||||||
'ptrs' : translation,
|
'ptrs' : translation,
|
||||||
|
'pscl' : scale,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Suite Required Suite: Every application supports open, print, run, and quit
|
"""Suite Required Suite: Every application supports open, print, run, and quit
|
||||||
Level 1, version 1
|
Level 1, version 1
|
||||||
|
|
||||||
Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
|
Generated from Moes:Systeemmap:Extensies:AppleScript
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -10,7 +10,8 @@ import MacOS
|
||||||
|
|
||||||
_code = 'reqd'
|
_code = 'reqd'
|
||||||
|
|
||||||
class Required_Suite_Events:
|
from _builtinSuites.builtin_Suite import *
|
||||||
|
class Required_Suite_Events(builtin_Suite_Events):
|
||||||
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Suite Standard Suite: Common terms for most applications
|
"""Suite Standard Suite: Common terms for most applications
|
||||||
Level 1, version 1
|
Level 1, version 1
|
||||||
|
|
||||||
Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
|
Generated from Moes:Systeemmap:Extensies:AppleScript
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -10,7 +10,8 @@ import MacOS
|
||||||
|
|
||||||
_code = 'core'
|
_code = 'core'
|
||||||
|
|
||||||
class Standard_Suite_Events:
|
from _builtinSuites.builtin_Suite import *
|
||||||
|
class Standard_Suite_Events(builtin_Suite_Events):
|
||||||
|
|
||||||
def open(self, _object, _attributes={}, **_arguments):
|
def open(self, _object, _attributes={}, **_arguments):
|
||||||
"""open: Open the specified object(s)
|
"""open: Open the specified object(s)
|
||||||
|
@ -655,49 +656,49 @@ _Enum_styl = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'docu' : document,
|
|
||||||
'cins' : insertion_point,
|
|
||||||
'capp' : application,
|
|
||||||
'alis' : alias,
|
|
||||||
'csel' : selection_2d_object,
|
|
||||||
'file' : file,
|
|
||||||
'cwin' : window,
|
'cwin' : window,
|
||||||
|
'file' : file,
|
||||||
|
'csel' : selection_2d_object,
|
||||||
|
'alis' : alias,
|
||||||
|
'capp' : application,
|
||||||
|
'cins' : insertion_point,
|
||||||
|
'docu' : document,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'ptit' : titled,
|
'prsz' : resizable,
|
||||||
|
'vers' : version,
|
||||||
'pidx' : index,
|
'pidx' : index,
|
||||||
|
'pvis' : visible,
|
||||||
|
'imod' : modified,
|
||||||
|
'pbnd' : bounds,
|
||||||
|
'sele' : selection,
|
||||||
|
'pisf' : frontmost,
|
||||||
|
'pspd' : stationery,
|
||||||
|
'isfl' : floating,
|
||||||
|
'iszm' : zoomable,
|
||||||
|
'hclb' : closeable,
|
||||||
|
'pcli' : clipboard,
|
||||||
|
'pmod' : modal,
|
||||||
|
'pcnt' : contents,
|
||||||
'pnam' : name,
|
'pnam' : name,
|
||||||
'pzum' : zoomed,
|
'pzum' : zoomed,
|
||||||
'pcnt' : contents,
|
'ptit' : titled,
|
||||||
'pcli' : clipboard,
|
|
||||||
'hclb' : closeable,
|
|
||||||
'iszm' : zoomable,
|
|
||||||
'isfl' : floating,
|
|
||||||
'pspd' : stationery,
|
|
||||||
'pisf' : frontmost,
|
|
||||||
'sele' : selection,
|
|
||||||
'pbnd' : bounds,
|
|
||||||
'imod' : modified,
|
|
||||||
'pvis' : visible,
|
|
||||||
'pmod' : modal,
|
|
||||||
'vers' : version,
|
|
||||||
'prsz' : resizable,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
'> ' : _3e_,
|
|
||||||
'bgwt' : starts_with,
|
|
||||||
'>= ' : _b3_,
|
|
||||||
'= ' : _3d_,
|
|
||||||
'<= ' : _b2_,
|
|
||||||
'cont' : contains,
|
|
||||||
'ends' : ends_with,
|
|
||||||
'< ' : _3c_,
|
'< ' : _3c_,
|
||||||
|
'ends' : ends_with,
|
||||||
|
'>= ' : _b3_,
|
||||||
|
'cont' : contains,
|
||||||
|
'<= ' : _b2_,
|
||||||
|
'= ' : _3d_,
|
||||||
|
'bgwt' : starts_with,
|
||||||
|
'> ' : _3e_,
|
||||||
}
|
}
|
||||||
|
|
||||||
_enumdeclarations = {
|
_enumdeclarations = {
|
||||||
'styl' : _Enum_styl,
|
|
||||||
'savo' : _Enum_savo,
|
'savo' : _Enum_savo,
|
||||||
|
'styl' : _Enum_styl,
|
||||||
'kfrm' : _Enum_kfrm,
|
'kfrm' : _Enum_kfrm,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Suite Table Suite: Classes for manipulating tables
|
"""Suite Table Suite: Classes for manipulating tables
|
||||||
Level 1, version 1
|
Level 1, version 1
|
||||||
|
|
||||||
Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
|
Generated from Moes:Systeemmap:Extensies:AppleScript
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -81,15 +81,15 @@ _Enum_prtn = {
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'ccel' : cell,
|
'ccel' : cell,
|
||||||
'ctbl' : table,
|
|
||||||
'ccol' : column,
|
'ccol' : column,
|
||||||
|
'ctbl' : table,
|
||||||
'crow' : row,
|
'crow' : row,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'ppro' : protection,
|
|
||||||
'pfor' : formula,
|
|
||||||
'pnam' : name,
|
'pnam' : name,
|
||||||
|
'pfor' : formula,
|
||||||
|
'ppro' : protection,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Suite Text Suite: A set of basic classes for text processing
|
"""Suite Text Suite: A set of basic classes for text processing
|
||||||
Level 1, version 1
|
Level 1, version 1
|
||||||
|
|
||||||
Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
|
Generated from Moes:Systeemmap:Extensies:AppleScript
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -26,7 +26,6 @@ class _3c_inheritance_3e_(aetools.NProperty):
|
||||||
class line(aetools.ComponentItem):
|
class line(aetools.ComponentItem):
|
||||||
"""line - A line of text """
|
"""line - A line of text """
|
||||||
want = 'clin'
|
want = 'clin'
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
class justification(aetools.NProperty):
|
class justification(aetools.NProperty):
|
||||||
"""justification - the justification of the text """
|
"""justification - the justification of the text """
|
||||||
which = 'pjst'
|
which = 'pjst'
|
||||||
|
@ -37,7 +36,6 @@ lines = line
|
||||||
class paragraph(aetools.ComponentItem):
|
class paragraph(aetools.ComponentItem):
|
||||||
"""paragraph - A paragraph """
|
"""paragraph - A paragraph """
|
||||||
want = 'cpar'
|
want = 'cpar'
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
|
|
||||||
paragraphs = paragraph
|
paragraphs = paragraph
|
||||||
|
|
||||||
|
@ -77,7 +75,6 @@ class uniform_styles(aetools.NProperty):
|
||||||
class text_flow(aetools.ComponentItem):
|
class text_flow(aetools.ComponentItem):
|
||||||
"""text flow - A contiguous block of text. Page layout applications call this a •story.Õ """
|
"""text flow - A contiguous block of text. Page layout applications call this a •story.Õ """
|
||||||
want = 'cflo'
|
want = 'cflo'
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
class name(aetools.NProperty):
|
class name(aetools.NProperty):
|
||||||
"""name - the name """
|
"""name - the name """
|
||||||
which = 'pnam'
|
which = 'pnam'
|
||||||
|
@ -102,7 +99,6 @@ text_style_infos = text_style_info
|
||||||
class word(aetools.ComponentItem):
|
class word(aetools.ComponentItem):
|
||||||
"""word - A word """
|
"""word - A word """
|
||||||
want = 'cwor'
|
want = 'cwor'
|
||||||
# repeated property _3c_inheritance_3e_ inherits some of its properties from this class
|
|
||||||
|
|
||||||
words = word
|
words = word
|
||||||
character._propdict = {
|
character._propdict = {
|
||||||
|
@ -183,27 +179,27 @@ _Enum_styl = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'clin' : line,
|
|
||||||
'ctxt' : text,
|
|
||||||
'cwor' : word,
|
|
||||||
'cflo' : text_flow,
|
|
||||||
'cpar' : paragraph,
|
'cpar' : paragraph,
|
||||||
'tsty' : text_style_info,
|
|
||||||
'cha ' : character,
|
'cha ' : character,
|
||||||
|
'cflo' : text_flow,
|
||||||
|
'tsty' : text_style_info,
|
||||||
|
'clin' : line,
|
||||||
|
'cwor' : word,
|
||||||
|
'ctxt' : text,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
'psct' : writing_code,
|
|
||||||
'txst' : style,
|
|
||||||
'colr' : color,
|
|
||||||
'font' : font,
|
|
||||||
'pnam' : name,
|
|
||||||
'ustl' : uniform_styles,
|
|
||||||
'pjst' : justification,
|
|
||||||
'ofst' : off_styles,
|
|
||||||
'onst' : on_styles,
|
|
||||||
'ptsz' : size,
|
'ptsz' : size,
|
||||||
|
'ofst' : off_styles,
|
||||||
|
'pjst' : justification,
|
||||||
|
'colr' : color,
|
||||||
|
'txst' : style,
|
||||||
|
'psct' : writing_code,
|
||||||
|
'ustl' : uniform_styles,
|
||||||
'c@#^' : _3c_inheritance_3e_,
|
'c@#^' : _3c_inheritance_3e_,
|
||||||
|
'pnam' : name,
|
||||||
|
'font' : font,
|
||||||
|
'onst' : on_styles,
|
||||||
}
|
}
|
||||||
|
|
||||||
_compdeclarations = {
|
_compdeclarations = {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Suite Type Names Suite: Terminology for Registry data types
|
"""Suite Type Names Suite: Terminology for Registry data types
|
||||||
Level 1, version 1
|
Level 1, version 1
|
||||||
|
|
||||||
Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
|
Generated from Moes:Systeemmap:Extensies:AppleScript
|
||||||
AETE/AEUT resource version 1/0, language 0, script 0
|
AETE/AEUT resource version 1/0, language 0, script 0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@ -347,46 +347,46 @@ target_id._elemdict = {
|
||||||
# Indices of types declared in this module
|
# Indices of types declared in this module
|
||||||
#
|
#
|
||||||
_classdeclarations = {
|
_classdeclarations = {
|
||||||
'targ' : target_id,
|
'shor' : small_integer,
|
||||||
'null' : null,
|
'tr16' : RGB16_color,
|
||||||
'lfxd' : long_fixed,
|
|
||||||
'TIFF' : TIFF_picture,
|
|
||||||
'vers' : version,
|
'vers' : version,
|
||||||
|
'aeut' : system_dictionary,
|
||||||
|
'clrt' : color_table,
|
||||||
|
'fpnt' : fixed_point,
|
||||||
|
'TEXT' : plain_text,
|
||||||
|
'elin' : type_element_info,
|
||||||
|
'insl' : location_reference,
|
||||||
|
'mLoc' : machine_location,
|
||||||
|
'EPS ' : PostScript_picture,
|
||||||
|
'QDpt' : point,
|
||||||
|
'cmen' : menu_item,
|
||||||
|
'tpmm' : pixel_map_record,
|
||||||
|
'aete' : application_dictionary,
|
||||||
'magn' : unsigned_integer,
|
'magn' : unsigned_integer,
|
||||||
'exte' : extended_real,
|
|
||||||
'qdrt' : bounding_rectangle,
|
|
||||||
'lrct' : long_rectangle,
|
|
||||||
'lfpt' : long_fixed_point,
|
|
||||||
'pmin' : type_parameter_info,
|
|
||||||
'pinf' : type_property_info,
|
|
||||||
'tdas' : dash_style,
|
|
||||||
'tr96' : RGB96_color,
|
|
||||||
'cmnu' : menu,
|
'cmnu' : menu,
|
||||||
'gcli' : type_class_info,
|
|
||||||
'lpnt' : long_point,
|
|
||||||
'suin' : type_suite_info,
|
|
||||||
'trot' : rotation,
|
|
||||||
'fixd' : fixed,
|
|
||||||
'lfrc' : long_fixed_rectangle,
|
|
||||||
'frct' : fixed_rectangle,
|
'frct' : fixed_rectangle,
|
||||||
|
'lfrc' : long_fixed_rectangle,
|
||||||
'evin' : type_event_info,
|
'evin' : type_event_info,
|
||||||
'sing' : small_real,
|
'sing' : small_real,
|
||||||
'aete' : application_dictionary,
|
'suin' : type_suite_info,
|
||||||
'tpmm' : pixel_map_record,
|
'trot' : rotation,
|
||||||
'cmen' : menu_item,
|
'pmin' : type_parameter_info,
|
||||||
'QDpt' : point,
|
'fixd' : fixed,
|
||||||
'EPS ' : PostScript_picture,
|
|
||||||
'mLoc' : machine_location,
|
|
||||||
'insl' : location_reference,
|
|
||||||
'elin' : type_element_info,
|
|
||||||
'comp' : double_integer,
|
|
||||||
'fpnt' : fixed_point,
|
|
||||||
'clrt' : color_table,
|
|
||||||
'styl' : scrap_styles,
|
'styl' : scrap_styles,
|
||||||
'aeut' : system_dictionary,
|
'lpnt' : long_point,
|
||||||
'tr16' : RGB16_color,
|
'gcli' : type_class_info,
|
||||||
'shor' : small_integer,
|
'TIFF' : TIFF_picture,
|
||||||
'TEXT' : plain_text,
|
'tr96' : RGB96_color,
|
||||||
|
'tdas' : dash_style,
|
||||||
|
'exte' : extended_real,
|
||||||
|
'pinf' : type_property_info,
|
||||||
|
'lfpt' : long_fixed_point,
|
||||||
|
'lrct' : long_rectangle,
|
||||||
|
'qdrt' : bounding_rectangle,
|
||||||
|
'comp' : double_integer,
|
||||||
|
'lfxd' : long_fixed,
|
||||||
|
'null' : null,
|
||||||
|
'targ' : target_id,
|
||||||
}
|
}
|
||||||
|
|
||||||
_propdeclarations = {
|
_propdeclarations = {
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
"""
|
"""
|
||||||
Package generated from Macintosh HD:Systeemmap:Extensies:AppleScript
|
Package generated from Moes:Systeemmap:Extensies:AppleScript
|
||||||
Resource aeut resid 0 Standard Event Suites for English
|
Resource aeut resid 0 Standard Event Suites for English
|
||||||
"""
|
"""
|
||||||
import aetools
|
import aetools
|
||||||
|
Error = aetools.Error
|
||||||
import AppleScript_Suite
|
import AppleScript_Suite
|
||||||
import Required_Suite
|
import Required_Suite
|
||||||
import Standard_Suite
|
import Standard_Suite
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue