summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac/lib-scriptpackages/Netscape/Standard_Suite.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/Netscape/Standard_Suite.py')
-rw-r--r--Lib/plat-mac/lib-scriptpackages/Netscape/Standard_Suite.py100
1 files changed, 50 insertions, 50 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/Netscape/Standard_Suite.py b/Lib/plat-mac/lib-scriptpackages/Netscape/Standard_Suite.py
index aa1d087..5e62104 100644
--- a/Lib/plat-mac/lib-scriptpackages/Netscape/Standard_Suite.py
+++ b/Lib/plat-mac/lib-scriptpackages/Netscape/Standard_Suite.py
@@ -117,66 +117,66 @@ class kiosk_mode(aetools.NProperty):
class window(aetools.ComponentItem):
"""window - A Window """
want = 'cwin'
+class URL(aetools.NProperty):
+ """URL - Current URL """
+ which = 'curl'
+ want = 'TEXT'
class bounds(aetools.NProperty):
"""bounds - the boundary rectangle for the window """
which = 'pbnd'
want = 'qdrt'
+class busy(aetools.NProperty):
+ """busy - Is window loading something right now. 2, window is busy and will reject load requests. 1, window is busy, but will interrupt outstanding loads """
+ which = 'busy'
+ want = 'long'
class closeable(aetools.NProperty):
"""closeable - Does the window have a close box? """
which = 'hclb'
want = 'bool'
-class titled(aetools.NProperty):
- """titled - Does the window have a title bar? """
- which = 'ptit'
+class floating(aetools.NProperty):
+ """floating - Does the window float? """
+ which = 'isfl'
want = 'bool'
class index(aetools.NProperty):
"""index - the number of the window """
which = 'pidx'
want = 'long'
-class floating(aetools.NProperty):
- """floating - Does the window float? """
- which = 'isfl'
- want = 'bool'
class modal(aetools.NProperty):
"""modal - Is the window modal? """
which = 'pmod'
want = 'bool'
-class resizable(aetools.NProperty):
- """resizable - Is the window resizable? """
- which = 'prsz'
- want = 'bool'
-class zoomable(aetools.NProperty):
- """zoomable - Is the window zoomable? """
- which = 'iszm'
- want = 'bool'
-class zoomed(aetools.NProperty):
- """zoomed - Is the window zoomed? """
- which = 'pzum'
- want = 'bool'
class name(aetools.NProperty):
"""name - the title of the window """
which = 'pnam'
want = 'itxt'
-class visible(aetools.NProperty):
- """visible - is the window visible? """
- which = 'pvis'
- want = 'bool'
class position(aetools.NProperty):
"""position - upper left coordinates of window """
which = 'ppos'
want = 'QDpt'
-class URL(aetools.NProperty):
- """URL - Current URL """
- which = 'curl'
- want = 'TEXT'
+class resizable(aetools.NProperty):
+ """resizable - Is the window resizable? """
+ which = 'prsz'
+ want = 'bool'
+class titled(aetools.NProperty):
+ """titled - Does the window have a title bar? """
+ which = 'ptit'
+ want = 'bool'
class unique_ID(aetools.NProperty):
"""unique ID - Window\xd5s unique ID (a bridge between WWW! suite window id\xd5s and standard AE windows) """
which = 'wiid'
want = 'long'
-class busy(aetools.NProperty):
- """busy - Is window loading something right now. 2, window is busy and will reject load requests. 1, window is busy, but will interrupt outstanding loads """
- which = 'busy'
- want = 'long'
+class visible(aetools.NProperty):
+ """visible - is the window visible? """
+ which = 'pvis'
+ want = 'bool'
+class zoomable(aetools.NProperty):
+ """zoomable - Is the window zoomable? """
+ which = 'iszm'
+ want = 'bool'
+class zoomed(aetools.NProperty):
+ """zoomed - Is the window zoomed? """
+ which = 'pzum'
+ want = 'bool'
application._superclassnames = []
application._privpropdict = {
'alert_application' : alert_application,
@@ -187,21 +187,21 @@ application._privelemdict = {
}
window._superclassnames = []
window._privpropdict = {
+ 'URL' : URL,
'bounds' : bounds,
+ 'busy' : busy,
'closeable' : closeable,
- 'titled' : titled,
- 'index' : index,
'floating' : floating,
+ 'index' : index,
'modal' : modal,
- 'resizable' : resizable,
- 'zoomable' : zoomable,
- 'zoomed' : zoomed,
'name' : name,
- 'visible' : visible,
'position' : position,
- 'URL' : URL,
+ 'resizable' : resizable,
+ 'titled' : titled,
'unique_ID' : unique_ID,
- 'busy' : busy,
+ 'visible' : visible,
+ 'zoomable' : zoomable,
+ 'zoomed' : zoomed,
}
window._privelemdict = {
}
@@ -210,28 +210,28 @@ window._privelemdict = {
# Indices of types declared in this module
#
_classdeclarations = {
- 'cwin' : window,
'capp' : application,
+ 'cwin' : window,
}
_propdeclarations = {
- 'prsz' : resizable,
- 'busy' : busy,
+ 'ALAP' : alert_application,
'KOSK' : kiosk_mode,
- 'pvis' : visible,
+ 'busy' : busy,
+ 'curl' : URL,
'hclb' : closeable,
- 'pmod' : modal,
- 'wiid' : unique_ID,
- 'pbnd' : bounds,
+ 'isfl' : floating,
'iszm' : zoomable,
- 'ALAP' : alert_application,
+ 'pbnd' : bounds,
'pidx' : index,
- 'isfl' : floating,
+ 'pmod' : modal,
'pnam' : name,
'ppos' : position,
- 'curl' : URL,
- 'pzum' : zoomed,
+ 'prsz' : resizable,
'ptit' : titled,
+ 'pvis' : visible,
+ 'pzum' : zoomed,
+ 'wiid' : unique_ID,
}
_compdeclarations = {