Move setting of ioready 'wait' earlier in call chain, to
[python/dscho.git] / Lib / plat-mac / lib-scriptpackages / StdSuites / Table_Suite.py
blobcfeee32f92cef819f0777fc20b4d6f46d0518c01
1 """Suite Table Suite: Classes for manipulating tables
2 Level 1, version 1
4 Generated from /Volumes/Sap/System Folder/Extensions/AppleScript
5 AETE/AEUT resource version 1/0, language 0, script 0
6 """
8 import aetools
9 import MacOS
11 _code = 'tbls'
13 class Table_Suite_Events:
15 pass
18 class cell(aetools.ComponentItem):
19 """cell - A cell """
20 want = 'ccel'
21 class formula(aetools.NProperty):
22 """formula - the formula of the cell """
23 which = 'pfor'
24 want = 'ctxt'
25 class protection(aetools.NProperty):
26 """protection - Indicates whether value or formula in the cell can be changed """
27 which = 'ppro'
28 want = 'prtn'
30 cells = cell
32 class column(aetools.ComponentItem):
33 """column - A column """
34 want = 'ccol'
35 class name(aetools.NProperty):
36 """name - the name of the column """
37 which = 'pnam'
38 want = 'itxt'
40 columns = column
42 class row(aetools.ComponentItem):
43 """row - A row """
44 want = 'crow'
46 rows = row
48 class table(aetools.ComponentItem):
49 """table - A table """
50 want = 'ctbl'
52 tables = table
53 cell._superclassnames = []
54 cell._privpropdict = {
55 'formula' : formula,
56 'protection' : protection,
58 cell._privelemdict = {
60 column._superclassnames = []
61 column._privpropdict = {
62 'name' : name,
64 column._privelemdict = {
66 row._superclassnames = []
67 row._privpropdict = {
69 row._privelemdict = {
71 table._superclassnames = []
72 table._privpropdict = {
74 table._privelemdict = {
76 _Enum_prtn = {
77 'read_only' : 'nmod', # Can\xd5t change values or formulas
78 'formulas_protected' : 'fpro', # Can changes values but not formulas
79 'read_2f_write' : 'modf', # Can change values and formulas
84 # Indices of types declared in this module
86 _classdeclarations = {
87 'ccel' : cell,
88 'ccol' : column,
89 'ctbl' : table,
90 'crow' : row,
93 _propdeclarations = {
94 'pnam' : name,
95 'pfor' : formula,
96 'ppro' : protection,
99 _compdeclarations = {
102 _enumdeclarations = {
103 'prtn' : _Enum_prtn,