ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

java实现桌面右下角弹窗效果

2022-09-02 17:32:38  阅读:218  来源: 互联网

标签:java 右下角 private import close new JLabel 弹窗


http://www.3qphp.com/java/framework/3542.html

InfoUtil.java

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Cursor;
import java.awt.Desktop;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.Point;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.SwingConstants;
import java.awt.Insets;
import java.awt.Toolkit;
import javax.swing.JDialog;
 
/**
 * @author Administrator 此工具类用法:实例化出对象,调用 void show("标题","内容") 方法. InfoUtil tool
 *     = new InfoUtil(); tool.show("标题","内容")
 */
public class InfoUtil {
  private TipWindow tw = null; // 提示框
  private JPanel headPan = null;
  private JPanel feaPan = null;
  private JPanel btnPan = null;
  private JLabel title = null; // 栏目名称
  private JLabel head = null; // 蓝色标题
  private JLabel close = null; // 关闭按钮
  private JTextArea feature = null; // 内容
  private JScrollPane jfeaPan = null;
  private JButton sure = null;
  private String titleT = null;
  private String word = null;
  private Desktop desktop = null;
 
  // private SimpleDateFormat sdf = new
  // SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
 
  public void init() {
    // 新建300x180的消息提示框
    tw = new TipWindow(300, 180);
    headPan = new JPanel(new FlowLayout(FlowLayout.CENTER, 0, 0));
    feaPan = new JPanel(new FlowLayout(FlowLayout.CENTER, 0, 0));
    btnPan = new JPanel(new FlowLayout(FlowLayout.CENTER, 0, 0));
    title = new JLabel("欢迎使用本系统");
    head = new JLabel(titleT);
    close = new JLabel(" x");
    feature = new JTextArea(word);
    jfeaPan = new JScrollPane(feature);
    sure = new JButton("确认");
    sure.setHorizontalAlignment(SwingConstants.CENTER);
 
    // 设置提示框的边框,宽度和颜色
    tw.getRootPane().setBorder(
        BorderFactory.createMatteBorder(1, 1, 1, 1, Color.white));
    title.setPreferredSize(new Dimension(260, 26));
    title.setVerticalTextPosition(JLabel.CENTER);
    title.setHorizontalTextPosition(JLabel.CENTER);
    title.setFont(new Font("宋体", Font.PLAIN, 12));
    title.setForeground(Color.black);
 
    close.setFont(new Font("Arial", Font.BOLD, 15));
    close.setPreferredSize(new Dimension(20, 20));
    close.setVerticalTextPosition(JLabel.CENTER);
    close.setHorizontalTextPosition(JLabel.CENTER);
    close.setCursor(new Cursor(12));
    close.setToolTipText("关闭");
 
    head.setPreferredSize(new Dimension(250, 35));
    head.setVerticalTextPosition(JLabel.CENTER);
    head.setHorizontalTextPosition(JLabel.CENTER);
    head.setFont(new Font("宋体", Font.PLAIN, 14));
    head.setForeground(Color.black);
 
    feature.setEditable(false);
    feature.setForeground(Color.BLACK);
    feature.setFont(new Font("宋体", Font.PLAIN, 13));
    feature.setBackground(new Color(255, 255, 255));
    // 设置文本域自动换行
    feature.setLineWrap(true);
 
    jfeaPan.setPreferredSize(new Dimension(260, 100));
    jfeaPan.setBorder(null);
    jfeaPan.setBackground(Color.black);
    tw.setBackground(Color.white);
 
    // 为了隐藏文本域,加个空的JLabel将他挤到下面去
    JLabel jsp = new JLabel();
    jsp.setPreferredSize(new Dimension(300, 15));
 
    sure.setPreferredSize(new Dimension(60, 30));
    // 设置标签鼠标手形
    sure.setCursor(new Cursor(12));
    // 设置button外观
    sure.setContentAreaFilled(false);
    sure.setBorder(BorderFactory.createRaisedBevelBorder());
    sure.setBackground(Color.gray);
 
    // headPan.add(title);
    headPan.add(head);
    headPan.add(close);
 
    feaPan.add(jsp);
    feaPan.add(jfeaPan);
 
    // feaPan.add(releaseLabel);
 
    btnPan.add(sure);
 
    headPan.setBackground(new Color(104, 141, 177));
    feaPan.setBackground(Color.white);
    btnPan.setBackground(Color.white);
 
    tw.add(headPan, BorderLayout.NORTH);
    tw.add(feaPan, BorderLayout.CENTER);
    tw.add(btnPan, BorderLayout.SOUTH);
  }
 
  public void handle() {
    // 为更新按钮增加相应的事件
    desktop = Desktop.getDesktop();
    sure.addMouseListener(new MouseAdapter() {
      public void mouseClicked(MouseEvent e) {
        //注释代码为点击确认之后跳转到指定网页
        // try {
        // desktop.browse(new URI("https://www.baidu.com"));
        // } catch (Exception e1) {
        // e1.printStackTrace();
        // }
        tw.close();
      }
 
      public void mouseEntered(MouseEvent e) {
        sure.setBorder(BorderFactory.createLineBorder(Color.gray));
      }
 
      public void mouseExited(MouseEvent e) {
        sure.setBorder(null);
      }
    });
    // 右上角关闭按钮事件
    close.addMouseListener(new MouseAdapter() {
      public void mouseClicked(MouseEvent e) {
        tw.close();
      }
 
      public void mouseEntered(MouseEvent e) {
        close.setBorder(BorderFactory.createLineBorder(Color.gray));
      }
 
      public void mouseExited(MouseEvent e) {
        close.setBorder(null);
      }
    });
  }
 
  public void show(String titleT, String word) {
    this.titleT = titleT;
    this.word = word;
    // time = sdf.format(new Date());
    init();
    handle();
    tw.setAlwaysOnTop(true);
    tw.setUndecorated(true);
    tw.setResizable(false);
    tw.setVisible(true);
    tw.run();
  }
 
  public void close() {
    tw.close();
  }
}
 
class TipWindow extends JDialog {
  private static final long serialVersionUID = 8541659783234673950L;
  private static Dimension dim;
  private int x, y;
  private int width, height;
  private static Insets screenInsets;
 
  public TipWindow(int width, int height) {
    this.width = width;
    this.height = height;
    dim = Toolkit.getDefaultToolkit().getScreenSize();
    screenInsets = Toolkit.getDefaultToolkit().getScreenInsets(
        this.getGraphicsConfiguration());
    x = (int) (dim.getWidth() - width - 3);
    y = (int) (dim.getHeight() - screenInsets.bottom - 3);
    initComponents();
  }
 
  public void run() {
    for (int i = 0; i <= height; i += 10) {
      try {
        this.setLocation(x, y - i);
        Thread.sleep(50);
      } catch (InterruptedException ex) {
      }
    }
    // 此处代码用来实现让消息提示框6秒后自动消失
    try {
      Thread.sleep(6000);
    } catch (InterruptedException e) {
      e.printStackTrace();
    }
    close();
  }
 
  private void initComponents() {
    this.setSize(width, height);
    this.setLocation(x, y);
    this.setBackground(Color.black);
  }
 
  public void close() {
    x = this.getX();
    y = this.getY();
    int ybottom = (int) dim.getHeight() - screenInsets.bottom;
    for (int i = 0; i <= ybottom - y; i += 10) {
      try {
        setLocation(x, y + i);
        Thread.sleep(50);
      } catch (InterruptedException ex) {
      }
    }
    dispose();
  }
 
}

main.java

public class main {
 private final static String TITLE="弹窗";
 public static void main(String[] args) {
 InfoUtil test = new InfoUtil();
 test.show(TITLE, "这是一个弹窗测试!");
 }
 
}

效果如下:

标签:java,右下角,private,import,close,new,JLabel,弹窗
来源: https://www.cnblogs.com/hanby/p/16650661.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有