diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-08-22 20:35:17 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-08-22 20:35:17 (GMT) |
commit | 6c091c8ff2de5ba2249705fe9e963c364b39186b (patch) | |
tree | da5fdb00705134d2d28cdbc8de00083e220c9e11 /Mac/Lib/lib-scriptpackages/Finder/Window_classes.py | |
parent | 9d6d2c0c972b296eeb93413e08aa913f71fa11ba (diff) | |
download | cpython-6c091c8ff2de5ba2249705fe9e963c364b39186b.zip cpython-6c091c8ff2de5ba2249705fe9e963c364b39186b.tar.gz cpython-6c091c8ff2de5ba2249705fe9e963c364b39186b.tar.bz2 |
Regenerated to take advantage of support for multiple names for a single property.
Diffstat (limited to 'Mac/Lib/lib-scriptpackages/Finder/Window_classes.py')
-rw-r--r-- | Mac/Lib/lib-scriptpackages/Finder/Window_classes.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Mac/Lib/lib-scriptpackages/Finder/Window_classes.py b/Mac/Lib/lib-scriptpackages/Finder/Window_classes.py index 0fa2e81..17a3c36 100644 --- a/Mac/Lib/lib-scriptpackages/Finder/Window_classes.py +++ b/Mac/Lib/lib-scriptpackages/Finder/Window_classes.py @@ -50,7 +50,8 @@ class modal(aetools.NProperty): """modal - Is the window modal? """ which = 'pmod' want = 'bool' -# repeated property resizable Is the window resizable? + +resizable = titled class zoomable(aetools.NProperty): """zoomable - Is the window zoomable? """ which = 'iszm' @@ -163,8 +164,6 @@ container_windows = container_window class information_window(aetools.ComponentItem): """information window - An information window (opened by łGet Info˛) """ want = 'iwnd' -# repeated property _3c_Inheritance_3e_ inherits some of its properties from the window class -# repeated property item the item from which this window was opened class current_panel(aetools.NProperty): """current panel - the current panel in the information window """ which = 'panl' @@ -231,13 +230,10 @@ information_windows = information_window class preferences_window(aetools.ComponentItem): """preferences window - The Finder Preferences window """ want = 'pwnd' -# repeated property _3c_Inheritance_3e_ inherits some of its properties from the window class -# repeated property current_panel The current panel in the Finder preferences window class clipping_window(aetools.ComponentItem): """clipping window - The window containing a clipping """ want = 'lwnd' -# repeated property _3c_Inheritance_3e_ inherits some of its properties from the window class clipping_windows = clipping_window |