Skip to content

Commit 7cdac38

Browse files
committed
Merge branch 'v1.3.2-dev' into v1.4.0-dev
2 parents 40bceb0 + edcb01c commit 7cdac38

File tree

2 files changed

+111
-0
lines changed

2 files changed

+111
-0
lines changed
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="cn.bigcoder.plugin.objecthelper.ui.ConvertPage">
3+
<grid id="27dc6" binding="main" layout-manager="GridLayoutManager" row-count="3" column-count="1" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
4+
<margin top="0" left="0" bottom="0" right="0"/>
5+
<constraints>
6+
<xy x="20" y="20" width="500" height="400"/>
7+
</constraints>
8+
<properties/>
9+
<border type="none"/>
10+
<children>
11+
<grid id="e945a" layout-manager="GridLayoutManager" row-count="2" column-count="3" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
12+
<margin top="0" left="0" bottom="0" right="0"/>
13+
<constraints>
14+
<grid row="0" column="0" row-span="1" col-span="1" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
15+
</constraints>
16+
<properties>
17+
<enabled value="false"/>
18+
</properties>
19+
<border type="none" title="转换对象"/>
20+
<children>
21+
<component id="cabec" class="javax.swing.JLabel">
22+
<constraints>
23+
<grid row="0" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="4" fill="0" indent="0" use-parent-layout="false"/>
24+
</constraints>
25+
<properties>
26+
<text value="From:"/>
27+
</properties>
28+
</component>
29+
<component id="2a12e" class="javax.swing.JLabel">
30+
<constraints>
31+
<grid row="1" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="4" fill="0" indent="0" use-parent-layout="false"/>
32+
</constraints>
33+
<properties>
34+
<text value="To:"/>
35+
</properties>
36+
</component>
37+
<component id="1617a" class="javax.swing.JLabel" binding="fromLabelVal">
38+
<constraints>
39+
<grid row="0" column="1" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="8" fill="0" indent="0" use-parent-layout="false"/>
40+
</constraints>
41+
<properties>
42+
<text value=""/>
43+
</properties>
44+
</component>
45+
<hspacer id="b1191">
46+
<constraints>
47+
<grid row="0" column="2" row-span="1" col-span="1" vsize-policy="1" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
48+
</constraints>
49+
</hspacer>
50+
<component id="2559d" class="javax.swing.JLabel" binding="toLabelVal">
51+
<constraints>
52+
<grid row="1" column="1" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="8" fill="0" indent="0" use-parent-layout="false"/>
53+
</constraints>
54+
<properties>
55+
<text value=""/>
56+
</properties>
57+
</component>
58+
<hspacer id="207a9">
59+
<constraints>
60+
<grid row="1" column="2" row-span="1" col-span="1" vsize-policy="1" hsize-policy="6" anchor="0" fill="1" indent="0" use-parent-layout="false"/>
61+
</constraints>
62+
</hspacer>
63+
</children>
64+
</grid>
65+
<grid id="2cc7" layout-manager="GridLayoutManager" row-count="1" column-count="1" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
66+
<margin top="0" left="0" bottom="0" right="0"/>
67+
<constraints>
68+
<grid row="1" column="0" row-span="1" col-span="1" vsize-policy="3" hsize-policy="3" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
69+
</constraints>
70+
<properties/>
71+
<border type="none"/>
72+
<children/>
73+
</grid>
74+
<scrollpane id="b8d3b">
75+
<constraints>
76+
<grid row="2" column="0" row-span="1" col-span="1" vsize-policy="7" hsize-policy="7" anchor="0" fill="3" indent="0" use-parent-layout="false"/>
77+
</constraints>
78+
<properties>
79+
<background color="-1"/>
80+
<enabled value="false"/>
81+
</properties>
82+
<border type="none" title="转换关系"/>
83+
<children>
84+
<grid id="565de" binding="convertPanel" custom-create="true" layout-manager="GridLayoutManager" row-count="1" column-count="1" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
85+
<margin top="0" left="0" bottom="0" right="0"/>
86+
<constraints/>
87+
<properties/>
88+
<border type="none"/>
89+
<children/>
90+
</grid>
91+
</children>
92+
</scrollpane>
93+
</children>
94+
</grid>
95+
</form>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package cn.bigcoder.plugin.objecthelper.ui;
2+
3+
import javax.swing.JLabel;
4+
import javax.swing.JPanel;
5+
6+
/**
7+
* @author: Jindong.Tian
8+
* @date: 2024-03-02
9+
**/
10+
public class ConvertPage {
11+
12+
private JPanel main;
13+
private JLabel fromLabelVal;
14+
private JLabel toLabelVal;
15+
private JPanel convertPanel;
16+
}

0 commit comments

Comments
 (0)