diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-30 22:04:23 (GMT) |
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-30 22:04:23 (GMT) |
| commit | 60087fb45092d9c199cea162e58d9193c7c1558c (patch) | |
| tree | 05f3343e7707c4a4179e409506b39601279f04c1 /Mac/Lib/lib-scriptpackages/StdSuites/Table_Suite.py | |
| parent | c262a1f51ce89dbea4aeb072cf631686c47ed97f (diff) | |
| download | cpython-60087fb45092d9c199cea162e58d9193c7c1558c.zip cpython-60087fb45092d9c199cea162e58d9193c7c1558c.tar.gz cpython-60087fb45092d9c199cea162e58d9193c7c1558c.tar.bz2 | |
Moved most of Mac/Lib hierarchy to Lib/plat-mac: it can be used both
in MacPython-OS9 and MacPython-OSX (or the equivalent unix Python on
Mac OS X). The only items remaining in Mac/Lib are modules that are
meaningful only for MacPython-OS9 (CFM stuff, MacPython preferences
in resources, etc).
Diffstat (limited to 'Mac/Lib/lib-scriptpackages/StdSuites/Table_Suite.py')
| -rw-r--r-- | Mac/Lib/lib-scriptpackages/StdSuites/Table_Suite.py | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/Mac/Lib/lib-scriptpackages/StdSuites/Table_Suite.py b/Mac/Lib/lib-scriptpackages/StdSuites/Table_Suite.py deleted file mode 100644 index cfeee32..0000000 --- a/Mac/Lib/lib-scriptpackages/StdSuites/Table_Suite.py +++ /dev/null @@ -1,104 +0,0 @@ -"""Suite Table Suite: Classes for manipulating tables -Level 1, version 1 - -Generated from /Volumes/Sap/System Folder/Extensions/AppleScript -AETE/AEUT resource version 1/0, language 0, script 0 -""" - -import aetools -import MacOS - -_code = 'tbls' - -class Table_Suite_Events: - - pass - - -class cell(aetools.ComponentItem): - """cell - A cell """ - want = 'ccel' -class formula(aetools.NProperty): - """formula - the formula of the cell """ - which = 'pfor' - want = 'ctxt' -class protection(aetools.NProperty): - """protection - Indicates whether value or formula in the cell can be changed """ - which = 'ppro' - want = 'prtn' - -cells = cell - -class column(aetools.ComponentItem): - """column - A column """ - want = 'ccol' -class name(aetools.NProperty): - """name - the name of the column """ - which = 'pnam' - want = 'itxt' - -columns = column - -class row(aetools.ComponentItem): - """row - A row """ - want = 'crow' - -rows = row - -class table(aetools.ComponentItem): - """table - A table """ - want = 'ctbl' - -tables = table -cell._superclassnames = [] -cell._privpropdict = { - 'formula' : formula, - 'protection' : protection, -} -cell._privelemdict = { -} -column._superclassnames = [] -column._privpropdict = { - 'name' : name, -} -column._privelemdict = { -} -row._superclassnames = [] -row._privpropdict = { -} -row._privelemdict = { -} -table._superclassnames = [] -table._privpropdict = { -} -table._privelemdict = { -} -_Enum_prtn = { - 'read_only' : 'nmod', # Can\xd5t change values or formulas - 'formulas_protected' : 'fpro', # Can changes values but not formulas - 'read_2f_write' : 'modf', # Can change values and formulas -} - - -# -# Indices of types declared in this module -# -_classdeclarations = { - 'ccel' : cell, - 'ccol' : column, - 'ctbl' : table, - 'crow' : row, -} - -_propdeclarations = { - 'pnam' : name, - 'pfor' : formula, - 'ppro' : protection, -} - -_compdeclarations = { -} - -_enumdeclarations = { - 'prtn' : _Enum_prtn, -} |
