Skip to content

Commit 772467e

Browse files
committed
修改部分细节
1 parent e55eef1 commit 772467e

179 files changed

Lines changed: 222 additions & 273 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

JavaGUI_UTF8.iml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,6 @@
5454
<orderEntry type="library" name="Maven: com.google.errorprone:error_prone_annotations:2.2.0" level="project" />
5555
<orderEntry type="library" name="Maven: com.google.j2objc:j2objc-annotations:1.1" level="project" />
5656
<orderEntry type="library" name="Maven: org.codehaus.mojo:animal-sniffer-annotations:1.17" level="project" />
57+
<orderEntry type="library" name="Maven: org.xerial:sqlite-jdbc:3.27.2.1" level="project" />
5758
</component>
5859
</module>

libs/sqlite-jdbc-3.8.11.2.jar

-5.32 MB
Binary file not shown.

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<groupId>com.Table</groupId>
5+
<groupId>com.dut</groupId>
66
<artifactId>T1</artifactId>
77
<version>0.0.1-SNAPSHOT</version>
88
<packaging>jar</packaging>
@@ -23,6 +23,13 @@
2323
<artifactId>guava</artifactId>
2424
<version>27.1-jre</version>
2525
</dependency>
26+
<!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
27+
<dependency>
28+
<groupId>org.xerial</groupId>
29+
<artifactId>sqlite-jdbc</artifactId>
30+
<version>3.27.2.1</version>
31+
</dependency>
32+
2633
</dependencies>
2734
<build>
2835
<plugins>
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* BeautyEyeLNFHelper.java at 2015-2-1 20:25:40, original version by Jack Jiang.
1010
* You can contact author with [email protected].
1111
*/
12-
package com.myblog;
12+
package com.dut.swing;
1313

1414
import java.awt.Color;
1515

@@ -18,7 +18,8 @@
1818
import javax.swing.UIManager;
1919
import javax.swing.border.Border;
2020

21-
import com.myblog.utils.JVM;
21+
import com.dut.swing.utils.Platform;
22+
import com.dut.swing.utils.JVM;
2223

2324

2425
/**
@@ -267,7 +268,7 @@ public static LookAndFeel getBeautyEyeLNFWindowsPlatform()
267268
*/
268269
public static void launchBeautyEyeLNF() throws Exception
269270
{
270-
if(com.myblog.utils.Platform.isWindows())
271+
if(Platform.isWindows())
271272
{
272273
if(BeautyEyeLNFHelper.debug)
273274
System.out.println("已智能启用Windows平台专用的BeautyEye外观实现(您也可自行启用跨平台实现).");

src/com/myblog/BeautyEyeLookAndFeelCross.java renamed to src/com/DUT/swing/BeautyEyeLookAndFeelCross.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* BeautyEyeLookAndFeelCross.java at 2015-2-1 20:25:40, original version by Jack Jiang.
1010
* You can contact author with [email protected].
1111
*/
12-
package com.myblog;
12+
package com.dut.swing;
1313

1414
import javax.swing.UIDefaults;
1515
import javax.swing.UIManager;
@@ -49,7 +49,7 @@ public BeautyEyeLookAndFeelCross()
4949
UIManager.put("TabbedPane.contentOpaque", Boolean.FALSE);
5050
//此项如是true,则将会为TabbedPane的标签填充天蓝色背景
5151
UIManager.put("TabbedPane.tabsOpaque", Boolean.FALSE);
52-
BeautyEyeLNFHelper.implLNF();
52+
com.dut.swing.BeautyEyeLNFHelper.implLNF();
5353

5454
//自定义JFileChooser的L&F实现(为了解决JFileChooser中的文件查看列表的行高问题)
5555
// org.jb2011.lnf.beautyeye.ch20_filechooser.__UI__.uiImpl_cross();

src/com/myblog/BeautyEyeLookAndFeelWin.java renamed to src/com/DUT/swing/BeautyEyeLookAndFeelWin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// * BeautyEyeLookAndFeelWin.java at 2015-2-1 20:25:39, original version by Jack Jiang.
1010
// * You can contact author with [email protected].
1111
// */
12-
//package com.myblog;
12+
//package com.DUT;
1313
//
1414
//import javax.swing.BorderFactory;
1515
//import javax.swing.JDialog;

src/com/myblog/components/JRadioButtonTest.java renamed to src/com/DUT/swing/components/JRadioButtonTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.myblog.components;
1+
package com.dut.swing.components;
22

33

44
import javax.swing.*;

src/com/myblog/components/list/JFrameJList.java renamed to src/com/DUT/swing/components/list/JFrameJList.java

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
1-
package com.myblog.components.list;
1+
package com.dut.swing.components.list;
2+
3+
import java.awt.Dimension;
24

3-
import java.awt.Dimension;
4-
import java.util.Date;
5-
import java.util.Vector;
6-
75
import javax.swing.DefaultListModel;
86
import javax.swing.JFrame;
97
import javax.swing.JList;
10-
import javax.swing.JScrollPane;
11-
import javax.swing.JTable;
12-
import javax.swing.ListSelectionModel;
8+
import javax.swing.JScrollPane;
9+
import javax.swing.ListSelectionModel;
1310
import javax.swing.event.ListSelectionEvent;
14-
import javax.swing.event.ListSelectionListener;
15-
import javax.swing.table.DefaultTableModel;
11+
import javax.swing.event.ListSelectionListener;
1612

1713
/*
1814
JList:

src/com/myblog/components/list/ListTest.java renamed to src/com/DUT/swing/components/list/ListTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.myblog.components.list;
1+
package com.dut.swing.components.list;
22

33
import java.awt.Color;
44
import java.awt.Container;

src/com/myblog/components/table/MultiColumHeaderTable.java renamed to src/com/DUT/swing/components/table/MultiColumHeaderTable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.myblog.components.table;
1+
package com.dut.swing.components.table;
22

33
import javax.swing.*;
44

0 commit comments

Comments
 (0)