2004-07-18 03:16:08 -03:00
""" Suite Text:
2000-08-17 19:15:41 -03:00
Level 0 , version 0
2003-06-13 11:31:19 -03:00
Generated from / Volumes / Sap / Applications ( Mac OS 9 ) / Netscape Communicator \xe2 \x84 \xa2 Folder / Netscape Communicator \xe2 \x84 \xa2
2000-08-17 19:15:41 -03:00
AETE / AEUT resource version 1 / 0 , language 0 , script 0
"""
import aetools
import MacOS
_code = ' TEXT '
from StdSuites . Text_Suite import *
2000-08-20 16:28:27 -03:00
class Text_Events ( Text_Suite_Events ) :
2000-08-17 19:15:41 -03:00
2003-04-12 19:27:11 -03:00
pass
2000-08-17 19:15:41 -03:00
2003-03-30 18:41:53 -04:00
class text ( aetools . ComponentItem ) :
2003-04-12 19:27:11 -03:00
""" text - independent text view objects """
want = ' ctxt '
2003-04-01 18:05:14 -04:00
class _Prop_beginning ( aetools . NProperty ) :
2003-04-12 19:27:11 -03:00
""" beginning - Beginning of element """
which = ' bgng '
want = ' obj '
2003-04-01 18:05:14 -04:00
class _Prop_end ( aetools . NProperty ) :
2003-04-12 19:27:11 -03:00
""" end - Ending of element """
which = ' end '
want = ' obj '
2003-04-01 18:05:14 -04:00
class _Prop_infront ( aetools . NProperty ) :
2003-04-12 19:27:11 -03:00
""" infront - Immediately before element """
which = ' pBef '
want = ' obj '
2003-04-01 18:05:14 -04:00
class _Prop_justbehind ( aetools . NProperty ) :
2003-04-12 19:27:11 -03:00
""" justbehind - Immediately after element """
which = ' pAft '
want = ' obj '
2003-04-01 18:05:14 -04:00
class _Prop_updateLevel ( aetools . NProperty ) :
2003-04-12 19:27:11 -03:00
""" updateLevel - updating level. Can only be incremented or decremented. Do so only in a try block -- if the level is greater than zero, visual text updating will cease. """
which = ' pUpL '
want = ' long '
2003-03-30 18:41:53 -04:00
# element 'stys' as ['indx', 'name']
2000-08-17 19:15:41 -03:00
class styleset ( aetools . ComponentItem ) :
2003-04-12 19:27:11 -03:00
""" styleset - A style \xd2 set \xd3 that may be used repeatedly in text objects. """
want = ' stys '
2003-04-01 18:05:14 -04:00
class _Prop_color ( aetools . NProperty ) :
2003-04-12 19:27:11 -03:00
""" color - the color """
which = ' colr '
want = ' RGB '
2003-04-01 18:05:14 -04:00
class _Prop_font ( aetools . NProperty ) :
2003-04-12 19:27:11 -03:00
""" font - font name """
which = ' font '
want = ' TEXT '
2003-04-01 18:05:14 -04:00
class _Prop_name ( aetools . NProperty ) :
2003-04-12 19:27:11 -03:00
""" name - style name """
which = ' pnam '
want = ' TEXT '
2003-04-01 18:05:14 -04:00
class _Prop_size ( aetools . NProperty ) :
2003-04-12 19:27:11 -03:00
""" size - the size in points """
which = ' ptsz '
want = ' long '
2003-04-01 18:05:14 -04:00
class _Prop_style ( aetools . NProperty ) :
2003-04-12 19:27:11 -03:00
""" style - the text styles or face attributes """
which = ' txst '
want = ' tsty '
2003-04-01 18:05:14 -04:00
class _Prop_writing_code ( aetools . NProperty ) :
2003-04-12 19:27:11 -03:00
""" writing code - the script system and language """
which = ' psct '
want = ' tsty '
2000-08-17 19:15:41 -03:00
stylesets = styleset
2003-03-28 18:07:22 -04:00
text . _superclassnames = [ ]
text . _privpropdict = {
2003-04-12 19:27:11 -03:00
' beginning ' : _Prop_beginning ,
' end ' : _Prop_end ,
' infront ' : _Prop_infront ,
' justbehind ' : _Prop_justbehind ,
' updateLevel ' : _Prop_updateLevel ,
2003-03-28 18:07:22 -04:00
}
text . _privelemdict = {
2003-04-12 19:27:11 -03:00
' styleset ' : styleset ,
2003-03-28 18:07:22 -04:00
}
2003-03-30 18:41:53 -04:00
styleset . _superclassnames = [ ]
styleset . _privpropdict = {
2003-04-12 19:27:11 -03:00
' color ' : _Prop_color ,
' font ' : _Prop_font ,
' name ' : _Prop_name ,
' size ' : _Prop_size ,
' style ' : _Prop_style ,
' writing_code ' : _Prop_writing_code ,
2003-03-30 18:41:53 -04:00
}
styleset . _privelemdict = {
}
2000-08-17 19:15:41 -03:00
#
# Indices of types declared in this module
#
_classdeclarations = {
2003-04-12 19:27:11 -03:00
' ctxt ' : text ,
' stys ' : styleset ,
}
_propdeclarations = {
' bgng ' : _Prop_beginning ,
' colr ' : _Prop_color ,
' end ' : _Prop_end ,
' font ' : _Prop_font ,
' pAft ' : _Prop_justbehind ,
' pBef ' : _Prop_infront ,
' pUpL ' : _Prop_updateLevel ,
' pnam ' : _Prop_name ,
' psct ' : _Prop_writing_code ,
' ptsz ' : _Prop_size ,
' txst ' : _Prop_style ,
}
_compdeclarations = {
}
_enumdeclarations = {
2000-08-17 19:15:41 -03:00
}