|
|
@ -4,10 +4,10 @@ import com.fr.base.CoreDecimalFormat; |
|
|
|
import com.fr.base.GraphHelper; |
|
|
|
import com.fr.base.GraphHelper; |
|
|
|
import com.fr.base.Style; |
|
|
|
import com.fr.base.Style; |
|
|
|
import com.fr.base.TextFormat; |
|
|
|
import com.fr.base.TextFormat; |
|
|
|
import com.fr.design.constants.UIConstants; |
|
|
|
|
|
|
|
import com.fr.data.core.FormatField; |
|
|
|
import com.fr.data.core.FormatField; |
|
|
|
import com.fr.data.core.FormatField.FormatContents; |
|
|
|
import com.fr.data.core.FormatField.FormatContents; |
|
|
|
import com.fr.design.border.UIRoundedBorder; |
|
|
|
import com.fr.design.border.UIRoundedBorder; |
|
|
|
|
|
|
|
import com.fr.design.constants.UIConstants; |
|
|
|
import com.fr.design.gui.icombobox.UIComboBox; |
|
|
|
import com.fr.design.gui.icombobox.UIComboBox; |
|
|
|
import com.fr.design.gui.icombobox.UIComboBoxRenderer; |
|
|
|
import com.fr.design.gui.icombobox.UIComboBoxRenderer; |
|
|
|
import com.fr.design.gui.icontainer.UIScrollPane; |
|
|
|
import com.fr.design.gui.icontainer.UIScrollPane; |
|
|
@ -81,16 +81,7 @@ public class FormatPane extends AbstractBasicStylePane { |
|
|
|
|
|
|
|
|
|
|
|
}; |
|
|
|
}; |
|
|
|
typeComboBox = new UIComboBox(types); |
|
|
|
typeComboBox = new UIComboBox(types); |
|
|
|
UIComboBoxRenderer render = new UIComboBoxRenderer() { |
|
|
|
UIComboBoxRenderer render = createComBoxRender(); |
|
|
|
@Override |
|
|
|
|
|
|
|
public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) { |
|
|
|
|
|
|
|
JLabel label = (JLabel) super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus); |
|
|
|
|
|
|
|
if (value instanceof Integer) { |
|
|
|
|
|
|
|
label.setText(" " + FormatField.getInstance().getName((Integer) value)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return label; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
typeComboBox.setRenderer(render); |
|
|
|
typeComboBox.setRenderer(render); |
|
|
|
typeComboBox.addItemListener(itemListener); |
|
|
|
typeComboBox.addItemListener(itemListener); |
|
|
|
contentPane.add(sampleLabel, BorderLayout.NORTH); |
|
|
|
contentPane.add(sampleLabel, BorderLayout.NORTH); |
|
|
@ -114,6 +105,18 @@ public class FormatPane extends AbstractBasicStylePane { |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected UIComboBoxRenderer createComBoxRender(){ |
|
|
|
|
|
|
|
return new UIComboBoxRenderer() { |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) { |
|
|
|
|
|
|
|
JLabel label = (JLabel) super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus); |
|
|
|
|
|
|
|
if (value instanceof Integer) { |
|
|
|
|
|
|
|
label.setText(" " + FormatField.getInstance().getName((Integer) value)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return label; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void iniSampleLable() { |
|
|
|
private void iniSampleLable() { |
|
|
|
Border innterborder = new UIRoundedBorder(UIConstants.LINE_COLOR, 1, 4); |
|
|
|
Border innterborder = new UIRoundedBorder(UIConstants.LINE_COLOR, 1, 4); |
|
|
|