From dc03083433b44fb1f0e77f297e15d619b972d6f0 Mon Sep 17 00:00:00 2001 From: dchandler Date: Mon, 30 Jun 2003 02:22:09 +0000 Subject: [PATCH] I've validated by hand the TM<->TMW mappings. A few things changed, so no previous TM->TMW conversions can be trusted. --- source/org/thdl/tib/input/Jskad.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/source/org/thdl/tib/input/Jskad.java b/source/org/thdl/tib/input/Jskad.java index 01a2625..14704d8 100644 --- a/source/org/thdl/tib/input/Jskad.java +++ b/source/org/thdl/tib/input/Jskad.java @@ -490,6 +490,20 @@ public class Jskad extends JPanel implements DocumentListener { toolsMenu.add(DevelItem); } +// I used this when I validated the TM<->TMW mappings; I made +// dp.romanAttributeSet public to do so: +// +// if (ThdlOptions.getBooleanOption("thdl.add.developer.options.to.menu")) { +// toolsMenu.addSeparator(); +// JMenuItem DevelItem = new JMenuItem("Insert All TM Glyphs in Doc"); +// DevelItem.addActionListener(new ThdlActionListener() { +// public void theRealActionPerformed(ActionEvent e) { +// ((TibetanDocument)dp.getDocument()).insertAllTMGlyphs2(dp.romanAttributeSet); +// } +// }); +// toolsMenu.add(DevelItem); +// } + if (ThdlOptions.getBooleanOption("thdl.add.developer.options.to.menu")) { toolsMenu.addSeparator(); JMenuItem DevelItem = new JMenuItem("Debug dump to standard output");