从记事本创建自己的Gui字体类

时间:2018-02-24 15:48:14

标签: java swing fonts

我正在用java创建一个记事本。我需要帮助,因为我们知道记事本中有一个字体选择器选项。我想在我的记事本中添加该选项,但FontChooser类也不可用。

因此我正在创建自己的课程。 为此,我使用listItems,其中包含各种listItems,如PLAIN,BOLD,ITALIC,然后将此值设置为textField,如记事本中所示。

我的问题是java中有setFont()方法,我就像这样使用它

public void itemStateChanged(ItemEvent e)
{
    List temp=(List)e.getSource();
    if(temp==list1)
    {
        tft.setText(list1.getSelectedItem());
        tft6.setFont(new     Font(list1.getSelectedItem(),,Integer.parseInt(tft4.getText())));
    }
    else if(temp==list2)
    {
        tft2.setText(list2.getSelectedItem());
        if(tft2.getText().equalsIgnoreCase("BOLD"))
        {
            tft6.setFont(new     Font(list1.getSelectedItem(),Font.BOLD,Integer.parseInt(tft4.getText())));
        }
        else if(tft2.getText().equalsIgnoreCase("ITALIC"))
        {
            tft6.setFont(new     Font(list1.getSelectedItem(),Font.ITALIC,Integer.parseInt(tft4.getText())));           }
        else if(tft2.getText().equalsIgnoreCase("PLAIN"))
        {
            tft6.setFont(new Font(list1.getSelectedItem(),Font.PLAIN,Integer.parseInt(tft4.getText())));    
        }

    }
    else if(temp==list3)
    {

        tft4.setText(list3.getSelectedItem());
        tft6.setFont(new Font(list1.getSelectedItem(),Font.BOLD,Integer.parseInt(tft4.getText())));
    }
}

查看temp==list2

我必须一次又一次地检查tft2.eqaulsIgnoreCase() 由于Font.BOLD \ PLAIN \ ITALIC

,我可以在setFont(list1.getSelectedItem(),list2.getSelectedItem(),list3.getSelectedItem())我无法做list2.getSelectedItem()

我能做什么???

2 个答案:

答案 0 :(得分:0)

任何时候任何选项更改我认为您只想使用所有当前选项创建新的Font。然后你可以使用以下构造函数:

Font(String name, int style, int size);

另一个选项是如果你有一个基本字体,那么你可以使用以下方法将一个属性应用于字体:

font.deriveFont(...); 

这将允许您一次更改一个属性。阅读API以获取要用于要更改的属性的正确参数。

答案 1 :(得分:0)

我不能说我完全理解这个问题,但所显示的代码片段有些方面似乎曲折。特别是要求样式和字体大小作为文本字段(它还排除了同时使用粗体& 斜体)。

我建议使用粗体/斜体的复选框和字体大小的微调器。然后确定正确的字体可以简单地完成如下。

private Font getFont() {
    String name = fontFamilyBox.getSelectedItem().toString();
    int style = Font.PLAIN;
    if (boldCheckBox.isSelected()) {
        style += Font.BOLD;
    }
    if (italicCheckBox.isSelected()) {
        style += Font.ITALIC;
    }
    int size = fontSizeModel.getNumber().intValue();

    return new Font(name, style, size);
}

这是Minimal, Complete, and Verifiable example,显示了如何使用它(请在将来以此格式发布代码)。

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.border.EmptyBorder;

public class FontChooserPad {

    private JComponent ui = null;
    JComboBox<String> fontFamilyBox;
    JCheckBox boldCheckBox = new JCheckBox("Bold");
    JCheckBox italicCheckBox = new JCheckBox("Italic");
    SpinnerNumberModel fontSizeModel = new SpinnerNumberModel(20, 6, 120, 1);
    JTextArea editArea = new JTextArea(
            "The quick brown fox jumps over the lazy dog.", 4, 40);

    FontChooserPad() {
        initUI();
    }

    public final void initUI() {
        if (ui!=null) return;

        ui = new JPanel(new BorderLayout(4,4));
        ui.setBorder(new EmptyBorder(4,4,4,4));

        JPanel controls = new JPanel();
        ui.add(controls, BorderLayout.PAGE_START);

        String[] fontFamilies = GraphicsEnvironment.
                getLocalGraphicsEnvironment().getAvailableFontFamilyNames();
        fontFamilyBox = new JComboBox<>(fontFamilies);

        controls.add(new JLabel("Font"));
        controls.add(fontFamilyBox);
        controls.add(boldCheckBox);
        controls.add(italicCheckBox);
        JSpinner sizeSpinner = new JSpinner(fontSizeModel);
        controls.add(sizeSpinner);

        editArea.setWrapStyleWord(true);
        editArea.setLineWrap(true);
        ui.add(new JScrollPane(editArea));

        ActionListener fontActionListener = (ActionEvent e) -> {
            changeFont();
        };
        boldCheckBox.addActionListener(fontActionListener);
        italicCheckBox.addActionListener(fontActionListener);
        fontFamilyBox.addActionListener(fontActionListener);
        fontFamilyBox.setSelectedItem(Font.SERIF);

        ChangeListener fontChangeListener = (ChangeEvent e) -> {
            changeFont();
        };
        sizeSpinner.addChangeListener(fontChangeListener);

        changeFont();
    }

    private void changeFont() {
        editArea.setFont(getFont());
    }

    private Font getFont() {
        String name = fontFamilyBox.getSelectedItem().toString();
        int style = Font.PLAIN;
        if (boldCheckBox.isSelected()) {
            style += Font.BOLD;
        }
        if (italicCheckBox.isSelected()) {
            style += Font.ITALIC;
        }
        int size = fontSizeModel.getNumber().intValue();

        return new Font(name, style, size);
    }

    public JComponent getUI() {
        return ui;
    }

    public static void main(String[] args) {
        Runnable r = () -> {
            try {
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            } catch (Exception useDefault) {
            }
            FontChooserPad o = new FontChooserPad();

            JFrame f = new JFrame(o.getClass().getSimpleName());
            f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
            f.setLocationByPlatform(true);

            f.setContentPane(o.getUI());
            f.pack();
            f.setMinimumSize(f.getSize());

            f.setVisible(true);
        };
        SwingUtilities.invokeLater(r);
    }
}