home *** CD-ROM | disk | FTP | other *** search
- " Array of boites for representation of various symbols "
-
- "
- *
- * symbols.self,v 1.4 1993/06/18 21:25:41 richards Exp
- *
- * /home/2user2/richards/cvs/491/aa/symbols.self,v 1.4 1993/06/18 21:25:41 richards Exp
- *
- * symbols.self,v
- # Revision 1.4 1993/06/18 21:25:41 richards
- # Moved font support into viewManager.
- # Starting to add selection stuff into window and boite.
- # Boites refer properly back to the polynomial structures.
- #
- # Revision 1.3 1993/05/31 20:27:55 richards
- # symbols has the whole greek alphabet, but some letters are not named right.
- # window.self noww uses two sub-classes of compoundView, one inside the other.
- # (Still have problem identifying them...)
- # test7 obsolete.
- # Fixed some problems with font positioning in boites and poly.
- #
- # Revision 1.2 1993/05/31 00:12:16 richards
- # May 30 checkin. Font support is nearly debugged.
- # Make use of glue now.
- # Added rational (fraction) types.
- #
- # Revision 1.1 1993/05/30 21:41:14 richards
- # Initial revision
- #
- *
- "
-
- aa traits _AddSlotsIfAbsent: (|
- symbols = ().
- |)
-
- aa prototypes _AddSlotsIfAbsent: (|
- symbols = ().
- |)
-
- aa traits symbols _Define: (|
- _ parent* = traits clonable.
- addSymbol: symName Representation: ht = (
- representations at: symName Put: ht.
- ).
- symbolNamed: symName = (
- representations at: symName
- ).
-
- copy = (| new. |
- new: clone.
- new representations: representations copyRemoveAll.
- ^new
- ).
- |)
-
- aa prototypes symbols _Define: (|
- _ parent* = aa traits symbols.
- representations <- dictionary copy.
- |)
-
- aa _AddSlotsIfAbsent: (|
- x11symbols.
- |)
-
- aa x11symbols: aa symbols copy
-
- aa x11symbols addSymbol: 'alpha' Representation: (aa boites htext symbol: 'a')
- aa x11symbols addSymbol: 'beta' Representation: (aa boites htext symbol: 'b')
- aa x11symbols addSymbol: 'xi' Representation: (aa boites htext symbol: 'c')
- aa x11symbols addSymbol: 'delta' Representation: (aa boites htext symbol: 'd')
- aa x11symbols addSymbol: 'epsilon' Representation: (aa boites htext symbol: 'e')
- aa x11symbols addSymbol: 'phi' Representation: (aa boites htext symbol: 'f')
- aa x11symbols addSymbol: 'gamma' Representation: (aa boites htext symbol: 'g')
- aa x11symbols addSymbol: 'eta' Representation: (aa boites htext symbol: 'h')
- aa x11symbols addSymbol: 'iota' Representation: (aa boites htext symbol: 'i')
- aa x11symbols addSymbol: 'psi' Representation: (aa boites htext symbol: 'j')
- aa x11symbols addSymbol: 'kappa' Representation: (aa boites htext symbol: 'k')
- aa x11symbols addSymbol: 'lambda' Representation: (aa boites htext symbol: 'l')
- aa x11symbols addSymbol: 'mu' Representation: (aa boites htext symbol: 'm')
- aa x11symbols addSymbol: 'ha' Representation: (aa boites htext symbol: 'n') "XXX"
- aa x11symbols addSymbol: 'opsilon' Representation: (aa boites htext symbol: 'o') "XXX"
- aa x11symbols addSymbol: 'pi' Representation: (aa boites htext symbol: 'p')
- aa x11symbols addSymbol: 'theta' Representation: (aa boites htext symbol: 'q')
- aa x11symbols addSymbol: 'rho' Representation: (aa boites htext symbol: 'r')
- aa x11symbols addSymbol: 'sigma' Representation: (aa boites htext symbol: 's')
- aa x11symbols addSymbol: 'tau' Representation: (aa boites htext symbol: 't')
- aa x11symbols addSymbol: 'upsilon' Representation: (aa boites htext symbol: 'u')
- aa x11symbols addSymbol: 'varomega' Representation: (aa boites htext symbol: 'v') "XXX"
- aa x11symbols addSymbol: 'omega' Representation: (aa boites htext symbol: 'w')
- aa x11symbols addSymbol: 'zeta2' Representation: (aa boites htext symbol: 'x') "XXX"
- aa x11symbols addSymbol: 'phi' Representation: (aa boites htext symbol: 'y')
- aa x11symbols addSymbol: 'zeta' Representation: (aa boites htext symbol: 'z')
-
- aa x11symbols addSymbol: 'Alpha' Representation: (aa boites htext symbol: 'A')
- aa x11symbols addSymbol: 'Beta' Representation: (aa boites htext symbol: 'B')
- aa x11symbols addSymbol: 'Xi' Representation: (aa boites htext symbol: 'C')
- aa x11symbols addSymbol: 'Delta' Representation: (aa boites htext symbol: 'D')
- aa x11symbols addSymbol: 'Epsilon' Representation: (aa boites htext symbol: 'E')
- aa x11symbols addSymbol: 'Phi' Representation: (aa boites htext symbol: 'F')
- aa x11symbols addSymbol: 'Gamma' Representation: (aa boites htext symbol: 'G')
- aa x11symbols addSymbol: 'Eta' Representation: (aa boites htext symbol: 'H')
- aa x11symbols addSymbol: 'Iota' Representation: (aa boites htext symbol: 'I')
- aa x11symbols addSymbol: 'Psi' Representation: (aa boites htext symbol: 'J')
- aa x11symbols addSymbol: 'Kappa' Representation: (aa boites htext symbol: 'K')
- aa x11symbols addSymbol: 'Lambda' Representation: (aa boites htext symbol: 'L')
- aa x11symbols addSymbol: 'Mu' Representation: (aa boites htext symbol: 'M')
- aa x11symbols addSymbol: 'Ha' Representation: (aa boites htext symbol: 'N') "XXX"
- aa x11symbols addSymbol: 'Opsilon' Representation: (aa boites htext symbol: 'O') "XXX"
- aa x11symbols addSymbol: 'Pi' Representation: (aa boites htext symbol: 'P')
- aa x11symbols addSymbol: 'Theta' Representation: (aa boites htext symbol: 'Q')
- aa x11symbols addSymbol: 'Rho' Representation: (aa boites htext symbol: 'R')
- aa x11symbols addSymbol: 'Sigma' Representation: (aa boites htext symbol: 'S')
- aa x11symbols addSymbol: 'Tau' Representation: (aa boites htext symbol: 'T')
- aa x11symbols addSymbol: 'Upsilon' Representation: (aa boites htext symbol: 'U')
- aa x11symbols addSymbol: 'Varomega' Representation: (aa boites htext symbol: 'V') "XXX"
- aa x11symbols addSymbol: 'Omega' Representation: (aa boites htext symbol: 'W')
- aa x11symbols addSymbol: 'Zeta2' Representation: (aa boites htext symbol: 'X') "XXX"
- aa x11symbols addSymbol: 'Phi' Representation: (aa boites htext symbol: 'Y')
- aa x11symbols addSymbol: 'Zeta' Representation: (aa boites htext symbol: 'Z')
-
-
-
-
-
-
-
-
-
-