最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

java實(shí)現(xiàn)仿windows 字體設(shè)置選項(xiàng)卡實(shí)例

 更新時(shí)間:2016年10月20日 14:04:26   作者:beautifulzzzz  
本篇文章介紹了java仿windows 字體設(shè)置選項(xiàng)卡,可實(shí)現(xiàn)類似windows字體設(shè)置效果,需要的朋友可以參考下。

想用java做一個(gè)像windows里一樣的txt編輯軟件,涉及到字體設(shè)置選項(xiàng)卡,在網(wǎng)上找了很久都沒(méi)找到,就生氣啦自己寫(xiě)一個(gè),現(xiàn)在貼這里分享一下,下次再遇到這樣的問(wèn)題就不用自己親自打代碼啦!

package 實(shí)驗(yàn);
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.*;
import javax.swing.border.BevelBorder;

/**
 * 字體格式設(shè)置對(duì)話框
 */

public class FontFormat extends JDialog {

  private JLabel nameLb;
  private JLabel styleLb;
  private JLabel sizeLb;
  private JLabel presLb;
  private JTextField nameTx;
  private JTextField styleTx;
  private JTextField sizeTx;
  private JTextField presTx;
  private JList nameLt;
  private JList styleLt;
  private JList sizeLt;
  private JScrollPane jScrollPane1;
  private JScrollPane jScrollPane2;
  private JScrollPane jScrollPane3;
  private JButton approve;
  private JButton cancel;
  private JButton chose;
  private JRadioButton[] language = new JRadioButton[2];
  private ButtonGroup languageg;
  private String Slanguage[] = { new String("李濤"), new String("ABC") };

  private static JFrame frame;
  public Font font, newFont;// 字體類
  private Color color;// 顏色類
  Color newColor;

  private JFileChooser fileChoose = new JFileChooser();// 文件選擇類實(shí)例
  private JDialog colorDlg;// 顏色對(duì)話框
  private JColorChooser colorChoose = new JColorChooser();// 顏色選擇類實(shí)例

  private GraphicsEnvironment environment; // 該類中又獲取系統(tǒng)字體的方法;
  private String[] fontNameSet;// 字體‘邏輯名'集
  // 字體‘樣式'集的字符串?dāng)?shù)組
  private String[] fontStyleSet = { "常規(guī)", "傾斜", "加粗", "傾斜 加粗" };
  // 字體‘樣式'集的常量數(shù)組
  private Integer[] fontCon = { Font.PLAIN, Font.ITALIC, Font.BOLD,
      Font.BOLD | Font.ITALIC };
  // 字體‘大小'集
  private String[] fontSizeSet = { "6", "7", "8", "9", "10", "11", "12",
      "14", "16", "18", "20", "22", "24", "26", "28", "36", "48", "72" };

  public static void main(String args[]) {// 主函數(shù)
    FontFormat a = new FontFormat();
    a.setVisible(true);
  }

  public FontFormat() {// 無(wú)參構(gòu)造函數(shù)
    super(frame, "李濤—字體設(shè)置窗口", true);
    frame = new JFrame();
    initGUI();
  }

  public FontFormat(JFrame frame) {// 含參構(gòu)造函數(shù)
    super(frame, "李濤—字體設(shè)置窗口", true);
    this.frame = frame;// 父窗口中必須有一個(gè)public的Font對(duì)象
    // setAlwaysOnTop(true);
    initGUI();
  }

  private void initGUI() {// 字體格式選擇器的界面初始化
    try {
      getContentPane().setLayout(null);
      environment = GraphicsEnvironment.getLocalGraphicsEnvironment();// GraphicsEnvironment是一個(gè)抽象類,不能實(shí)例化,只能用其中的靜態(tài)方法獲取一個(gè)實(shí)例
      fontNameSet = environment.getAvailableFontFamilyNames();// 獲取系統(tǒng)字體
      addMenu();// 加入菜單
      initFont();// 初始化字體
      // pack();
      setSize(380, 337);
      setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
      setWindowPos();// 使窗口屏幕居中
      setResizable(false);// 大小不可變
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

  private void initFont() {// 初始化字體
    // 設(shè)置默認(rèn)字體格式為父窗口font對(duì)向的字體格式
    if (frame.getFont() == null) {
      nameTx.setText(fontNameSet[0]);
      styleTx.setText(fontStyleSet[0]);
      sizeTx.setText("12");
      nameLt.setSelectedValue(fontNameSet[0], true);
      styleLt.setSelectedIndex(0);
      sizeLt.setSelectedValue("12", true);
      font = new Font(fontNameSet[0], fontCon[0], 12);
      newFont = font;// 保存原來(lái)的字體格式
      presTx.setFont(font);
      // JOptionPane.showMessageDialog(null, "ccac");
    } else {
      int idxStyle = 0;
      for (int i = 0; i < fontCon.length; i++) {
        if (fontCon[i] == frame.getFont().getStyle())
          idxStyle = i;
      }
      nameTx.setText(frame.getFont().getName());// 改text
      styleTx.setText(fontStyleSet[idxStyle]);
      sizeTx.setText("" + frame.getFont().getSize());
      nameLt.setSelectedValue(frame.getFont().getName(), true);// 改list顯示
      styleLt.setSelectedIndex(idxStyle);
      sizeLt.setSelectedValue("" + frame.getFont().getSize(), true);
      font = new Font(fontNameSet[0], fontCon[0], 12);// 保存當(dāng)前格式
      newFont = font;// 保存原來(lái)的字體格式
      presTx.setFont(font);// 預(yù)覽中設(shè)為當(dāng)前模式
    }
  }

  private void addMenu() {// 加入菜單
    // 4個(gè)lable---------------------------------------------------------------------------------
    nameLb = new JLabel();
    getContentPane().add(nameLb);
    nameLb.setText("字體:");
    nameLb.setBounds(10, 14, 120, 26);
    nameLb.setFont(new java.awt.Font("SimSun", 1, 14));

    styleLb = new JLabel();
    getContentPane().add(styleLb);
    styleLb.setText("字型:");
    styleLb.setBounds(151, 14, 120, 23);
    styleLb.setFont(new java.awt.Font("SimSun", 1, 14));

    sizeLb = new JLabel();
    getContentPane().add(sizeLb);
    sizeLb.setText("大?。?);
    sizeLb.setBounds(275, 14, 79, 24);
    sizeLb.setFont(new java.awt.Font("SimSun", 1, 14));

    presLb = new JLabel();
    getContentPane().add(presLb);
    presLb.setText("預(yù)覽:");
    presLb.setBounds(151, 150, 120, 80);
    presLb.setFont(new java.awt.Font("SimSun", 1, 14));

    // 4個(gè)textfield---------------------------------------------------------------------------------
    nameTx = new JTextField();
    nameTx.setEditable(false);
    getContentPane().add(nameTx);
    nameTx.setBounds(10, 42, 120, 22);

    styleTx = new JTextField();
    styleTx.setEditable(false);
    getContentPane().add(styleTx);
    styleTx.setBounds(151, 42, 100, 21);

    sizeTx = new JTextField();
    sizeTx.setEditable(false);
    getContentPane().add(sizeTx);
    sizeTx.setBounds(275, 42, 79, 22);

    presTx = new JTextField();
    presTx.setEditable(false);
    getContentPane().add(presTx);
    presTx.setBounds(151, 200, 203, 61);
    presTx.setText(Slanguage[1]);

    // 3個(gè)下拉條--+監(jiān)聽(tīng)-----------------------------------------------------------------------------
    jScrollPane1 = new JScrollPane();
    getContentPane().add(jScrollPane1);
    jScrollPane1.setBounds(10, 74, 120, 210);
    {
      ListModel fontNameModel = new DefaultComboBoxModel(fontNameSet);
      nameLt = new JList();
      jScrollPane1.setViewportView(nameLt);
      nameLt.setModel(fontNameModel);
      nameLt.setBounds(274, 193, 90, 86);
      nameLt.setBorder(BorderFactory
          .createEtchedBorder(BevelBorder.LOWERED));
      nameLt.addMouseListener(new MouseAdapter() {
        public void mouseClicked(MouseEvent evt) {
          nameLtMouseClicked(evt);
        }
      });
    }

    jScrollPane2 = new JScrollPane();
    getContentPane().add(jScrollPane2);
    jScrollPane2.setBounds(151, 74, 100, 103);
    {
      ListModel fontStyleModel = new DefaultComboBoxModel(fontStyleSet);
      styleLt = new JList();
      jScrollPane2.setViewportView(styleLt);
      styleLt.setModel(fontStyleModel);
      styleLt.setBounds(310, 215, 70, 102);
      styleLt.setBorder(BorderFactory
          .createEtchedBorder(BevelBorder.LOWERED));
      styleLt.addMouseListener(new MouseAdapter() {
        public void mouseClicked(MouseEvent evt) {
          styleLtMouseClicked(evt);
        }
      });
    }

    jScrollPane3 = new JScrollPane();
    getContentPane().add(jScrollPane3);
    jScrollPane3.setBounds(275, 75, 79, 100);
    {
      ListModel fontSizeModel = new DefaultComboBoxModel(fontSizeSet);
      sizeLt = new JList();
      jScrollPane3.setViewportView(sizeLt);
      sizeLt.setModel(fontSizeModel);
      sizeLt.setBounds(300, 218, 54, 102);
      sizeLt.setBorder(BorderFactory
          .createEtchedBorder(BevelBorder.LOWERED));
      sizeLt.addMouseListener(new MouseAdapter() {
        public void mouseClicked(MouseEvent evt) {
          sizeLtMouseClicked(evt);
        }
      });
    }// -------------------------------------------------------------------------------------

    // 中英選項(xiàng)(---------------------------------------------------------------------------------
    languageg = new ButtonGroup();
    language[0] = new JRadioButton("中");
    getContentPane().add(language[0]);
    language[0].setSelected(false);// 初始化顯示
    language[0].setBounds(271, 179, 40, 20);
    language[0].setFont(new java.awt.Font("SimSun", 1, 12));
    languageg.add(language[0]);
    language[0].addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent evt) {
        presTx.setText(Slanguage[0]);
      }
    });

    language[1] = new JRadioButton("英");
    getContentPane().add(language[1]);
    language[1].setSelected(true);
    language[1].setBounds(321, 179, 40, 20);
    language[1].setFont(new java.awt.Font("SimSun", 1, 12));
    languageg.add(language[1]);
    language[1].addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent evt) {
        presTx.setText(Slanguage[1]);
      }
    });

    // 3個(gè)按鈕+監(jiān)聽(tīng)---------------------------------------------------------------------------------
    // 確定按鈕
    approve = new JButton();
    getContentPane().add(approve);
    approve.setText("確定");
    approve.setBounds(151, 265, 67, 20);
    approve.setFont(new java.awt.Font("KaiTi_GB2312", 1, 12));
    approve.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent evt) {
        approveActionPerformed(evt);
      }
    });

    // 取消按鈕
    cancel = new JButton();
    getContentPane().add(cancel);
    cancel.setText("取消");
    cancel.setBounds(219, 265, 67, 20);
    cancel.setFont(new java.awt.Font("KaiTi_GB2312", 1, 12));
    cancel.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent evt) {
        cancelActionPerformed(evt);
      }
    });

    // 顏色選擇按鈕
    chose = new JButton();
    getContentPane().add(chose);
    chose.setText("顏色");
    chose.setBounds(287, 265, 67, 20);
    chose.setFont(new java.awt.Font("KaiTi_GB2312", 1, 12));
    chose.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent evt) {
        choseActionPerformed(evt);
      }
    });// -------------------------------------------------------------------------
  }

  private void setWindowPos() {// 窗口居中
    Toolkit kit = Toolkit.getDefaultToolkit();// 抽象類,通過(guò)靜態(tài)方法獲取實(shí)例
    Dimension frameSize = new Dimension(), screenSize = kit.getScreenSize(); // 獲取屏幕的大小
    getSize(frameSize); // 獲取窗口大小
    setLocation((screenSize.width - frameSize.width) / 2,
        (screenSize.height - frameSize.height) / 2);
  }

  private void nameLtMouseClicked(MouseEvent evt) {// 字體邏輯名列表的鼠標(biāo)單擊事件
    nameTx.setText(nameLt.getSelectedValue().toString());
    font = new Font(nameTx.getText(), font.getStyle(), font.getSize());
    presTx.setFont(font);
  }

  private void styleLtMouseClicked(MouseEvent evt) {// 字體樣式列表的鼠標(biāo)單擊事件
    String temp = styleLt.getSelectedValue().toString();
    styleTx.setText(temp);
    int index = 0;
    while (index < 4 && !fontStyleSet[index].equals(temp)) {
      index++;
    }
    font = new Font(font.getName(), fontCon[index], font.getSize());
    presTx.setFont(font);
  }

  private void sizeLtMouseClicked(MouseEvent evt) {// 字體大小列表的鼠標(biāo)點(diǎn)擊事件
    sizeTx.setText(sizeLt.getSelectedValue().toString());
    font = new Font(font.getName(), font.getStyle(),
        Integer.parseInt(sizeTx.getText()));
    presTx.setFont(font);
  }

  private void approveActionPerformed(ActionEvent evt) {// 確定按鈕的觸發(fā)事件
    String name = nameTx.getText();
    int style = fontCon[styleLt.getSelectedIndex()];
    int size = Integer.parseInt(sizeTx.getText());
    font = new Font(name, style, size);
    frame.setFont(font); // 父窗口的Font對(duì)象
    newFont = font;// 更新原來(lái)保存格式
    newColor = color;// 更新顏色
    this.dispose();
  }

  private void cancelActionPerformed(ActionEvent evt) {// 取消按鈕的觸發(fā)事件
    this.dispose();
  }

  private void choseActionPerformed(ActionEvent evt) {// 顏色選擇觸發(fā)事件
    if (colorDlg == null) {
      colorDlg = JColorChooser.createDialog(FontFormat.this,
          "Select Text Color", true, colorChoose,
          new ColorOKListener(), null);
    }
    colorChoose.setColor(color = presTx.getForeground());
    colorDlg.setVisible(true);
  }

  class ColorOKListener implements ActionListener {// 重寫(xiě)顏色按鈕點(diǎn)擊監(jiān)聽(tīng)類覆蓋接口ActionListener
    public void actionPerformed(ActionEvent e) {
      Color c = colorChoose.getColor();
      color = c;
      presTx.setForeground(c);
      presTx.repaint();
    }
  }
}

效果如下:

希望本文所述對(duì)你有所幫助,java仿windows 字體設(shè)置選項(xiàng)卡內(nèi)容就給大家介紹到這里了。希望大家繼續(xù)關(guān)注我們的網(wǎng)站!想要學(xué)習(xí)java可以繼續(xù)關(guān)注本站。

相關(guān)文章

最新評(píng)論

文登市| 民和| 罗江县| 南涧| 汤原县| 宜兰县| 清流县| 张掖市| 封丘县| 扶风县| 桐梓县| 札达县| 九江县| 万全县| 且末县| 高碑店市| 永嘉县| 聂拉木县| 图木舒克市| 郧西县| 海宁市| 日照市| 阳谷县| 鲁山县| 铜川市| 武威市| 铜梁县| 新密市| 九江县| 乌什县| 涪陵区| 黑龙江省| 乌兰浩特市| 呼玛县| 安平县| 革吉县| 宣武区| 象州县| 河北区| 汝阳县| 通许县|