Skip to content
This repository was archived by the owner on Mar 6, 2024. It is now read-only.

Commit 45b51a3

Browse files
committed
feat: add side corner event
1 parent cca45d7 commit 45b51a3

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

wetool-plugin-support/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<lombok.version>1.18.20</lombok.version>
2020
<boot.surface.version>1.1.6</boot.surface.version>
2121
<wetool.version>1.5.0</wetool.version>
22-
<druid.version>1.2.6</druid.version>
22+
<druid.version>1.2.8</druid.version>
2323
<mysql.version>8.0.24</mysql.version>
2424
<pinyin4j.version>2.5.1</pinyin4j.version>
2525
<oshi.version>5.7.1</oshi.version>

wetool-plugin-support/src/main/java/org/code4everything/wetool/plugin/support/event/message/MouseCornerEventMessage.java

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,27 @@ public enum LocationTypeEnum {
4949
RIGHT_BOTTOM,
5050

5151
/**
52-
* 非触发角
52+
* 左侧
53+
*/
54+
LEFT_SIDE,
55+
56+
/**
57+
* 右侧
58+
*/
59+
RIGHT_SIDE,
60+
61+
/**
62+
* 顶部
63+
*/
64+
TOP_LINE,
65+
66+
/**
67+
* 底部
68+
*/
69+
BOTTOM_LINE,
70+
71+
/**
72+
* 非边缘情况
5373
*/
5474
NONE;
5575
}

0 commit comments

Comments
 (0)