[Python-checkins] python/dist/src/Lib/plat-mac/lib-scriptpackages/Finder Containers_and_folders.py,1.5,1.6 Type_Definitions.py,1.5,1.6 Window_classes.py,1.5,1.6 __init__.py,1.5,1.6

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
2003年3月30日 14:42:21 -0800


Update of /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Finder
In directory sc8-pr-cvs1:/tmp/cvs-serv17412/Finder
Modified Files:
	Containers_and_folders.py Type_Definitions.py 
	Window_classes.py __init__.py 
Log Message:
Regenerated again, now clases are sorted by code, and with synonyms after
the primary name.
Index: Containers_and_folders.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Finder/Containers_and_folders.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Containers_and_folders.py	29 Mar 2003 00:13:12 -0000	1.5
--- Containers_and_folders.py	30 Mar 2003 22:41:48 -0000	1.6
***************
*** 16,77 ****
 
 
- class container(aetools.ComponentItem):
- 	"""container - An item that contains other items """
- 	want = 'ctnr'
- class _3c_Inheritance_3e_(aetools.NProperty):
- 	"""<Inheritance> - inherits some of its properties from the item class """
- 	which = 'c@#^'
- 	want = 'cobj'
- class completely_expanded(aetools.NProperty):
- 	"""completely expanded - (NOT AVAILABLE YET) Are the container and all of its children opened as outlines? (can only be set for containers viewed as lists) """
- 	which = 'pexc'
- 	want = 'bool'
- class container_window(aetools.NProperty):
- 	"""container window - the container window for this folder """
- 	which = 'cwnd'
- 	want = 'obj '
- class entire_contents(aetools.NProperty):
- 	"""entire contents - the entire contents of the container, including the contents of its children """
- 	which = 'ects'
- 	want = 'obj '
- class expandable(aetools.NProperty):
- 	"""expandable - (NOT AVAILABLE YET) Is the container capable of being expanded as an outline? """
- 	which = 'pexa'
- 	want = 'bool'
- class expanded(aetools.NProperty):
- 	"""expanded - (NOT AVAILABLE YET) Is the container opened as an outline? (can only be set for containers viewed as lists) """
- 	which = 'pexp'
- 	want = 'bool'
- # element 'alia' as ['indx', 'name']
- # element 'appf' as ['indx', 'name', 'ID ']
- # element 'cfol' as ['indx', 'name', 'ID ']
- # element 'clpf' as ['indx', 'name']
- # element 'cobj' as ['indx', 'name']
- # element 'ctnr' as ['indx', 'name']
- # element 'docf' as ['indx', 'name']
- # element 'file' as ['indx', 'name']
- # element 'inlf' as ['indx', 'name']
- # element 'pack' as ['indx', 'name']
- 
- containers = container
- 
- class desktop_2d_object(aetools.ComponentItem):
- 	"""desktop-object - Desktop-object is the class of the \xd2desktop\xd3 object """
- 	want = 'cdsk'
- # element 'alia' as ['indx', 'name']
- # element 'appf' as ['indx', 'name', 'ID ']
- # element 'cdis' as ['indx', 'name']
- # element 'cfol' as ['indx', 'name', 'ID ']
- # element 'clpf' as ['indx', 'name']
- # element 'cobj' as ['indx', 'name']
- # element 'ctnr' as ['indx', 'name']
- # element 'docf' as ['indx', 'name']
- # element 'file' as ['indx', 'name']
- # element 'inlf' as ['indx', 'name']
- # element 'pack' as ['indx', 'name']
- 
 class disk(aetools.ComponentItem):
 	"""disk - A disk """
 	want = 'cdis'
 class capacity(aetools.NProperty):
 	"""capacity - the total number of bytes (free or used) on the disk """
--- 16,26 ----
 
 
 class disk(aetools.ComponentItem):
 	"""disk - A disk """
 	want = 'cdis'
+ class _3c_Inheritance_3e_(aetools.NProperty):
+ 	"""<Inheritance> - inherits some of its properties from the container class """
+ 	which = 'c@#^'
+ 	want = 'ctnr'
 class capacity(aetools.NProperty):
 	"""capacity - the total number of bytes (free or used) on the disk """
***************
*** 115,118 ****
--- 64,82 ----
 disks = disk
 
+ class desktop_2d_object(aetools.ComponentItem):
+ 	"""desktop-object - Desktop-object is the class of the \xd2desktop\xd3 object """
+ 	want = 'cdsk'
+ # element 'alia' as ['indx', 'name']
+ # element 'appf' as ['indx', 'name', 'ID ']
+ # element 'cdis' as ['indx', 'name']
+ # element 'cfol' as ['indx', 'name', 'ID ']
+ # element 'clpf' as ['indx', 'name']
+ # element 'cobj' as ['indx', 'name']
+ # element 'ctnr' as ['indx', 'name']
+ # element 'docf' as ['indx', 'name']
+ # element 'file' as ['indx', 'name']
+ # element 'inlf' as ['indx', 'name']
+ # element 'pack' as ['indx', 'name']
+ 
 class folder(aetools.ComponentItem):
 	"""folder - A folder """
***************
*** 131,134 ****
--- 95,134 ----
 folders = folder
 
+ class container(aetools.ComponentItem):
+ 	"""container - An item that contains other items """
+ 	want = 'ctnr'
+ class completely_expanded(aetools.NProperty):
+ 	"""completely expanded - (NOT AVAILABLE YET) Are the container and all of its children opened as outlines? (can only be set for containers viewed as lists) """
+ 	which = 'pexc'
+ 	want = 'bool'
+ class container_window(aetools.NProperty):
+ 	"""container window - the container window for this folder """
+ 	which = 'cwnd'
+ 	want = 'obj '
+ class entire_contents(aetools.NProperty):
+ 	"""entire contents - the entire contents of the container, including the contents of its children """
+ 	which = 'ects'
+ 	want = 'obj '
+ class expandable(aetools.NProperty):
+ 	"""expandable - (NOT AVAILABLE YET) Is the container capable of being expanded as an outline? """
+ 	which = 'pexa'
+ 	want = 'bool'
+ class expanded(aetools.NProperty):
+ 	"""expanded - (NOT AVAILABLE YET) Is the container opened as an outline? (can only be set for containers viewed as lists) """
+ 	which = 'pexp'
+ 	want = 'bool'
+ # element 'alia' as ['indx', 'name']
+ # element 'appf' as ['indx', 'name', 'ID ']
+ # element 'cfol' as ['indx', 'name', 'ID ']
+ # element 'clpf' as ['indx', 'name']
+ # element 'cobj' as ['indx', 'name']
+ # element 'ctnr' as ['indx', 'name']
+ # element 'docf' as ['indx', 'name']
+ # element 'file' as ['indx', 'name']
+ # element 'inlf' as ['indx', 'name']
+ # element 'pack' as ['indx', 'name']
+ 
+ containers = container
+ 
 class trash_2d_object(aetools.ComponentItem):
 	"""trash-object - Trash-object is the class of the \xd2trash\xd3 object """
***************
*** 148,163 ****
 # element 'inlf' as ['indx', 'name']
 # element 'pack' as ['indx', 'name']
! import Finder_items
! container._superclassnames = ['item']
 import Files
! container._privpropdict = {
 	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
! 	'completely_expanded' : completely_expanded,
! 	'container_window' : container_window,
! 	'entire_contents' : entire_contents,
! 	'expandable' : expandable,
! 	'expanded' : expanded,
 }
! container._privelemdict = {
 	'alias_file' : Files.alias_file,
 	'application_file' : Files.application_file,
--- 148,165 ----
 # element 'inlf' as ['indx', 'name']
 # element 'pack' as ['indx', 'name']
! disk._superclassnames = ['container']
 import Files
! import Finder_items
! disk._privpropdict = {
 	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
! 	'capacity' : capacity,
! 	'ejectable' : ejectable,
! 	'format' : format,
! 	'free_space' : free_space,
! 	'ignore_privileges' : ignore_privileges,
! 	'local_volume' : local_volume,
! 	'startup' : startup,
 }
! disk._privelemdict = {
 	'alias_file' : Files.alias_file,
 	'application_file' : Files.application_file,
***************
*** 188,203 ****
 	'package' : Files.package,
 }
! disk._superclassnames = ['container']
! disk._privpropdict = {
 	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
- 	'capacity' : capacity,
- 	'ejectable' : ejectable,
- 	'format' : format,
- 	'free_space' : free_space,
- 	'ignore_privileges' : ignore_privileges,
- 	'local_volume' : local_volume,
- 	'startup' : startup,
 }
! disk._privelemdict = {
 	'alias_file' : Files.alias_file,
 	'application_file' : Files.application_file,
--- 190,198 ----
 	'package' : Files.package,
 }
! folder._superclassnames = ['container']
! folder._privpropdict = {
 	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
 }
! folder._privelemdict = {
 	'alias_file' : Files.alias_file,
 	'application_file' : Files.application_file,
***************
*** 211,219 ****
 	'package' : Files.package,
 }
! folder._superclassnames = ['container']
! folder._privpropdict = {
 	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
 }
! folder._privelemdict = {
 	'alias_file' : Files.alias_file,
 	'application_file' : Files.application_file,
--- 206,219 ----
 	'package' : Files.package,
 }
! container._superclassnames = ['item']
! container._privpropdict = {
 	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
+ 	'completely_expanded' : completely_expanded,
+ 	'container_window' : container_window,
+ 	'entire_contents' : entire_contents,
+ 	'expandable' : expandable,
+ 	'expanded' : expanded,
 }
! container._privelemdict = {
 	'alias_file' : Files.alias_file,
 	'application_file' : Files.application_file,
Index: Type_Definitions.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Finder/Type_Definitions.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Type_Definitions.py	29 Mar 2003 00:13:14 -0000	1.5
--- Type_Definitions.py	30 Mar 2003 22:41:48 -0000	1.6
***************
*** 20,103 ****
 	want = 'alst'
 
- class column(aetools.ComponentItem):
- 	"""column - a column of a list view """
- 	want = 'lvcl'
- class index(aetools.NProperty):
- 	"""index - the index in the front-to-back ordering within its container """
- 	which = 'pidx'
- 	want = 'long'
- class name(aetools.NProperty):
- 	"""name - the column name """
- 	which = 'pnam'
- 	want = 'elsv'
- class sort_direction(aetools.NProperty):
- 	"""sort direction - The direction in which the window is sorted """
- 	which = 'sord'
- 	want = 'sodr'
- class visible(aetools.NProperty):
- 	"""visible - is this column visible """
- 	which = 'pvis'
- 	want = 'bool'
- class width(aetools.NProperty):
- 	"""width - the width of this column """
- 	which = 'clwd'
- 	want = 'shor'
- 
- columns = column
- 
- class icon_family(aetools.ComponentItem):
- 	"""icon family - (NOT AVAILABLE YET) A family of icons """
- 	want = 'ifam'
- class large_32_bit_icon(aetools.NProperty):
- 	"""large 32 bit icon - the large 32-bit color icon """
- 	which = 'il32'
- 	want = 'il32'
- class large_4_bit_icon(aetools.NProperty):
- 	"""large 4 bit icon - the large 4-bit color icon """
- 	which = 'icl4'
- 	want = 'icl4'
- class large_8_bit_icon(aetools.NProperty):
- 	"""large 8 bit icon - the large 8-bit color icon """
- 	which = 'icl8'
- 	want = 'icl8'
- class large_8_bit_mask(aetools.NProperty):
- 	"""large 8 bit mask - the large 8-bit mask for large 32-bit icons """
- 	which = 'l8mk'
- 	want = 'l8mk'
- class large_monochrome_icon_and_mask(aetools.NProperty):
- 	"""large monochrome icon and mask - the large black-and-white icon and the mask for large icons """
- 	which = 'ICN#'
- 	want = 'ICN#'
- class small_32_bit_icon(aetools.NProperty):
- 	"""small 32 bit icon - the small 32-bit color icon """
- 	which = 'is32'
- 	want = 'is32'
- class small_4_bit_icon(aetools.NProperty):
- 	"""small 4 bit icon - the small 4-bit color icon """
- 	which = 'ics4'
- 	want = 'ics4'
- class small_8_bit_icon(aetools.NProperty):
- 	"""small 8 bit icon - the small 8-bit color icon """
- 	which = 'ics8'
- 	want = 'ics8'
- 
- small_8_bit_mask = small_8_bit_icon
- class small_monochrome_icon_and_mask(aetools.NProperty):
- 	"""small monochrome icon and mask - the small black-and-white icon and the mask for small icons """
- 	which = 'ics#'
- 	want = 'ics#'
- 
- class icon_view_options(aetools.ComponentItem):
- 	"""icon view options - the icon view options """
- 	want = 'icop'
- class arrangement(aetools.NProperty):
- 	"""arrangement - the property by which to keep icons arranged """
- 	which = 'iarr'
- 	want = 'earr'
- class icon_size(aetools.NProperty):
- 	"""icon size - the size of icons displayed in the icon view """
- 	which = 'lvis'
- 	want = 'shor'
- 
 class label(aetools.ComponentItem):
 	"""label - (NOT AVAILABLE YET) A Finder label (name and color) """
--- 20,23 ----
***************
*** 107,127 ****
 	which = 'colr'
 	want = 'cRGB'
! 
! class list_view_options(aetools.ComponentItem):
! 	"""list view options - the list view options """
! 	want = 'lvop'
! class calculates_folder_sizes(aetools.NProperty):
! 	"""calculates folder sizes - Are folder sizes calculated and displayed in the window? """
! 	which = 'sfsz'
! 	want = 'bool'
! class sort_column(aetools.NProperty):
! 	"""sort column - the column that the list view is sorted on """
! 	which = 'srtc'
! 	want = 'lvcl'
! class uses_relative_dates(aetools.NProperty):
! 	"""uses relative dates - Are relative dates (e.g., today, yesterday) shown in the list view? """
! 	which = 'urdt'
! 	want = 'bool'
! # element 'lvcl' as ['indx', 'rele', 'rang', 'test']
 
 class preferences(aetools.ComponentItem):
--- 27,38 ----
 	which = 'colr'
 	want = 'cRGB'
! class index(aetools.NProperty):
! 	"""index - the index in the front-to-back ordering within its container """
! 	which = 'pidx'
! 	want = 'long'
! class name(aetools.NProperty):
! 	"""name - the name associated with the label """
! 	which = 'pnam'
! 	want = 'utxt'
 
 class preferences(aetools.ComponentItem):
***************
*** 136,139 ****
--- 47,54 ----
 	which = 'bisz'
 	want = 'long'
+ class calculates_folder_sizes(aetools.NProperty):
+ 	"""calculates folder sizes - Are folder sizes calculated and displayed in Finder list view windows? """
+ 	which = 'sfsz'
+ 	want = 'bool'
 class delay_before_springing(aetools.NProperty):
 	"""delay before springing - the delay before springing open a container in ticks (1/60th of a second) (12 is shortest delay, 60 is longest delay) """
***************
*** 172,177 ****
 	which = 'svrs'
 	want = 'bool'
! 
! spatial_view_arrangement = arrangement
 class spatial_view_icon_size(aetools.NProperty):
 	"""spatial view icon size - the size of icons displayed in Finder spatial view windows. """
--- 87,94 ----
 	which = 'svrs'
 	want = 'bool'
! class spatial_view_arrangement(aetools.NProperty):
! 	"""spatial view arrangement - the method of arrangement of icons in default Finder spatial view windows """
! 	which = 'iarr'
! 	want = 'earr'
 class spatial_view_icon_size(aetools.NProperty):
 	"""spatial view icon size - the size of icons displayed in Finder spatial view windows. """
***************
*** 182,185 ****
--- 99,106 ----
 	which = 'sprg'
 	want = 'bool'
+ class uses_relative_dates(aetools.NProperty):
+ 	"""uses relative dates - Are relative dates (e.g., today, yesterday) shown in Finder list view windows? """
+ 	which = 'urdt'
+ 	want = 'bool'
 class uses_simple_menus(aetools.NProperty):
 	"""uses simple menus - Use simplified Finder menus? """
***************
*** 203,206 ****
--- 124,206 ----
 	want = 'pwnd'
 # element 'clbl' as ['indx', 'name']
+ 
+ class icon_view_options(aetools.ComponentItem):
+ 	"""icon view options - the icon view options """
+ 	want = 'icop'
+ 
+ arrangement = spatial_view_arrangement
+ class icon_size(aetools.NProperty):
+ 	"""icon size - the size of icons displayed in the icon view """
+ 	which = 'lvis'
+ 	want = 'shor'
+ 
+ class icon_family(aetools.ComponentItem):
+ 	"""icon family - (NOT AVAILABLE YET) A family of icons """
+ 	want = 'ifam'
+ class large_32_bit_icon(aetools.NProperty):
+ 	"""large 32 bit icon - the large 32-bit color icon """
+ 	which = 'il32'
+ 	want = 'il32'
+ class large_4_bit_icon(aetools.NProperty):
+ 	"""large 4 bit icon - the large 4-bit color icon """
+ 	which = 'icl4'
+ 	want = 'icl4'
+ class large_8_bit_icon(aetools.NProperty):
+ 	"""large 8 bit icon - the large 8-bit color icon """
+ 	which = 'icl8'
+ 	want = 'icl8'
+ class large_8_bit_mask(aetools.NProperty):
+ 	"""large 8 bit mask - the large 8-bit mask for large 32-bit icons """
+ 	which = 'l8mk'
+ 	want = 'l8mk'
+ class large_monochrome_icon_and_mask(aetools.NProperty):
+ 	"""large monochrome icon and mask - the large black-and-white icon and the mask for large icons """
+ 	which = 'ICN#'
+ 	want = 'ICN#'
+ class small_32_bit_icon(aetools.NProperty):
+ 	"""small 32 bit icon - the small 32-bit color icon """
+ 	which = 'is32'
+ 	want = 'is32'
+ class small_4_bit_icon(aetools.NProperty):
+ 	"""small 4 bit icon - the small 4-bit color icon """
+ 	which = 'ics4'
+ 	want = 'ics4'
+ class small_8_bit_icon(aetools.NProperty):
+ 	"""small 8 bit icon - the small 8-bit color icon """
+ 	which = 'ics8'
+ 	want = 'ics8'
+ 
+ small_8_bit_mask = small_8_bit_icon
+ class small_monochrome_icon_and_mask(aetools.NProperty):
+ 	"""small monochrome icon and mask - the small black-and-white icon and the mask for small icons """
+ 	which = 'ics#'
+ 	want = 'ics#'
+ 
+ class column(aetools.ComponentItem):
+ 	"""column - a column of a list view """
+ 	want = 'lvcl'
+ class sort_direction(aetools.NProperty):
+ 	"""sort direction - The direction in which the window is sorted """
+ 	which = 'sord'
+ 	want = 'sodr'
+ class visible(aetools.NProperty):
+ 	"""visible - is this column visible """
+ 	which = 'pvis'
+ 	want = 'bool'
+ class width(aetools.NProperty):
+ 	"""width - the width of this column """
+ 	which = 'clwd'
+ 	want = 'shor'
+ 
+ columns = column
+ 
+ class list_view_options(aetools.ComponentItem):
+ 	"""list view options - the list view options """
+ 	want = 'lvop'
+ class sort_column(aetools.NProperty):
+ 	"""sort column - the column that the list view is sorted on """
+ 	which = 'srtc'
+ 	want = 'lvcl'
+ # element 'lvcl' as ['indx', 'rele', 'rang', 'test']
 alias_list._superclassnames = []
 alias_list._privpropdict = {
***************
*** 208,243 ****
 alias_list._privelemdict = {
 }
- column._superclassnames = []
- column._privpropdict = {
- 	'index' : index,
- 	'name' : name,
- 	'sort_direction' : sort_direction,
- 	'visible' : visible,
- 	'width' : width,
- }
- column._privelemdict = {
- }
- icon_family._superclassnames = []
- icon_family._privpropdict = {
- 	'large_32_bit_icon' : large_32_bit_icon,
- 	'large_4_bit_icon' : large_4_bit_icon,
- 	'large_8_bit_icon' : large_8_bit_icon,
- 	'large_8_bit_mask' : large_8_bit_mask,
- 	'large_monochrome_icon_and_mask' : large_monochrome_icon_and_mask,
- 	'small_32_bit_icon' : small_32_bit_icon,
- 	'small_4_bit_icon' : small_4_bit_icon,
- 	'small_8_bit_icon' : small_8_bit_icon,
- 	'small_8_bit_mask' : small_8_bit_mask,
- 	'small_monochrome_icon_and_mask' : small_monochrome_icon_and_mask,
- }
- icon_family._privelemdict = {
- }
- icon_view_options._superclassnames = []
- icon_view_options._privpropdict = {
- 	'arrangement' : arrangement,
- 	'icon_size' : icon_size,
- }
- icon_view_options._privelemdict = {
- }
 label._superclassnames = []
 label._privpropdict = {
--- 208,211 ----
***************
*** 248,261 ****
 label._privelemdict = {
 }
- list_view_options._superclassnames = []
- list_view_options._privpropdict = {
- 	'calculates_folder_sizes' : calculates_folder_sizes,
- 	'icon_size' : icon_size,
- 	'sort_column' : sort_column,
- 	'uses_relative_dates' : uses_relative_dates,
- }
- list_view_options._privelemdict = {
- 	'column' : column,
- }
 preferences._superclassnames = []
 preferences._privpropdict = {
--- 216,219 ----
***************
*** 285,288 ****
--- 243,288 ----
 	'label' : label,
 }
+ icon_view_options._superclassnames = []
+ icon_view_options._privpropdict = {
+ 	'arrangement' : arrangement,
+ 	'icon_size' : icon_size,
+ }
+ icon_view_options._privelemdict = {
+ }
+ icon_family._superclassnames = []
+ icon_family._privpropdict = {
+ 	'large_32_bit_icon' : large_32_bit_icon,
+ 	'large_4_bit_icon' : large_4_bit_icon,
+ 	'large_8_bit_icon' : large_8_bit_icon,
+ 	'large_8_bit_mask' : large_8_bit_mask,
+ 	'large_monochrome_icon_and_mask' : large_monochrome_icon_and_mask,
+ 	'small_32_bit_icon' : small_32_bit_icon,
+ 	'small_4_bit_icon' : small_4_bit_icon,
+ 	'small_8_bit_icon' : small_8_bit_icon,
+ 	'small_8_bit_mask' : small_8_bit_mask,
+ 	'small_monochrome_icon_and_mask' : small_monochrome_icon_and_mask,
+ }
+ icon_family._privelemdict = {
+ }
+ column._superclassnames = []
+ column._privpropdict = {
+ 	'index' : index,
+ 	'name' : name,
+ 	'sort_direction' : sort_direction,
+ 	'visible' : visible,
+ 	'width' : width,
+ }
+ column._privelemdict = {
+ }
+ list_view_options._superclassnames = []
+ list_view_options._privpropdict = {
+ 	'calculates_folder_sizes' : calculates_folder_sizes,
+ 	'icon_size' : icon_size,
+ 	'sort_column' : sort_column,
+ 	'uses_relative_dates' : uses_relative_dates,
+ }
+ list_view_options._privelemdict = {
+ 	'column' : column,
+ }
 
 #
***************
*** 307,311 ****
 	'cwin' : window,
 	'dela' : delay_before_springing,
! 	'iarr' : arrangement,
 	'icl4' : large_4_bit_icon,
 	'icl8' : large_8_bit_icon,
--- 307,311 ----
 	'cwin' : window,
 	'dela' : delay_before_springing,
! 	'iarr' : spatial_view_arrangement,
 	'icl4' : large_4_bit_icon,
 	'icl8' : large_8_bit_icon,
Index: Window_classes.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Finder/Window_classes.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Window_classes.py	29 Mar 2003 00:13:15 -0000	1.5
--- Window_classes.py	30 Mar 2003 22:41:48 -0000	1.6
***************
*** 42,67 ****
 Finder_windows = Finder_window
 
- class clipping_window(aetools.ComponentItem):
- 	"""clipping window - The window containing a clipping """
- 	want = 'lwnd'
- 
- clipping_windows = clipping_window
- 
- class information_window(aetools.ComponentItem):
- 	"""information window - An inspector window (opened by \xd2Show Info\xd3) """
- 	want = 'iwnd'
- class current_panel(aetools.NProperty):
- 	"""current panel - the current panel in the information window """
- 	which = 'panl'
- 	want = 'ipnl'
- class item(aetools.NProperty):
- 	"""item - the item from which this window was opened """
- 	which = 'cobj'
- 	want = 'obj '
- 
- class preferences_window(aetools.ComponentItem):
- 	"""preferences window - (NOT AVAILABLE YET) The Finder Preferences window """
- 	want = 'pwnd'
- 
 class window(aetools.ComponentItem):
 	"""window - A window """
--- 42,45 ----
***************
*** 133,136 ****
--- 111,136 ----
 
 windows = window
+ 
+ class information_window(aetools.ComponentItem):
+ 	"""information window - An inspector window (opened by \xd2Show Info\xd3) """
+ 	want = 'iwnd'
+ class current_panel(aetools.NProperty):
+ 	"""current panel - the current panel in the information window """
+ 	which = 'panl'
+ 	want = 'ipnl'
+ class item(aetools.NProperty):
+ 	"""item - the item from which this window was opened """
+ 	which = 'cobj'
+ 	want = 'obj '
+ 
+ class clipping_window(aetools.ComponentItem):
+ 	"""clipping window - The window containing a clipping """
+ 	want = 'lwnd'
+ 
+ clipping_windows = clipping_window
+ 
+ class preferences_window(aetools.ComponentItem):
+ 	"""preferences window - (NOT AVAILABLE YET) The Finder Preferences window """
+ 	want = 'pwnd'
 Finder_window._superclassnames = ['window']
 Finder_window._privpropdict = {
***************
*** 143,167 ****
 Finder_window._privelemdict = {
 }
- clipping_window._superclassnames = ['window']
- clipping_window._privpropdict = {
- 	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
- }
- clipping_window._privelemdict = {
- }
- information_window._superclassnames = ['window']
- information_window._privpropdict = {
- 	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
- 	'current_panel' : current_panel,
- 	'item' : item,
- }
- information_window._privelemdict = {
- }
- preferences_window._superclassnames = ['window']
- preferences_window._privpropdict = {
- 	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
- 	'current_panel' : current_panel,
- }
- preferences_window._privelemdict = {
- }
 window._superclassnames = []
 window._privpropdict = {
--- 143,146 ----
***************
*** 184,187 ****
--- 163,187 ----
 }
 window._privelemdict = {
+ }
+ information_window._superclassnames = ['window']
+ information_window._privpropdict = {
+ 	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
+ 	'current_panel' : current_panel,
+ 	'item' : item,
+ }
+ information_window._privelemdict = {
+ }
+ clipping_window._superclassnames = ['window']
+ clipping_window._privpropdict = {
+ 	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
+ }
+ clipping_window._privelemdict = {
+ }
+ preferences_window._superclassnames = ['window']
+ preferences_window._privpropdict = {
+ 	'_3c_Inheritance_3e_' : _3c_Inheritance_3e_,
+ 	'current_panel' : current_panel,
+ }
+ preferences_window._privelemdict = {
 }
 
Index: __init__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/lib-scriptpackages/Finder/__init__.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** __init__.py	29 Mar 2003 00:13:15 -0000	1.5
--- __init__.py	30 Mar 2003 22:41:48 -0000	1.6
***************
*** 70,73 ****
--- 70,78 ----
 getbaseclasses(item)
 getbaseclasses(application)
+ getbaseclasses(trash_2d_object)
+ getbaseclasses(desktop_2d_object)
+ getbaseclasses(container)
+ getbaseclasses(folder)
+ getbaseclasses(disk)
 getbaseclasses(package)
 getbaseclasses(file)
***************
*** 77,84 ****
 getbaseclasses(document_file)
 getbaseclasses(clipping)
- getbaseclasses(process)
- getbaseclasses(application_process)
- getbaseclasses(desk_accessory_process)
- getbaseclasses(application)
 getbaseclasses(preferences_window)
 getbaseclasses(Finder_window)
--- 82,85 ----
***************
*** 86,94 ****
 getbaseclasses(clipping_window)
 getbaseclasses(information_window)
- getbaseclasses(trash_2d_object)
- getbaseclasses(desktop_2d_object)
- getbaseclasses(container)
- getbaseclasses(folder)
- getbaseclasses(disk)
 getbaseclasses(icon_view_options)
 getbaseclasses(label)
--- 87,90 ----
***************
*** 98,101 ****
--- 94,101 ----
 getbaseclasses(icon_family)
 getbaseclasses(list_view_options)
+ getbaseclasses(process)
+ getbaseclasses(application_process)
+ getbaseclasses(desk_accessory_process)
+ getbaseclasses(application)
 getbaseclasses(StdSuites.Type_Names_Suite.double_integer)
 getbaseclasses(StdSuites.Type_Names_Suite.version)
***************
*** 145,148 ****
--- 145,153 ----
 	'cobj' : item,
 	'capp' : application,
+ 	'ctrs' : trash_2d_object,
+ 	'cdsk' : desktop_2d_object,
+ 	'ctnr' : container,
+ 	'cfol' : folder,
+ 	'cdis' : disk,
 	'pack' : package,
 	'file' : file,
***************
*** 152,159 ****
 	'docf' : document_file,
 	'clpf' : clipping,
- 	'prcs' : process,
- 	'pcap' : application_process,
- 	'pcda' : desk_accessory_process,
- 	'capp' : application,
 	'pwnd' : preferences_window,
 	'brow' : Finder_window,
--- 157,160 ----
***************
*** 161,169 ****
 	'lwnd' : clipping_window,
 	'iwnd' : information_window,
- 	'ctrs' : trash_2d_object,
- 	'cdsk' : desktop_2d_object,
- 	'ctnr' : container,
- 	'cfol' : folder,
- 	'cdis' : disk,
 	'icop' : icon_view_options,
 	'clbl' : label,
--- 162,165 ----
***************
*** 173,176 ****
--- 169,176 ----
 	'ifam' : icon_family,
 	'lvop' : list_view_options,
+ 	'prcs' : process,
+ 	'pcap' : application_process,
+ 	'pcda' : desk_accessory_process,
+ 	'capp' : application,
 	'comp' : StdSuites.Type_Names_Suite.double_integer,
 	'vers' : StdSuites.Type_Names_Suite.version,

AltStyle によって変換されたページ (->オリジナル) /