|
|
|
@ -30,6 +30,9 @@ public class ChangeConfigPane extends BasicBeanPane<ChartCollection> {
|
|
|
|
|
private static final int WIDTH = 100; |
|
|
|
|
private static final int MIN_TIME = 0; |
|
|
|
|
private static final int MAX_TIME = Integer.MAX_VALUE; |
|
|
|
|
private static final int CONSTANT_TEN = 10; |
|
|
|
|
private static final int CONSTANT_THIRTY = 30; |
|
|
|
|
private static final int CONSTANT_ZERO = 0; |
|
|
|
|
private JPanel contentPane; |
|
|
|
|
//配置方式按钮
|
|
|
|
|
private UIButtonGroup<Integer> configStyleButton; |
|
|
|
@ -50,7 +53,7 @@ public class ChangeConfigPane extends BasicBeanPane<ChartCollection> {
|
|
|
|
|
initButtonGroup(); |
|
|
|
|
configPane = createConfigPane(); |
|
|
|
|
contentPane = createContentPane(); |
|
|
|
|
contentPane.setBorder(BorderFactory.createEmptyBorder(10, 30, 10, 30)); |
|
|
|
|
contentPane.setBorder(BorderFactory.createEmptyBorder(CONSTANT_TEN, CONSTANT_THIRTY, CONSTANT_TEN, CONSTANT_THIRTY)); |
|
|
|
|
this.add(contentPane, BorderLayout.CENTER); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -85,7 +88,7 @@ public class ChangeConfigPane extends BasicBeanPane<ChartCollection> {
|
|
|
|
|
panel.add(buttonConfigPane, "button"); |
|
|
|
|
panel.add(carouselConfigPane, "carousel"); |
|
|
|
|
|
|
|
|
|
panel.setBorder(BorderFactory.createEmptyBorder(0,10,0,0)); |
|
|
|
|
panel.setBorder(BorderFactory.createEmptyBorder(CONSTANT_ZERO, CONSTANT_TEN, CONSTANT_ZERO, CONSTANT_ZERO)); |
|
|
|
|
|
|
|
|
|
return panel; |
|
|
|
|
} |
|
|
|
|