`

系统消息框

 
阅读更多
系统消息弹出框实现方式
一种:
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Toolkit;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;

import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextPane;
import javax.swing.JWindow;
import javax.swing.SwingConstants;
import javax.swing.text.BadLocationException;
import javax.swing.text.Style;
import javax.swing.text.StyleConstants;
import javax.swing.text.StyledDocument;

/**
 * 
 * @author luojialin
 * @2014-2014-3-8 下午2:14:18
 */
public class MessageManager extends JWindow implements Runnable {
 private static final long serialVersionUID = 1291149350784042880L;
 private static MessageManager message;
 private JPanel panel1;
 private JPanel titlePane;
 private JTextPane messagePane;
 private JLabel lblTitle;
 private JLabel time;

 private Integer screenWidth; // 屏幕宽度
 private Integer screenHeight; // 屏幕高度
 private Integer windowWidth = 200; // 设置提示窗口宽度
 private Integer windowHeight = 150; // 设置提示窗口高度
 private Integer bottmToolKitHeight; // 底部任务栏高度,如果没有任务栏则为零
 private Integer stayTime = 4000; // 提示框停留时间

 private Integer x; // 窗口起始X坐标
 private Integer y; // 窗口起始Y坐标

 private MessageManager() {
  initGUI();
 }

 public static MessageManager getInstance() {

  message = new MessageManager();

  return message;
 }

 private void initGUI() {

  bottmToolKitHeight = Toolkit.getDefaultToolkit().getScreenInsets(
    this.getGraphicsConfiguration()).bottom;
  Dimension dimension = PCSSWorkbench.getInstance().getSize();
  // Dimension dimension = Toolkit.getDefaultToolkit().getScreenSize();
  screenWidth = dimension.width;
  screenHeight = dimension.height;

  x = screenWidth - windowWidth - 16;
  y = screenHeight - 75;
  this.setLocation(x, y);
  this.setLayout(new BorderLayout());
  panel1 = new JPanel();
  getContentPane().add(panel1, BorderLayout.CENTER);
  panel1.setLayout(new BorderLayout());

  lblTitle = new JLabel();
  titlePane = new JPanel();
  lblTitle.setForeground(Color.WHITE);
  lblTitle.setFont(new Font("微软雅黑",Font.BOLD,15));
  JLabel closeLabe = new JLabel("X"); 
  closeLabe.setFont(new Font("微软雅黑",Font.BOLD,15));
  closeLabe.addMouseListener(new MouseAdapter(){
   public void mouseClicked(MouseEvent e){
    dispose();
   }
  });
  titlePane = new JPanel(new BorderLayout());
  titlePane.add(lblTitle,BorderLayout.WEST);
  titlePane.add(closeLabe,BorderLayout.EAST);

  messagePane = new JTextPane();

  time = new JLabel();
  panel1.add(titlePane, BorderLayout.NORTH);
  panel1.add(messagePane, BorderLayout.CENTER);
  panel1.add(time, BorderLayout.SOUTH);

  this.setSize(windowWidth, windowHeight);
  this.setLocation(x, y);
  this.setAlwaysOnTop(true);
  this.setVisible(true);

 }

 private ImageIcon setIcon(String name) {
  ImageIcon icon = new ImageIcon(getClass().getClassLoader().getResource(
    "com/sf/module/pcss/core/client/message/img/" + name));
  return icon;
 }

 
 private void displayMessage(String title,String message,Color color,String icon){
  
  Thread thread = new Thread(this);
  thread.start();
  
  lblTitle.setText("  " + title);
  titlePane.setBackground(color);
  
  messagePane.setText(message);
  messagePane.setForeground(color);
  StyledDocument doc = (StyledDocument) messagePane.getDocument();
  Style style = doc.addStyle("StyleName", null);
  StyleConstants.setIcon(style, setIcon(icon));
  
  try {
   doc.insertString(doc.getLength(), message, style);
  } catch (BadLocationException e) {
   e.printStackTrace();
  }
  
  time.setText(DateUtils.getGreenWich());
  time.setHorizontalAlignment(SwingConstants.RIGHT);
  time.setForeground(color);
  panel1.setBorder(BorderFactory.createLineBorder(color));
 }
 
 /**
  * 操作成功信息提醒
  * 
  * @param title 
  * @param content
  */
 public void info(String title, String message) {
  
  Color color = new Color(0, 128, 0);
  String icon = "success.png";
  
  if (title == null || "".equals(title))
   title = Messages.getString("skin.message.title","提示");
  if (message == null || "".equals(message.trim())) 
   message = Messages.getString(message,"提示");
   
  displayMessage(title,message,color,icon);
  
 }

 /**
  * 错误提醒
  * 
  * @param title
  * @param content
  */
 public void error(String title, String message) {
  
  Color color = new Color(255, 0, 0);
  String icon = "fail.png";
  
  if (title == null || "".equals(title))
   title = Messages.getString("error","错误");
  if (message == null || "".equals(message.trim())) 
   message = Messages.getString(message,"错误");
   
  displayMessage(title,message,color,icon);
  
  
 }

 /**
  * 警告提醒
  * 
  * @param title
  * @param content
  */
 public void warn(String title, String message) {
  
  Color color = new Color(255,153,0);
  String icon = "warn.png";
  
  if (title == null || "".equals(title))
   title = Messages.getString("Warm","警告");
  if (message == null || "".equals(message.trim())) 
   message = Messages.getString("Warm","警告");
   
  displayMessage(title,message,color,icon);
  
 }

 @Override
 public void run() {
  Integer delay = 10;
  Integer step = 1;
  Integer end = windowHeight - bottmToolKitHeight - 20;
  while (true) {
   try {
    step++;
    y = y - 1;
    this.setLocation(x, y);
    if (step > end) {
     Thread.sleep(stayTime);
     break;
    }
    Thread.sleep(delay);
   } catch (InterruptedException e) {
    e.printStackTrace();
   }
  }
  step = 1;
  while (true) {
   try {
    step++;
    y = y + 1;
    this.setLocation(x, y);
    if (step > end) {
     this.dispose();
     break;
    }
    Thread.sleep(delay);
   } catch (InterruptedException e) {
    e.printStackTrace();
   }
  }
  this.dispose();
  // System.exit(0);
 }


}
 
二种:
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Point;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.Timer;
import java.util.TimerTask;

import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextPane;
import javax.swing.JWindow;
import javax.swing.SwingConstants;
import javax.swing.text.BadLocationException;
import javax.swing.text.Style;
import javax.swing.text.StyleConstants;
import javax.swing.text.StyledDocument;



/**
 * 
 * @author luojialin
 * @2014-2014-3-8 下午2:14:18
 */
public class MessageManager extends JWindow  {
	private static final long serialVersionUID = 1291149350784042880L;
	private  MessageManager message;
	private JPanel panel1;
	private JPanel titlePane;
	private JTextPane messagePane;
	private JLabel lblTitle;
	private JLabel time;

	private Integer windowWidth = 200; // 设置提示窗口宽度
	private Integer windowHeight = 150; // 设置提示窗口高度
	private Integer stayTime = 3000; // 提示框停留时间

	private Integer x; // 窗口起始X坐标
	private Integer y; // 窗口起始Y坐标

	Timer timer ;
	
	public MessageManager() {
		initGUI();
	}

	public static MessageManager getInstance() {

		MessageManager messagew = new MessageManager();
		messagew.setMessage(messagew);

		return messagew;
	}

	private void initGUI() {

		this.setLayout(new BorderLayout());
		panel1 = new JPanel();
		getContentPane().add(panel1, BorderLayout.CENTER);
		panel1.setLayout(new BorderLayout());

		lblTitle = new JLabel();
		titlePane = new JPanel();
		lblTitle.setForeground(Color.WHITE);
		lblTitle.setFont(new Font("微软雅黑",Font.BOLD,15));
		JLabel closeLabe = new JLabel("X"); 
		closeLabe.setFont(new Font("微软雅黑",Font.BOLD,15));
		closeLabe.addMouseListener(new MouseAdapter(){
			public void mouseClicked(MouseEvent e){
				dispose();
			}
		});
		titlePane = new JPanel(new BorderLayout());
		titlePane.add(lblTitle,BorderLayout.WEST);
		titlePane.add(closeLabe,BorderLayout.EAST);

		messagePane = new JTextPane();

		time = new JLabel();
		panel1.add(titlePane, BorderLayout.NORTH);
		panel1.add(messagePane, BorderLayout.CENTER);
		panel1.add(time, BorderLayout.SOUTH);


		this.setSize(windowWidth, windowHeight);
		
		Point p = PCSSWorkbench.getInstance().getLocationOnScreen();
		Dimension d = PCSSWorkbench.getInstance().getSize();
		x = (int) (p.x + d.getWidth() - windowWidth - 10);
		y = (int) (p.y + d.getHeight()- windowHeight - 10);
		this.setLocation(x, y);
		this.setAlwaysOnTop(true);
		this.setVisible(true);

	}

	private ImageIcon setIcon(String name) {
		ImageIcon icon = new ImageIcon(getClass().getClassLoader().getResource(
				"com/sf/module/pcss/core/message/img/" + name));
		return icon;
	}

	
	
	/**
	 * 操作成功信息提醒
	 * 
	 * @param title 
	 * @param content
	 */
	public void info(String title, String message) {
		
		Color color = new Color(0, 128, 0);
		String icon = "success.png";
		
		if (title == null || "".equals(title))
			title = Messages.getString("info","提示");
		if (message == null || "".equals(message.trim())) 
			message = Messages.getString(message,"提示");
			
		displayMessage(title,message,color,icon);
		
	}

	/**
	 * 错误提醒
	 * 
	 * @param title
	 * @param content
	 */
	public void error(String title, String message) {
		
		Color color = new Color(255, 0, 0);
		String icon = "fail.png";
		
		if (title == null || "".equals(title))
			title = Messages.getString("error","错误");
		if (message == null || "".equals(message.trim())) 
			message = Messages.getString(message,"错误");
			
		displayMessage(title,message,color,icon);
		
		
	}

	/**
	 * 警告提醒
	 * 
	 * @param title
	 * @param content
	 */
	public void warn(String title, String message) {
		
		Color color = new Color(255,153,0);
		String icon = "warn.png";
		
		if (title == null || "".equals(title))
			title = Messages.getString("Warm","警告");
		if (message == null || "".equals(message.trim())) 
			message = Messages.getString("Warm","警告");
			
		displayMessage(title,message,color,icon);
		
		
	}

	private void displayMessage(String title,String message,Color color,String icon){
		
		lblTitle.setText("  " + title);
		titlePane.setBackground(color);
		
		messagePane.setText(message);
		messagePane.setForeground(color);
		StyledDocument doc = (StyledDocument) messagePane.getDocument();
		Style style = doc.addStyle("StyleName", null);
		StyleConstants.setIcon(style, setIcon(icon));
		
		try {
			doc.insertString(doc.getLength(), message, style);
		} catch (BadLocationException e) {
			e.printStackTrace();
		}
		
		time.setText(DateUtils.getGreenWich());
		time.setHorizontalAlignment(SwingConstants.RIGHT);
		time.setForeground(color);
		panel1.setBorder(BorderFactory.createLineBorder(color));
		
		
		timer = new Timer();
		timer.schedule(new MyTask(), stayTime);
	}
	
	class MyTask extends TimerTask{

		@Override
		public void run() {
			//message.setLocation(x, y);
			message.setVisible(false);
			message.dispose();
			timer.cancel();
		}
	}
	

	public MessageManager getMessage() {
		return message;
	}

	public void setMessage(MessageManager message) {
		this.message = message;
	}
	

}
 
 
分享到:
评论

相关推荐

    VC 消息框实现

    在这个例子中,`NULL`表示没有父窗口,"这是一个消息框示例"是消息框的文本,"消息框标题"是标题,`MB_OK`则告诉系统消息框只需要一个“确定”按钮。 除了基本的`MessageBox`函数,VC++还提供了其他方法来创建更...

    asp.net弹出消息框 类似msn的消息框

    标题和描述中提到的"asp.net弹出消息框 类似msn的消息框"实际上是在指如何在网页上创建一个模仿MSN消息框效果的通知系统。这个系统通常具备简洁的设计、可定制的样式以及能够快速通知用户关键信息的能力。 在ASP...

    拓智QQ系统消息广告插件生成器V2.0

    主要功能:能模拟QQ软件弹出与QQ一摸一样的系统消息框,消息内容由使用者自定义。 1.采用高级语言delphi编写,运行效率高。效果逼真,体积小,压缩后仅有0.24MB左右。 2.自动读取本机已经登录QQ的号码,头像,昵称等...

    自定义消息框MessagBox

    自定义消息框需要有自己的消息循环,以便处理用户的输入和系统事件。 6. **样式和图标(Styles and Icons)**:自定义消息框可以设置独特的窗口样式和图标,以增强视觉效果。通过指定窗口样式参数,可以改变窗口的...

    弹出消息框

    在IT行业中,弹出消息框是一种常见的用户界面(UI)设计元素,用于向用户显示信息、警告、确认或错误提示。这种技术广泛应用于各种应用程序,包括桌面应用、Web应用以及移动应用。标题“弹出消息框”暗示我们将讨论...

    消息框,,,网页消息框收集

    3. **错误消息框**:当用户操作出错或系统检测到异常时,会显示错误消息,帮助用户理解问题所在。 4. **信息消息框**:提供一般性的信息,例如“任务已完成”。 5. **询问消息框**:用于询问用户的意愿或获取信息,...

    简单的消息框源程序hello world!(汇编源码)

    学习这个简单的消息框源程序,不仅可以帮助理解汇编语言的基本语法和结构,还能深入理解操作系统如何处理用户界面元素以及程序如何与操作系统进行交互。此外,它也能够提升对计算机底层工作原理的认知,这对于优化...

    unity制作的非常简单的自定义消息框Demo

    Unity是一款强大的跨平台游戏开发引擎,它...总的来说,这个Demo提供了一个学习Unity自定义消息框的好机会,不仅能够增强对Unity UI系统的理解,也能提高编程和设计能力。对于新手来说,这是一个实用且有趣的练习项目。

    类似QQ消息框的对话框

    "类似QQ消息框的对话框"是一个典型的界面设计元素,它模仿了QQ这款流行即时通讯软件中的消息展示方式。这种对话框通常包含发送者和接收者的头像、昵称、消息内容以及时间戳等关键信息,为用户提供了一个清晰、直观的...

    易语言消息框自动关闭

    本主题聚焦于"易语言消息框自动关闭"这一技术点,这涉及到程序中如何利用易语言实现消息框的自动化控制。 首先,"消息框自动关闭"通常是指在用户不进行任何操作的情况下,程序能够自动关闭弹出的消息框。在传统的...

    访QQ弹出的消息框(可以移动)

    在C#中,创建消息框通常会用到System.Windows.Forms命名空间下的MessageBox类,它可以弹出系统标准的对话框,但这里提到的是自定义的消息框,所以开发者可能创建了一个自定义控件来实现更个性化的功能。 在“压缩...

    jquery仿QQ消息框

    《使用jQuery实现仿QQ消息框的详细教程》 在网页开发中,为了提供更好的用户体验,开发者经常需要创建各种各样的提示、警告或消息框。QQ消息框因其简洁、易用和美观的特点,被广泛应用于各个网站。本教程将详细介绍...

    CSDN的消息框

    "CSDN的消息框"很可能指的是该网站上用于用户间交流的一种功能,允许用户发送和接收消息。在这个场景中,我们无法直接查看压缩包文件的详细内容,因此我将根据CSDN的消息框这一主题来介绍相关知识点。 1. **消息框...

    Android消息框

    在Android开发中,消息框(Toast)是一种非常重要的组件,它用于向用户显示短暂的通知信息,而不会中断用户的操作。消息框通常用于显示简单的提示信息,比如操作成功、失败或者警告。下面我们将深入探讨Android消息...

    div弹出模式窗体,消息框样式。

    总的来说,创建一个"div弹出模式窗体,消息框样式"需要结合HTML、CSS和JavaScript的知识,通过巧妙的设计和编程,我们可以制作出美观且功能丰富的消息提示系统。对于前端开发者来说,掌握这一技术对于提升用户体验至...

    自低向上升起消息框,仿MSN、QQ消息框

    在Windows操作系统中,消息框是由MessageBox函数创建的,而在Web开发中,可以使用JavaScript的alert、prompt和confirm函数,或者使用各种前端框架如React、Vue、Angular等提供的组件来实现。 仿照MSN和QQ的消息框...

    钩住消息框

    在这个场景下,"个性MessageBox"指的是开发者通过hook技术,对系统默认的消息框(MessageBox)进行定制,以实现更丰富的功能或视觉效果。 首先,我们需要了解Windows的消息系统。在Windows操作系统中,应用程序通过...

    C#159在消息框中绘制表格 源代码

    在C#编程中,有时我们需要在用户界面中展示数据,而消息框(MessageBox)通常是用于简单提示信息的。然而,标准的消息框不支持复杂的布局,如表格。标题“C#159在消息框中绘制表格 源代码”表明我们将探讨如何克服这...

    3秒后自动关闭消息框

    在本例中,“3秒后自动关闭消息框”就是利用Windows API中的一个或多个函数来创建一个具有计时功能的消息框,该消息框会在3秒后自动消失,无需用户进行任何操作。 要实现这样的功能,首先需要了解以下API函数: 1....

    asp.net封装的消息框

    "asp.net封装的消息框"是一个非常实用的工具,它将这些常见的前端交互功能进行了集中处理和封装,方便开发者快速调用,提高了开发效率。 首先,消息框在Web应用中主要用于向用户显示警告、确认或信息。传统的ASP...

Global site tag (gtag.js) - Google Analytics