字体:字体选择 : 字体 « 二维图形 « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » 二维图形 » 字体 
16. 23. 10. 字体:字体选择
字体:字体选择
import java.awt.BorderLayout;
import java.awt.Font;
import java.awt.GraphicsEnvironment;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class FontStyleSizeFamilyChooser extends JFrame {
  public static void main(String[] args) {
    new FontStyleSizeFamilyChooser();
  }

  private JLabel sampleText = new JLabel("Label");

  private JComboBox fontComboBox;

  private JComboBox sizeComboBox;

  private JCheckBox boldCheck, italCheck;

  private String[] fonts;

  public FontStyleSizeFamilyChooser() {
    this.setSize(500150);
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    FontListener fl = new FontListener();
    this.add(sampleText, BorderLayout.NORTH);
    GraphicsEnvironment g = GraphicsEnvironment.getLocalGraphicsEnvironment();
    fonts = g.getAvailableFontFamilyNames();

    JPanel controlPanel = new JPanel();
    fontComboBox = new JComboBox(fonts);
    fontComboBox.addActionListener(fl);
    controlPanel.add(new JLabel("Family: "));
    controlPanel.add(fontComboBox);

    Integer[] sizes = 789101112141820222436 };

    sizeComboBox = new JComboBox(sizes);
    sizeComboBox.setSelectedIndex(5);
    sizeComboBox.addActionListener(fl);
    controlPanel.add(new JLabel("Size: "));
    controlPanel.add(sizeComboBox);

    boldCheck = new JCheckBox("Bold");
    boldCheck.addActionListener(fl);
    controlPanel.add(boldCheck);

    italCheck = new JCheckBox("Ital");
    italCheck.addActionListener(fl);
    controlPanel.add(italCheck);

    this.add(controlPanel, BorderLayout.SOUTH);
    fl.updateText();

    this.setVisible(true);
  }

  private class FontListener implements ActionListener {
    public void actionPerformed(ActionEvent e) {
      updateText();
    }

    public void updateText() {
      String name = (StringfontComboBox.getSelectedItem();

      Integer size = (IntegersizeComboBox.getSelectedItem();

      int style;
      if (boldCheck.isSelected() && italCheck.isSelected())
        style = Font.BOLD | Font.ITALIC;
      else if (boldCheck.isSelected())
        style = Font.BOLD;
      else if (italCheck.isSelected())
        style = Font.ITALIC;
      else
        style = Font.PLAIN;

      Font f = new Font(name, style, size.intValue());
      sampleText.setFont(f);
    }
  }
}
16. 23. 字体
16. 23. 1. java.awt.Fontjava.awt.Font
16. 23. 2. 创建serif字型创建serif字型
16. 23. 3. 创建粗体和斜体字体创建粗体和斜体字体
16. 23. 4. 显示字体鼠标点击
16. 23. 5. To change the size and/or style of a font, you call its deriveFont() methodTo change the size and/or style of a font, you call its deriveFont() method
16. 23. 6. 显示字体信息。
16. 23. 7. 系统所有可用的字体
16. 23. 8. 获得字体名称
16. 23. 9. 查看所有的系统字体查看所有的系统字体
16. 23. 10. 字体:字体选择字体:字体选择
16. 23. 11. 在网格上显示字体
16. 23. 12. 从字体创造字体
16. 23. 13. 系统字体显示系统字体显示
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.