我是靠谱客的博主 细腻大门,这篇文章主要介绍Swing 窗体 类似QQ自动隐藏,现在分享给大家,希望可以做个参考。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package com.ui; import java.awt.Point; import java.awt.Rectangle; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.awt.event.MouseMotionAdapter; import javax.swing.JFrame; import javax.swing.Timer; public class HideFrame extends JFrame implements ActionListener { private Rectangle rect; private int frameLeft;// 窗体离屏幕左边的距离 private int frameRight;// 窗体离屏幕右边的距离; private int frameTop;// 窗体离屏幕顶部的距离 private int frameWidth; // 窗体的宽 private int frameHeight; // 窗体的高 private int screenXX;// 屏幕的宽度; private Point point; // 鼠标在窗体的位置 private Timer timer = new Timer(10, this); private int xx, yy; private boolean isDraging = false; public HideFrame() { timer.start(); setTitle("窗体在屏幕边缘隐藏演示"); setSize(400, 300); setUndecorated(true); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setAlwaysOnTop(true); addMouseListener(new MouseAdapter() { public void mousePressed(MouseEvent e) { isDraging = true; xx = e.getX(); yy = e.getY(); } public void mouseReleased(MouseEvent e) { isDraging = false; } }); addMouseMotionListener(new MouseMotionAdapter() { public void mouseDragged(MouseEvent e) { if (isDraging) { int left = getLocation().x; int top = getLocation().y; setLocation(left + e.getX() - xx, top + e.getY() - yy); repaint(); } } }); setVisible(true); } @Override public void actionPerformed(ActionEvent arg0) { frameLeft = getLocationOnScreen().x; frameTop = getLocationOnScreen().y; frameWidth = getWidth(); frameHeight = getHeight(); screenXX = java.awt.Toolkit.getDefaultToolkit().getScreenSize().width; frameRight = screenXX - frameLeft - frameWidth; // 获取窗体的轮廓 rect = new Rectangle(0, 0, frameWidth, frameHeight); // 获取鼠标在窗体的位置 point = getMousePosition(); if (frameLeft < 0 && isPtInRect(rect, point)) { setLocation(0, frameTop); // 隐藏在左边,鼠标指到后显示窗体; } else if (frameLeft > -5 && frameLeft < 5 && !(isPtInRect(rect, point))) { setLocation(frameLeft - frameWidth + 1, frameTop); // 窗体移到左边边缘隐藏到左边; } else if ((frameTop < 0 && frameLeft < 0) && isPtInRect(rect, point)) {// 窗体在左上角; setLocation(0, 0);// 窗口隐藏了,鼠标指到他,就显示出来; } else if ((frameTop > -5 && frameTop < 5) && (frameLeft > -5 && frameLeft < 5) && !(isPtInRect(rect, point))) { // 当窗体的上边框与屏幕的顶端的距离小于5时 , // 并且鼠标不再窗体上将窗体隐藏到屏幕的顶端 setLocation(frameLeft - frameWidth + 1, 1); } else if ((frameTop < 0) && isPtInRect(rect, point)) { setLocation(frameLeft, 0);// 窗口隐藏了,鼠标指到他,就显示出来; } else if (frameTop > -5 && frameTop < 5 && !(isPtInRect(rect, point))) { // 当窗体的上边框与屏幕的顶端的距离小于5时 , // 并且鼠标不再窗体上将窗体隐藏到屏幕的顶端 setLocation(frameLeft, 1 - frameHeight); } else if (frameRight < 0 && isPtInRect(rect, point)) { setLocation(screenXX - frameWidth + 1, frameTop);// 隐藏在右边,鼠标指到后显示; } else if (frameRight > -5 && frameRight < 5 && !(isPtInRect(rect, point))) { setLocation(screenXX - 1, frameTop); // 窗体移到屏幕右边边缘隐藏到右边; } else if (frameRight < 0 && frameTop < 0 && isPtInRect(rect, point)) {// 窗体在右上角; setLocation(screenXX - frameWidth + 1, 0);// 隐藏在右边,鼠标指到后显示; } else if ((frameRight > -5 && frameRight < 5) && (frameTop > -5 && frameTop < 5) && !(isPtInRect(rect, point))) { setLocation(screenXX - 1, 1); // 窗体移到屏幕右边边缘隐藏到右边; } } /** * 检测是否在矩形框内 * * @param rect * @param point * @return */ public boolean isPtInRect(Rectangle rect, Point point) { if (rect != null && point != null) { int x0 = rect.x; int y0 = rect.y; int x1 = rect.width; int y1 = rect.height; int x = point.x; int y = point.y; return x >= x0 && x < x1 && y >= y0 && y < y1; } return false; } public static void main(String[] args) { HideFrame frame = new HideFrame(); } }

 

最后

以上就是细腻大门最近收集整理的关于Swing 窗体 类似QQ自动隐藏的全部内容,更多相关Swing内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(69)

评论列表共有 0 条评论

立即
投稿
返回
顶部