| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | """Suite Table Suite: Classes for manipulating tables
 | 
					
						
							|  |  |  | Level 1, version 1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-23 22:07:28 +00:00
										 |  |  | Generated from /Volumes/Moes/Systeemmap/Extensies/AppleScript | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 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' | 
					
						
							| 
									
										
										
										
											2003-04-01 22:05:14 +00:00
										 |  |  | class _Prop_formula(aetools.NProperty): | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 	"""formula - the formula of the cell """ | 
					
						
							|  |  |  | 	which = 'pfor' | 
					
						
							|  |  |  | 	want = 'ctxt' | 
					
						
							| 
									
										
										
										
											2003-04-01 22:05:14 +00:00
										 |  |  | class _Prop_protection(aetools.NProperty): | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 	"""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' | 
					
						
							| 
									
										
										
										
											2003-04-01 22:05:14 +00:00
										 |  |  | class _Prop_name(aetools.NProperty): | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 	"""name - the name of the column """ | 
					
						
							|  |  |  | 	which = 'pnam' | 
					
						
							|  |  |  | 	want = 'itxt' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | columns = column | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-30 22:41:53 +00:00
										 |  |  | class rows(aetools.ComponentItem): | 
					
						
							|  |  |  | 	"""rows -  """ | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 	want = 'crow' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-30 22:41:53 +00:00
										 |  |  | row = rows | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-30 22:41:53 +00:00
										 |  |  | class tables(aetools.ComponentItem): | 
					
						
							|  |  |  | 	"""tables -  """ | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 	want = 'ctbl' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-30 22:41:53 +00:00
										 |  |  | table = tables | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | cell._superclassnames = [] | 
					
						
							|  |  |  | cell._privpropdict = { | 
					
						
							| 
									
										
										
										
											2003-04-01 22:05:14 +00:00
										 |  |  | 	'formula' : _Prop_formula, | 
					
						
							|  |  |  | 	'protection' : _Prop_protection, | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | cell._privelemdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | column._superclassnames = [] | 
					
						
							|  |  |  | column._privpropdict = { | 
					
						
							| 
									
										
										
										
											2003-04-01 22:05:14 +00:00
										 |  |  | 	'name' : _Prop_name, | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | column._privelemdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2003-03-30 22:41:53 +00:00
										 |  |  | rows._superclassnames = [] | 
					
						
							|  |  |  | rows._privpropdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2003-03-30 22:41:53 +00:00
										 |  |  | rows._privelemdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2003-03-30 22:41:53 +00:00
										 |  |  | tables._superclassnames = [] | 
					
						
							|  |  |  | tables._privpropdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2003-03-30 22:41:53 +00:00
										 |  |  | tables._privelemdict = { | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } | 
					
						
							|  |  |  | _Enum_prtn = { | 
					
						
							| 
									
										
										
										
											2002-08-07 15:53:42 +00:00
										 |  |  | 	'read_only' : 'nmod',	# Can\xd5t change values or formulas | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | 	'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, | 
					
						
							| 
									
										
										
										
											2003-03-30 22:41:53 +00:00
										 |  |  | 	'crow' : rows, | 
					
						
							|  |  |  | 	'ctbl' : tables, | 
					
						
							| 
									
										
										
										
											2000-08-17 22:14:57 +00:00
										 |  |  | } |