-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMouseMotionEx.kt
72 lines (51 loc) · 1.49 KB
/
MouseMotionEx.kt
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
package com.zetcode
import java.awt.EventQueue
import java.awt.event.MouseEvent
import java.awt.event.MouseMotionAdapter
import javax.swing.GroupLayout
import javax.swing.JComponent
import javax.swing.JFrame
import javax.swing.JLabel
class MouseMotionEx(title: String) : JFrame() {
private lateinit var coords:JLabel
init {
createUI(title)
}
private fun createUI(title: String) {
coords = JLabel("")
createLayout(coords)
addMouseMotionListener(object : MouseMotionAdapter() {
override fun mouseMoved(e: MouseEvent) {
super.mouseMoved(e)
val x: Int = e.x
val y: Int = e.y
coords.text = "x: $x, y: $y"
}
})
setTitle(title)
defaultCloseOperation = EXIT_ON_CLOSE
setSize(400, 300)
setLocationRelativeTo(null)
}
private fun createLayout(vararg arg: JComponent) {
val gl = GroupLayout(contentPane)
contentPane.layout = gl
gl.autoCreateContainerGaps = true
gl.setHorizontalGroup(gl.createParallelGroup()
.addComponent(arg[0])
.addGap(250)
)
gl.setVerticalGroup(gl.createSequentialGroup()
.addComponent(arg[0])
.addGap(130)
)
pack()
}
}
private fun createAndShowGUI() {
val frame = MouseMotionEx("Mouse move events")
frame.isVisible = true
}
fun main() {
EventQueue.invokeLater(::createAndShowGUI)
}