home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Wonderland.java < prev    next >
Text File  |  1998-05-08  |  8KB  |  248 lines

  1.  
  2.  
  3. import java.util.Locale;
  4. import java.util.MissingResourceException;
  5. import java.util.ResourceBundle;
  6.  
  7. import java.net.URL;
  8. import java.util.Hashtable;
  9. import java.awt.Color;
  10. import com.sun.java.swing.*;
  11. import com.sun.java.swing.text.*;
  12.  
  13. /**
  14.  * hack to load attributed content
  15.  */
  16. public class Wonderland {
  17.  
  18.   Wonderland(DefaultStyledDocument doc, StyleContext styles) {
  19.     this.doc = doc;
  20.     this.styles = styles;
  21.     runAttr = new Hashtable();
  22.   }
  23.  
  24.   void loadDocument() {
  25.     createStyles();
  26.     for (int i = 0; i < data.length; i++) {
  27.       Paragraph p = data[i];
  28.       addParagraph(p);
  29.     }
  30.   }
  31.  
  32.   void addParagraph(Paragraph p) {
  33.     try {
  34.       Style s = null;
  35.       for (int i = 0; i < p.data.length; i++) {
  36.     Run run = p.data[i];
  37.     s = (Style) runAttr.get(run.attr);
  38.     doc.insertString(doc.getLength(), run.content, s);
  39.       }
  40.  
  41.       // set logical style
  42.       Style ls = styles.getStyle(p.logical);
  43.       doc.setLogicalStyle(doc.getLength() - 1, ls);
  44.       doc.insertString(doc.getLength(), "\n", null);
  45.     } catch (BadLocationException e) {
  46.       System.err.println("Internal error: " + e);
  47.     }
  48.   }
  49.  
  50.   void createStyles() {
  51.     // no attributes defined
  52.     Style s = styles.addStyle(null, null);
  53.     runAttr.put("none", s);
  54.     s = styles.addStyle(null, null);
  55.     StyleConstants.setItalic(s, true);
  56.     StyleConstants.setForeground(s, new Color(153,153,102));
  57.     runAttr.put("cquote", s); // catepillar quote
  58.  
  59.     s = styles.addStyle(null, null);
  60.     StyleConstants.setItalic(s, true);
  61.     StyleConstants.setForeground(s, new Color(51,102,153));
  62.     runAttr.put("aquote", s); // alice quote
  63.     
  64.     try {
  65.             ResourceBundle resources = ResourceBundle.getBundle("Stylepad", 
  66.                                 Locale.getDefault());
  67.         s = styles.addStyle(null, null);
  68.         Icon alice = new ImageIcon(resources.getString("aliceGif"));    
  69.         StyleConstants.setIcon(s, alice);
  70.         runAttr.put("alice", s); // alice
  71.  
  72.         s = styles.addStyle(null, null);
  73.         Icon caterpillar = new ImageIcon(resources.getString("caterpillarGif"));    
  74.         StyleConstants.setIcon(s, caterpillar);
  75.         runAttr.put("caterpillar", s); // caterpillar
  76.  
  77.         s = styles.addStyle(null, null);
  78.         Icon hatter = new ImageIcon(resources.getString("hatterGif"));    
  79.         StyleConstants.setIcon(s, hatter);
  80.         runAttr.put("hatter", s); // hatter
  81.  
  82.         
  83.     } catch (MissingResourceException mre) {
  84.       // can't display image
  85.     }
  86.  
  87.     Style def = styles.getStyle(StyleContext.DEFAULT_STYLE);
  88.  
  89.     Style heading = styles.addStyle("heading", def);
  90.     StyleConstants.setFontFamily(heading, "Helvetica");
  91.     StyleConstants.setBold(heading, true);
  92.     StyleConstants.setAlignment(heading, StyleConstants.ALIGN_CENTER);
  93.     StyleConstants.setSpaceAbove(heading, 10);
  94.     StyleConstants.setSpaceBelow(heading, 10);
  95.     StyleConstants.setFontSize(heading, 18);
  96.  
  97.     // Title 
  98.     Style sty = styles.addStyle("title", heading);
  99.     StyleConstants.setFontSize(sty, 32);
  100.  
  101.     // edition
  102.     sty = styles.addStyle("edition", heading);
  103.     StyleConstants.setFontSize(sty, 16);
  104.  
  105.     // author
  106.     sty = styles.addStyle("author", heading);
  107.     StyleConstants.setItalic(sty, true);
  108.     StyleConstants.setSpaceBelow(sty, 25);
  109.  
  110.     // subtitle
  111.     sty = styles.addStyle("subtitle", heading);
  112.     StyleConstants.setSpaceBelow(sty, 35);
  113.  
  114.     // normal 
  115.     sty = styles.addStyle("normal", def);
  116.     StyleConstants.setLeftIndent(sty, 10);
  117.     StyleConstants.setRightIndent(sty, 10);
  118.     StyleConstants.setFontFamily(sty, "Helvetica");
  119.     StyleConstants.setFontSize(sty, 14);
  120.     StyleConstants.setSpaceAbove(sty, 4);
  121.     StyleConstants.setSpaceBelow(sty, 4);
  122.   }
  123.  
  124.   DefaultStyledDocument doc; 
  125.   StyleContext styles;
  126.   Hashtable runAttr;
  127.   
  128.   static class Paragraph {
  129.     Paragraph(String logical, Run[] data) {
  130.       this.logical = logical;
  131.       this.data = data;
  132.     }
  133.     String logical;
  134.     Run[] data;
  135.   }
  136.  
  137.   static class Run {
  138.     Run(String attr, String content) {
  139.       this.attr = attr;
  140.       this.content = content;
  141.     }
  142.     String attr;
  143.     String content;
  144.   }
  145.  
  146.   Paragraph[] data = new Paragraph[] {
  147.     new Paragraph("title", new Run[] {
  148.       new Run("none", "ALICE'S ADVENTURES IN WONDERLAND")
  149.     }),
  150.     new Paragraph("author", new Run[] {
  151.       new Run("none", "Lewis Carroll")
  152.     }),
  153.     new Paragraph("heading", new Run[] {
  154.       new Run("alice", " ")
  155.     }),
  156.     new Paragraph("edition", new Run[] {
  157.       new Run("none", "THE MILLENNIUM FULCRUM EDITION 3.0")
  158.     }),
  159.     new Paragraph("heading", new Run[] {
  160.       new Run("none", "CHAPTER V")
  161.     }),
  162.     new Paragraph("subtitle", new Run[] {
  163.       new Run("none", "Advice from a Caterpillar")
  164.     }),
  165.     new Paragraph("normal", new Run[] {
  166.       new Run("none", " "),
  167.     }),
  168.     new Paragraph("normal", new Run[] {
  169.       new Run("none", "The Caterpillar and Alice looked at each other for some time in silence:  at last the Caterpillar took the hookah out of its mouth, and addressed her in a languid, sleepy voice.")
  170.     }),
  171.     new Paragraph("normal", new Run[] {
  172.       new Run("cquote", "Who are YOU?  "),
  173.       new Run("none", "said the Caterpillar.")
  174.     }),
  175.     new Paragraph("normal", new Run[] {
  176.       new Run("none", "This was not an encouraging opening for a conversation.  Alice replied, rather shyly, "),
  177.       new Run("aquote", "I--I hardly know, sir, just at present--at least I know who I WAS when I got up this morning, but I think I must have been changed several times since then. "),
  178.     }),
  179.     new Paragraph("heading", new Run[] {
  180.       new Run("caterpillar", " ")
  181.     }),
  182.     new Paragraph("normal", new Run[] {
  183.       new Run("cquote", "What do you mean by that? "),
  184.       new Run("none", " said the Caterpillar sternly.  "),
  185.       new Run("cquote", "Explain yourself!"),
  186.     }),
  187.     new Paragraph("normal", new Run[] {
  188.       new Run("aquote", "I can't explain MYSELF, I'm afraid, sir"),
  189.       new Run("none", " said Alice, "),
  190.       new Run("aquote", "because I'm not myself, you see."),
  191.     }),
  192.     new Paragraph("normal", new Run[] {
  193.       new Run("cquote", "I don't see,"),
  194.       new Run("none", " said the Caterpillar."),
  195.     }),
  196.     new Paragraph("normal", new Run[] {
  197.       new Run("aquote", "I'm afraid I can't put it more clearly,  "),
  198.       new Run("none", "Alice replied very politely, "),
  199.       new Run("aquote", "for I can't understand it myself to begin with; and being so many different sizes in a day is very confusing."),
  200.     }),
  201.     new Paragraph("normal", new Run[] {
  202.       new Run("cquote", "It isn't,  "),
  203.       new Run("none", "said the Caterpillar.")
  204.     }),
  205.     new Paragraph("normal", new Run[] {
  206.       new Run("aquote", "Well, perhaps you haven't found it so yet,"),
  207.       new Run("none", " said Alice; "),
  208.       new Run("aquote", "but when you have to turn into a chrysalis--you will some day, you know--and then after that into a butterfly, I should think you'll feel it a little queer, won't you?")
  209.     }),
  210.     new Paragraph("normal", new Run[] {
  211.       new Run("cquote", "Not a bit, "),
  212.       new Run("none", "said the Caterpillar.")
  213.     }),
  214.     new Paragraph("normal", new Run[] {
  215.       new Run("aquote", "Well, perhaps your feelings may be different,"),
  216.       new Run("none", " said Alice; "),
  217.       new Run("aquote", "all I know is, it would feel very queer to ME."),
  218.     }),
  219.     new Paragraph("normal", new Run[] {
  220.       new Run("cquote", "You!"),
  221.       new Run("none", " said the Caterpillar contemptuously.  "),
  222.       new Run("cquote", "Who are YOU?"),
  223.     }),
  224.     new Paragraph("normal", new Run[] {
  225.       new Run("normal", "Which brought them back again to the beginning of the conversation.  Alice felt a little irritated at the Caterpillar's making such VERY short remarks, and she drew herself up and said, very gravely, "),
  226.       new Run("aquote", "I think, you ought to tell me who YOU are, first."),
  227.     }),
  228.     new Paragraph("normal", new Run[] {
  229.       new Run("cquote", "Why?  "),
  230.       new Run("none", "said the Caterpillar."),
  231.     }),
  232.     new Paragraph("heading", new Run[] {
  233.       new Run("hatter", " ")
  234.     }),
  235.     new Paragraph("normal", new Run[] {
  236.       new Run("none", " "),
  237.     }),
  238.     new Paragraph("normal", new Run[] {
  239.       new Run("none", " "),
  240.     }),
  241.     new Paragraph("normal", new Run[] {
  242.       new Run("none", " "),
  243.     })
  244.   };
  245.  
  246.  
  247. }
  248.