|
|
|
@ -394,6 +394,7 @@ public class RegPane extends BasicPane {
|
|
|
|
|
private static class RegLengthPane extends DisplayPane { |
|
|
|
|
private UISpinner minLenSpinner; |
|
|
|
|
private UISpinner maxLenSpinner; |
|
|
|
|
private final int DEFAULT_WIDTH = 60; |
|
|
|
|
|
|
|
|
|
public RegLengthPane(){ |
|
|
|
|
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
|
|
|
@ -403,8 +404,11 @@ public class RegPane extends BasicPane {
|
|
|
|
|
maxLenSpinner = new UISpinner(0, Integer.MAX_VALUE, 1, 0); |
|
|
|
|
UILabel minLabel = new UILabel(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Reg_Min_Length")); |
|
|
|
|
UILabel maxLabel = new UILabel(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Reg_Max_Length")); |
|
|
|
|
minLabel.setPreferredSize(new Dimension(60, 20)); |
|
|
|
|
maxLabel.setPreferredSize(new Dimension(60, 20)); |
|
|
|
|
int minLabelWidth = Math.max(minLabel.getPreferredSize().width, DEFAULT_WIDTH); |
|
|
|
|
int maxLabelWidth = Math.max(maxLabel.getPreferredSize().width, DEFAULT_WIDTH); |
|
|
|
|
|
|
|
|
|
minLabel.setPreferredSize(new Dimension(minLabelWidth, 20)); |
|
|
|
|
maxLabel.setPreferredSize(new Dimension(maxLabelWidth, 20)); |
|
|
|
|
double f = TableLayout.FILL; |
|
|
|
|
double p = TableLayout.PREFERRED; |
|
|
|
|
Component[][] components = new Component[][]{ |
|
|
|
|