| 1 | n/a | """Suite Text: |
|---|
| 2 | n/a | Level 0, version 0 |
|---|
| 3 | n/a | |
|---|
| 4 | n/a | Generated from /Volumes/Sap/Applications (Mac OS 9)/Netscape Communicator\xe2\x84\xa2 Folder/Netscape Communicator\xe2\x84\xa2 |
|---|
| 5 | n/a | AETE/AEUT resource version 1/0, language 0, script 0 |
|---|
| 6 | n/a | """ |
|---|
| 7 | n/a | |
|---|
| 8 | n/a | import aetools |
|---|
| 9 | n/a | import MacOS |
|---|
| 10 | n/a | |
|---|
| 11 | n/a | _code = 'TEXT' |
|---|
| 12 | n/a | |
|---|
| 13 | n/a | from StdSuites.Text_Suite import * |
|---|
| 14 | n/a | class Text_Events(Text_Suite_Events): |
|---|
| 15 | n/a | |
|---|
| 16 | n/a | pass |
|---|
| 17 | n/a | |
|---|
| 18 | n/a | |
|---|
| 19 | n/a | class text(aetools.ComponentItem): |
|---|
| 20 | n/a | """text - independent text view objects """ |
|---|
| 21 | n/a | want = 'ctxt' |
|---|
| 22 | n/a | class _Prop_beginning(aetools.NProperty): |
|---|
| 23 | n/a | """beginning - Beginning of element """ |
|---|
| 24 | n/a | which = 'bgng' |
|---|
| 25 | n/a | want = 'obj ' |
|---|
| 26 | n/a | class _Prop_end(aetools.NProperty): |
|---|
| 27 | n/a | """end - Ending of element """ |
|---|
| 28 | n/a | which = 'end ' |
|---|
| 29 | n/a | want = 'obj ' |
|---|
| 30 | n/a | class _Prop_infront(aetools.NProperty): |
|---|
| 31 | n/a | """infront - Immediately before element """ |
|---|
| 32 | n/a | which = 'pBef' |
|---|
| 33 | n/a | want = 'obj ' |
|---|
| 34 | n/a | class _Prop_justbehind(aetools.NProperty): |
|---|
| 35 | n/a | """justbehind - Immediately after element """ |
|---|
| 36 | n/a | which = 'pAft' |
|---|
| 37 | n/a | want = 'obj ' |
|---|
| 38 | n/a | class _Prop_updateLevel(aetools.NProperty): |
|---|
| 39 | n/a | """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. """ |
|---|
| 40 | n/a | which = 'pUpL' |
|---|
| 41 | n/a | want = 'long' |
|---|
| 42 | n/a | # element 'stys' as ['indx', 'name'] |
|---|
| 43 | n/a | |
|---|
| 44 | n/a | class styleset(aetools.ComponentItem): |
|---|
| 45 | n/a | """styleset - A style \xd2set\xd3 that may be used repeatedly in text objects. """ |
|---|
| 46 | n/a | want = 'stys' |
|---|
| 47 | n/a | class _Prop_color(aetools.NProperty): |
|---|
| 48 | n/a | """color - the color """ |
|---|
| 49 | n/a | which = 'colr' |
|---|
| 50 | n/a | want = 'RGB ' |
|---|
| 51 | n/a | class _Prop_font(aetools.NProperty): |
|---|
| 52 | n/a | """font - font name """ |
|---|
| 53 | n/a | which = 'font' |
|---|
| 54 | n/a | want = 'TEXT' |
|---|
| 55 | n/a | class _Prop_name(aetools.NProperty): |
|---|
| 56 | n/a | """name - style name """ |
|---|
| 57 | n/a | which = 'pnam' |
|---|
| 58 | n/a | want = 'TEXT' |
|---|
| 59 | n/a | class _Prop_size(aetools.NProperty): |
|---|
| 60 | n/a | """size - the size in points """ |
|---|
| 61 | n/a | which = 'ptsz' |
|---|
| 62 | n/a | want = 'long' |
|---|
| 63 | n/a | class _Prop_style(aetools.NProperty): |
|---|
| 64 | n/a | """style - the text styles or face attributes """ |
|---|
| 65 | n/a | which = 'txst' |
|---|
| 66 | n/a | want = 'tsty' |
|---|
| 67 | n/a | class _Prop_writing_code(aetools.NProperty): |
|---|
| 68 | n/a | """writing code - the script system and language """ |
|---|
| 69 | n/a | which = 'psct' |
|---|
| 70 | n/a | want = 'tsty' |
|---|
| 71 | n/a | |
|---|
| 72 | n/a | stylesets = styleset |
|---|
| 73 | n/a | text._superclassnames = [] |
|---|
| 74 | n/a | text._privpropdict = { |
|---|
| 75 | n/a | 'beginning' : _Prop_beginning, |
|---|
| 76 | n/a | 'end' : _Prop_end, |
|---|
| 77 | n/a | 'infront' : _Prop_infront, |
|---|
| 78 | n/a | 'justbehind' : _Prop_justbehind, |
|---|
| 79 | n/a | 'updateLevel' : _Prop_updateLevel, |
|---|
| 80 | n/a | } |
|---|
| 81 | n/a | text._privelemdict = { |
|---|
| 82 | n/a | 'styleset' : styleset, |
|---|
| 83 | n/a | } |
|---|
| 84 | n/a | styleset._superclassnames = [] |
|---|
| 85 | n/a | styleset._privpropdict = { |
|---|
| 86 | n/a | 'color' : _Prop_color, |
|---|
| 87 | n/a | 'font' : _Prop_font, |
|---|
| 88 | n/a | 'name' : _Prop_name, |
|---|
| 89 | n/a | 'size' : _Prop_size, |
|---|
| 90 | n/a | 'style' : _Prop_style, |
|---|
| 91 | n/a | 'writing_code' : _Prop_writing_code, |
|---|
| 92 | n/a | } |
|---|
| 93 | n/a | styleset._privelemdict = { |
|---|
| 94 | n/a | } |
|---|
| 95 | n/a | |
|---|
| 96 | n/a | # |
|---|
| 97 | n/a | # Indices of types declared in this module |
|---|
| 98 | n/a | # |
|---|
| 99 | n/a | _classdeclarations = { |
|---|
| 100 | n/a | 'ctxt' : text, |
|---|
| 101 | n/a | 'stys' : styleset, |
|---|
| 102 | n/a | } |
|---|
| 103 | n/a | |
|---|
| 104 | n/a | _propdeclarations = { |
|---|
| 105 | n/a | 'bgng' : _Prop_beginning, |
|---|
| 106 | n/a | 'colr' : _Prop_color, |
|---|
| 107 | n/a | 'end ' : _Prop_end, |
|---|
| 108 | n/a | 'font' : _Prop_font, |
|---|
| 109 | n/a | 'pAft' : _Prop_justbehind, |
|---|
| 110 | n/a | 'pBef' : _Prop_infront, |
|---|
| 111 | n/a | 'pUpL' : _Prop_updateLevel, |
|---|
| 112 | n/a | 'pnam' : _Prop_name, |
|---|
| 113 | n/a | 'psct' : _Prop_writing_code, |
|---|
| 114 | n/a | 'ptsz' : _Prop_size, |
|---|
| 115 | n/a | 'txst' : _Prop_style, |
|---|
| 116 | n/a | } |
|---|
| 117 | n/a | |
|---|
| 118 | n/a | _compdeclarations = { |
|---|
| 119 | n/a | } |
|---|
| 120 | n/a | |
|---|
| 121 | n/a | _enumdeclarations = { |
|---|
| 122 | n/a | } |
|---|