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

📄 imfdemo.java

📁 jdk 6.0的api文档...很难找到哦
💻 JAVA
字号:
/* * Copyright 2002 Sun Microsystems, Inc. All  Rights Reserved. *   * Redistribution and use in source and binary forms, with or  * without modification, are permitted provided that the following  * conditions are met: *  * -Redistributions of source code must retain the above copyright   *  notice, this list of conditions and the following disclaimer. *  * -Redistribution in binary form must reproduce the above copyright  *  notice, this list of conditions and the following disclaimer in  *  the documentation and/or other materials provided with the  *  distribution. *   * Neither the name of Sun Microsystems, Inc. or the names of  * contributors may be used to endorse or promote products derived  * from this software without specific prior written permission. *  * This software is provided "AS IS," without a warranty of any  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY  * DAMAGES OR LIABILITIES  SUFFERED BY LICENSEE AS A RESULT OF OR  * RELATING TO USE, MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR  * ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE  * FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT,  * SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER  * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF  * THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. *   * You acknowledge that Software is not designed, licensed or  * intended for use in the design, construction, operation or  * maintenance of any nuclear facility.  */import java.applet.Applet;import java.awt.Frame;import java.awt.GridLayout;import java.awt.Menu;import java.awt.MenuBar;import java.awt.MenuItem;import java.awt.Toolkit;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.event.WindowAdapter;import java.awt.event.WindowEvent;import java.awt.event.WindowListener;import java.util.Locale;public class IMFDemo extends Applet implements ActionListener {    public void init() {        addComponents();    }        public void start() {    }        public void stop() {    }        public void addComponents() {        setLayout(new GridLayout(4, 1, 10, 10));        add(new ActiveClient("Lightweight component, active client"));        add(new LWTextComponent("Lightweight component, passive client", true));        add(new LWTextComponent("Lightweight component, non-client", false));        add(new PeeredTextArea());    }    public static void main(String argv[]) {        final IMFDemo applet = new IMFDemo();        applet.init();        applet.start();        makeFrame(applet, "Input Method Framework Demo");    }    public static void makeFrame(IMFDemo applet, String title) {        Frame frame = new Frame(title);        frame.pack(); // adds peer        makeMenuBar(frame, applet);        frame.add("Center", applet);        frame.setSize(400, 400);        WindowListener listener = new AppletWindowListener(applet);        frame.addWindowListener(listener);        frame.pack();        frame.show();    }        private static void makeMenuBar(Frame frame, ActionListener listener) {        MenuBar menuBar = new MenuBar();        frame.setMenuBar(menuBar);        Menu menu;        menu = new Menu("Locale");        menuBar.add(menu);        addMenuItem(menu, "English", listener, "en");        addMenuItem(menu, "French", listener, "fr");        addMenuItem(menu, "German", listener, "de");        addMenuItem(menu, "Japanese", listener, "ja");        addMenuItem(menu, "Simplified Chinese", listener, "zh_CN");        addMenuItem(menu, "Traditional Chinese", listener, "zh_TW");        menu = new Menu("Size");        menuBar.add(menu);        addMenuItem(menu, "12", listener, "12");        addMenuItem(menu, "24", listener, "24");        addMenuItem(menu, "36", listener, "36");    }        private static void addMenuItem(Menu menu, String label, ActionListener listener, String command) {        MenuItem item = new MenuItem(label);        menu.add(item);        item.setActionCommand(command);        item.addActionListener(listener);    }        public void actionPerformed(ActionEvent event) {        String command = event.getActionCommand();        if (Character.isDigit(command.charAt(0))) {            int size = Integer.parseInt(command);            for (int i = 0; i < 3; i++) {                LWTextComponent component = (LWTextComponent) getComponent(i);                component.setFontSize(size);                component.invalidateTextLayout();                component.repaint();            }            PeeredTextArea textArea = (PeeredTextArea) getComponent(3);            textArea.setFontSize(size);            textArea.repaint();        } else {            String language, country;            if (command.length() == 2) {                language = command;                country = "";            } else {                language = command.substring(0, 2);                country = command.substring(3);            }            if (!getInputContext().selectInputMethod(new Locale(language, country))) {                Toolkit.getDefaultToolkit().beep();            }        }    }}class AppletWindowListener extends WindowAdapter {    private Applet applet;    AppletWindowListener(Applet applet) {        this.applet = applet;    }    public void windowClosing(WindowEvent e) {        e.getWindow().dispose();        System.exit(0);    }}

⌨️ 快捷键说明

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