2002-10-03 19:28:09 +00:00
|
|
|
/*
|
|
|
|
The contents of this file are subject to the AMP Open Community License
|
|
|
|
Version 1.0 (the "License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License on the AMP web site
|
|
|
|
(http://www.tibet.iteso.mx/Guatemala/).
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
License for the specific terms governing rights and limitations under the
|
|
|
|
License.
|
|
|
|
|
|
|
|
The Initial Developer of this software is Andres Montano Pellegrini. Portions
|
|
|
|
created by Andres Montano Pellegrini are Copyright 2001 Andres Montano
|
|
|
|
Pellegrini. All Rights Reserved.
|
|
|
|
|
|
|
|
Contributor(s): ______________________________________.
|
|
|
|
*/
|
|
|
|
package org.thdl.tib.scanner;
|
|
|
|
|
|
|
|
import java.awt.*;
|
|
|
|
import java.awt.event.*;
|
|
|
|
import javax.swing.*;
|
|
|
|
import javax.swing.event.*;
|
|
|
|
import javax.swing.table.*;
|
2003-08-09 08:00:58 +00:00
|
|
|
import org.thdl.tib.input.*;
|
|
|
|
import org.thdl.util.*;
|
2002-10-03 19:28:09 +00:00
|
|
|
|
|
|
|
/** Graphical interfase to be used by applications and applets
|
|
|
|
to input a Tibetan text (in Roman or Tibetan script) and
|
2002-11-03 08:56:11 +00:00
|
|
|
display the words (in Roman or Tibetan script) with their
|
2002-10-03 19:28:09 +00:00
|
|
|
definitions (in Roman script). Uses the THDL inputting system.
|
|
|
|
|
|
|
|
@author Andrés Montano Pellegrini
|
2002-11-03 08:56:11 +00:00
|
|
|
@see WindowScannerFilter
|
|
|
|
@see AppletScannerFilter
|
2002-10-03 19:28:09 +00:00
|
|
|
*/
|
2003-08-09 08:00:58 +00:00
|
|
|
public class DuffScannerPanel extends ScannerPanel implements ItemListener
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
private TextArea fullDef, txtInput;
|
|
|
|
private DuffPane duffInput;
|
|
|
|
private JPanel inputPanel;
|
|
|
|
|
|
|
|
private JScrollPane listDef;
|
|
|
|
// private Font tibetanFont;
|
|
|
|
private DictionaryTable table;
|
|
|
|
|
|
|
|
private DictionaryTableModel model;
|
|
|
|
|
|
|
|
boolean showingTibetan;
|
2003-08-09 08:00:58 +00:00
|
|
|
|
|
|
|
private PreferenceWindow prefWindow;
|
|
|
|
private Choice script, keyboard;
|
|
|
|
|
|
|
|
/** the middleman that keeps code regarding Tibetan keyboards
|
|
|
|
* clean */
|
|
|
|
final static JskadKeyboardManager keybdMgr;
|
|
|
|
|
|
|
|
static {
|
|
|
|
try {
|
|
|
|
keybdMgr
|
|
|
|
= new JskadKeyboardManager(JskadKeyboardFactory.getAllAvailableJskadKeyboards());
|
|
|
|
} catch (Exception e) {
|
|
|
|
throw new ThdlLazyException(e);
|
|
|
|
}
|
|
|
|
}
|
2002-10-03 19:28:09 +00:00
|
|
|
|
|
|
|
public DuffScannerPanel(String file)
|
|
|
|
{
|
2003-08-09 08:00:58 +00:00
|
|
|
super(file, true);
|
|
|
|
Panel panel1, panel2, toolBar;
|
|
|
|
int i;
|
2003-08-14 14:16:23 +00:00
|
|
|
Font f;
|
2003-08-09 08:00:58 +00:00
|
|
|
|
|
|
|
prefWindow = null;
|
|
|
|
|
2003-03-30 17:09:09 +00:00
|
|
|
panel2 = new Panel(new BorderLayout());
|
|
|
|
panel1 = getDictPanel();
|
|
|
|
if (panel1!=null) panel2.add (panel1, BorderLayout.NORTH);
|
2002-10-03 19:28:09 +00:00
|
|
|
panel1 = new Panel(new GridLayout(3,1));
|
|
|
|
/* Looks up tibcodes in directory of applet. In order
|
|
|
|
to work through a proxy store all the applet classes toghether
|
|
|
|
with tibcodes.ini in a jar file. */
|
|
|
|
duffInput = new DuffPane();
|
|
|
|
duffInput.disableRoman();
|
2003-08-14 14:16:23 +00:00
|
|
|
f = new Font(duffInput.getRomanFontFamily(), Font.PLAIN, duffInput.getRomanFontSize());
|
2002-10-03 19:28:09 +00:00
|
|
|
|
|
|
|
JPanel jpanel = new JPanel(new GridLayout(1,1));
|
|
|
|
JScrollPane jsp = new JScrollPane(duffInput, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
|
|
|
|
jpanel.add(jsp);
|
|
|
|
inputPanel = new JPanel(new CardLayout());
|
|
|
|
inputPanel.add(jpanel, "1");
|
|
|
|
|
|
|
|
txtInput = new TextArea("",0,0,TextArea.SCROLLBARS_VERTICAL_ONLY);
|
2003-08-14 14:16:23 +00:00
|
|
|
txtInput.setFont(f);
|
2002-10-03 19:28:09 +00:00
|
|
|
inputPanel.add(txtInput, "2");
|
|
|
|
panel1.add(inputPanel);
|
|
|
|
|
|
|
|
fullDef = new TextArea("",0,0,TextArea.SCROLLBARS_VERTICAL_ONLY);
|
|
|
|
fullDef.setEditable(false);
|
2003-08-14 14:16:23 +00:00
|
|
|
fullDef.setFont(f);
|
2002-10-03 19:28:09 +00:00
|
|
|
model = new DictionaryTableModel(null);
|
|
|
|
table = new DictionaryTable(model, fullDef);
|
|
|
|
table.activateTibetan(true);
|
2003-08-14 14:16:23 +00:00
|
|
|
table.setRomanFont(f);
|
2002-10-03 19:28:09 +00:00
|
|
|
listDef = new JScrollPane(table);
|
|
|
|
|
|
|
|
panel1.add(listDef);
|
|
|
|
panel1.add(fullDef);
|
2003-03-30 17:09:09 +00:00
|
|
|
panel2.add(panel1, BorderLayout.CENTER);
|
|
|
|
add(panel2, BorderLayout.CENTER);
|
2002-10-03 19:28:09 +00:00
|
|
|
showingTibetan = true;
|
2003-08-09 08:00:58 +00:00
|
|
|
|
|
|
|
toolBar = getToolBar();
|
|
|
|
toolBar.setLayout(new FlowLayout());
|
|
|
|
toolBar.add(new Label("Display:"));
|
|
|
|
|
|
|
|
script = new Choice();
|
|
|
|
script.add("Tibetan script");
|
|
|
|
script.add("Roman script");
|
|
|
|
toolBar.add(script);
|
|
|
|
script.addItemListener(this);
|
|
|
|
|
|
|
|
toolBar.add(new Label("Keyboard:"));
|
2002-10-03 19:28:09 +00:00
|
|
|
|
2003-08-09 08:00:58 +00:00
|
|
|
keyboard = new Choice();
|
|
|
|
String keyboardNames[] = keybdMgr.getIdentifyingStrings();
|
|
|
|
for (i=0; i<keyboardNames.length; i++)
|
|
|
|
keyboard.add(keyboardNames[i]);
|
|
|
|
|
|
|
|
int initialKeyboard
|
|
|
|
= ThdlOptions.getIntegerOption("thdl.default.tibetan.keyboard", 0);
|
|
|
|
try {
|
|
|
|
keyboard.select(initialKeyboard);
|
|
|
|
} catch (IllegalArgumentException e) {
|
|
|
|
initialKeyboard = 0; // good ol' Wylie
|
|
|
|
keyboard.select(initialKeyboard);
|
|
|
|
}
|
|
|
|
keybdMgr.elementAt(initialKeyboard).activate(duffInput);
|
|
|
|
|
|
|
|
keyboard.addItemListener(this);
|
|
|
|
toolBar.add(keyboard);
|
2002-10-03 19:28:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void addFocusListener(FocusListener fl)
|
|
|
|
{
|
|
|
|
txtInput.addFocusListener(fl);
|
|
|
|
duffInput.addFocusListener(fl);
|
|
|
|
fullDef.addFocusListener(fl);
|
|
|
|
}
|
|
|
|
|
2003-08-09 08:00:58 +00:00
|
|
|
public void itemStateChanged(ItemEvent e)
|
|
|
|
{
|
|
|
|
Object obj = e.getSource();
|
|
|
|
if (obj instanceof Choice)
|
|
|
|
{
|
|
|
|
Choice ch = (Choice) obj;
|
|
|
|
if (ch == script)
|
|
|
|
{
|
|
|
|
boolean useTibetan = (ch.getSelectedIndex()==0);
|
|
|
|
this.setWylieInput(!useTibetan);
|
|
|
|
keyboard.setEnabled(useTibetan);
|
|
|
|
}
|
|
|
|
else if (ch == keyboard)
|
|
|
|
{
|
|
|
|
int ki = ch.getSelectedIndex();
|
|
|
|
keybdMgr.elementAt(ki).activate(duffInput);
|
|
|
|
ThdlOptions.setUserPreference("thdl.default.tibetan.keyboard", ki);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-03 19:28:09 +00:00
|
|
|
/* public void printAllDefs()
|
|
|
|
{
|
|
|
|
|
|
|
|
Word word;
|
|
|
|
int i;
|
|
|
|
GridBagConstraints gb1 = new GridBagConstraints(), gb2 = new GridBagConstraints();
|
|
|
|
JTextArea jtext;
|
|
|
|
TextArea text;
|
|
|
|
GridBagLayout grid = new GridBagLayout();
|
|
|
|
|
|
|
|
if (panelOutput!=null)
|
|
|
|
defPane.remove(panelOutput);
|
|
|
|
|
|
|
|
panelOutput = new Panel(grid);
|
|
|
|
gb1.weightx = 1;
|
|
|
|
gb2.weightx = 4;
|
|
|
|
gb1.gridwidth = GridBagConstraints.RELATIVE;
|
|
|
|
gb2.gridwidth = GridBagConstraints.REMAINDER;
|
|
|
|
|
|
|
|
for (i=0; i<array.length; i++)
|
|
|
|
{
|
|
|
|
word = (Word) array[i];
|
|
|
|
jtext = new JTextArea(wd.getDuff(new TibetanString(word.getWylie())));
|
|
|
|
jtext.setFont(tibetanFont);
|
|
|
|
grid.setConstraints(jtext, gb1);
|
|
|
|
panelOutput.add(jtext);
|
|
|
|
|
|
|
|
text = new TextArea(word.getDef());
|
|
|
|
text.
|
|
|
|
grid.setConstraints(text, gb2);
|
|
|
|
panelOutput.add(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
defPane.add(panelOutput);
|
|
|
|
}*/
|
|
|
|
|
|
|
|
public void clear()
|
|
|
|
{
|
|
|
|
txtInput.setText("");
|
|
|
|
duffInput.setText("");
|
|
|
|
fullDef.setText("");
|
|
|
|
model.newSearch(null);
|
|
|
|
table.tableChanged(new TableModelEvent(model));
|
|
|
|
table.repaint();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void translate()
|
|
|
|
{
|
|
|
|
String in;
|
|
|
|
setDicts(scanner.getDictionarySource());
|
|
|
|
|
|
|
|
in = "";
|
|
|
|
if (showingTibetan)
|
2003-07-01 22:52:18 +00:00
|
|
|
in = duffInput.getWylie(new boolean[] { false });
|
2002-10-03 19:28:09 +00:00
|
|
|
else
|
|
|
|
in = txtInput.getText();
|
|
|
|
|
|
|
|
if (!in.equals(""))
|
|
|
|
{
|
|
|
|
doingStatus("Translating...");
|
|
|
|
scanner.scanBody(in);
|
|
|
|
scanner.finishUp();
|
2003-08-03 06:28:22 +00:00
|
|
|
model.newSearch(scanner.getWordArray());
|
2002-10-03 19:28:09 +00:00
|
|
|
// printAllDefs();
|
|
|
|
scanner.clearTokens();
|
|
|
|
returnStatusToNorm();
|
|
|
|
fullDef.setText("");
|
|
|
|
/* ListSelectionModel lsm = (ListSelectionModel)table.getSelectionModel();
|
|
|
|
if (!lsm.isSelectionEmpty())
|
|
|
|
{
|
|
|
|
int selectedRow = lsm.getMinSelectionIndex();
|
|
|
|
//TableModel tm = table.getModel();
|
|
|
|
if (selectedRow<model.getRowCount())
|
|
|
|
fullDef.setText(model.getValueAt(selectedRow, 1).toString());
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
model.newSearch(null);
|
|
|
|
fullDef.setText("");
|
|
|
|
}
|
|
|
|
table.tableChanged(new TableModelEvent(model));
|
|
|
|
table.repaint();
|
|
|
|
}
|
|
|
|
|
2003-03-30 17:09:09 +00:00
|
|
|
public void setWylieInput(boolean enabled)
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
CardLayout cl = (CardLayout) inputPanel.getLayout();
|
2003-03-30 17:09:09 +00:00
|
|
|
if (!enabled && !showingTibetan)
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
String s = txtInput.getText();
|
|
|
|
/* int posEnter = s.indexOf('\n');
|
|
|
|
if (posEnter > 0)
|
|
|
|
s = s.substring(0,posEnter);*/
|
|
|
|
duffInput.newDocument();
|
|
|
|
if (!s.equals(""))
|
|
|
|
duffInput.toTibetanMachineWeb(s, 0);
|
|
|
|
table.activateTibetan(true);
|
|
|
|
cl.first(inputPanel);
|
|
|
|
showingTibetan = true;
|
|
|
|
}
|
2003-03-30 17:09:09 +00:00
|
|
|
if (enabled && showingTibetan)
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
2003-07-01 22:52:18 +00:00
|
|
|
txtInput.setText(duffInput.getWylie(new boolean[] { false }));
|
2002-10-03 19:28:09 +00:00
|
|
|
table.activateTibetan(false);
|
|
|
|
cl.last(inputPanel);
|
|
|
|
showingTibetan = false;
|
|
|
|
}
|
|
|
|
table.repaint();
|
2003-08-09 08:00:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setPreferences()
|
|
|
|
{
|
|
|
|
Font f;
|
|
|
|
if (prefWindow==null) prefWindow = new PreferenceWindow(this, duffInput);
|
|
|
|
prefWindow.show();
|
|
|
|
f = new Font(prefWindow.getRomanFont(), Font.PLAIN, prefWindow.getRomanFontSize());
|
|
|
|
fullDef.setFont(f);
|
|
|
|
txtInput.setFont(f);
|
|
|
|
table.setTibetanFontSize(prefWindow.getTibetanFontSize());
|
|
|
|
table.setRomanFont(f);
|
|
|
|
table.repaint();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-03 19:28:09 +00:00
|
|
|
}
|