⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imutiltest.java

📁 编辑视频文件
💻 JAVA
字号:
/* * File:     ImUtilTest.java * Project:  MPI Linguistic Application * Date:     02 May 2007 * * Copyright (C) 2001-2007  Max Planck Institute for Psycholinguistics * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package mpi.eudico.client.im;/*   DONE   - cursors instead of numbers   - cursors respect borders   - page up/down   TODO   - locales displays */import java.awt.Menu;import java.awt.MenuBar;import java.awt.MenuItem;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.event.FocusAdapter;import java.awt.event.FocusEvent;import java.awt.event.WindowEvent;import java.util.Locale;import javax.swing.JFrame;import javax.swing.JPanel;import javax.swing.JTextArea;/** * DOCUMENT ME! * $Id: ImUtilTest.java,v 1.1 2005/08/11 11:40:57 hasloe Exp $ * @author $Author: hasloe $ * @version $Revision: 1.1 $ */public class ImUtilTest extends JFrame implements ActionListener {    private Locale[] allLanguages;    private JTextArea jTextArea;    /**     * Creates a new ImUtilTest instance     *     * @throws Exception DOCUMENT ME!     */    public ImUtilTest() throws Exception {        jTextArea = new JTextArea(25, 53);        // create the page        JPanel contentPane = (JPanel) this.getContentPane();        contentPane.add(jTextArea, null);        // get the list of all kanguages.        allLanguages = ImUtil.getLanguages(jTextArea);        // create the menu        MenuBar menuBar = new MenuBar();        this.setMenuBar(menuBar);        Menu fileMenu = new Menu("File");        Menu selectLanguageMenu = new Menu("Select Language");        menuBar.add(fileMenu);        menuBar.add(selectLanguageMenu);        for (int i = 0; i < allLanguages.length; i++) {            addItem(selectLanguageMenu, allLanguages[i].getDisplayName());        }        addItem(fileMenu, "Exit");        addFocusListener(new FocusAdapter() {                public void focusGained(FocusEvent e) {                    jTextArea.requestFocus();                }            });        ImUtil.setLanguage(jTextArea, allLanguages[0]);        setLocation(60, 30);        pack();        setVisible(true);    }    /**     * DOCUMENT ME!     *     * @param a DOCUMENT ME!     *     * @throws Exception DOCUMENT ME!     */    public static void main(String[] a) throws Exception {        IUT iut = new IUT() {                public void go() throws Exception {                    new ImUtilTest();                }            };        iut.go();    }    /*       add a MenuItem to a given Menu     */    private void addItem(Menu menu, String text) {        MenuItem newItem = new MenuItem(text);        newItem.addActionListener(this);        menu.add(newItem);    }    /*       Satisfying the ActionListener interface     */    public void actionPerformed(ActionEvent e) {        String command = e.getActionCommand();        if (command.equals("Exit")) {            System.exit(0);        }        for (int i = 0; i < allLanguages.length; i++) {            if (command.equals(allLanguages[i].getDisplayName())) {                ImUtil.setLanguage(jTextArea, allLanguages[i]);                return;            }        }    }    /**     * Overridden so we can exit when window is closed     *     * @param e DOCUMENT ME!     */    protected void processWindowEvent(WindowEvent e) {        super.processWindowEvent(e);        if (e.getID() == WindowEvent.WINDOW_CLOSING) {            System.exit(0);        }    }    /**     * DOCUMENT ME!     * $Id: ImUtilTest.java,v 1.1 2005/08/11 11:40:57 hasloe Exp $     * @author $Author: hasloe $     * @version $Revision: 1.1 $     */    interface IUT {        /**         * DOCUMENT ME!         *         * @throws Exception DOCUMENT ME!         */        void go() throws Exception;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -