kerry
8 years ago
1 changed files with 123 additions and 0 deletions
@ -0,0 +1,123 @@ |
|||||||
|
package com.fr.design.gui.ispinner; |
||||||
|
|
||||||
|
import java.text.ParseException; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
import javax.swing.JComponent; |
||||||
|
import javax.swing.JFormattedTextField; |
||||||
|
import javax.swing.JSpinner; |
||||||
|
import javax.swing.SpinnerDateModel; |
||||||
|
import javax.swing.SpinnerListModel; |
||||||
|
import javax.swing.SpinnerModel; |
||||||
|
import javax.swing.SpinnerNumberModel; |
||||||
|
import javax.swing.text.AttributeSet; |
||||||
|
import javax.swing.text.BadLocationException; |
||||||
|
import javax.swing.text.DefaultFormatterFactory; |
||||||
|
import javax.swing.text.DocumentFilter; |
||||||
|
|
||||||
|
import com.fr.stable.StableUtils; |
||||||
|
//_kerry: 用来修复Spinner输入数字自动填充的bug
|
||||||
|
public class FillBugSpinner extends UIBasicSpinner { |
||||||
|
public FillBugSpinner(SpinnerModel model) { |
||||||
|
super(model); |
||||||
|
} |
||||||
|
|
||||||
|
protected JComponent createEditor(SpinnerModel model) { |
||||||
|
if (model instanceof SpinnerDateModel) { |
||||||
|
return new DateEditor(this); |
||||||
|
} else if (model instanceof SpinnerListModel) { |
||||||
|
return new FillBugEditor(this); |
||||||
|
} else if (model instanceof SpinnerNumberModel) { |
||||||
|
return new NumberEditor(this); |
||||||
|
} else { |
||||||
|
return new DefaultEditor(this); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private class FillBugEditor extends DefaultEditor { |
||||||
|
public FillBugEditor(JSpinner spinner) { |
||||||
|
super(spinner); |
||||||
|
if (!(spinner.getModel() instanceof SpinnerListModel)) { |
||||||
|
throw new IllegalArgumentException( |
||||||
|
"model not a SpinnerListModel"); |
||||||
|
} |
||||||
|
getTextField().setEditable(true); |
||||||
|
getTextField().setFormatterFactory( |
||||||
|
new DefaultFormatterFactory(new ListFormatter())); |
||||||
|
} |
||||||
|
|
||||||
|
public SpinnerListModel getModel() { |
||||||
|
return (SpinnerListModel) (getSpinner().getModel()); |
||||||
|
} |
||||||
|
|
||||||
|
private class ListFormatter extends |
||||||
|
JFormattedTextField.AbstractFormatter { |
||||||
|
private DocumentFilter filter; |
||||||
|
|
||||||
|
public String valueToString(Object value) throws ParseException { |
||||||
|
if (value == null) { |
||||||
|
return ""; |
||||||
|
} |
||||||
|
return value.toString(); |
||||||
|
} |
||||||
|
|
||||||
|
public Object stringToValue(String string) |
||||||
|
throws ParseException { |
||||||
|
//add将行数转换成ABC
|
||||||
|
return string; |
||||||
|
} |
||||||
|
|
||||||
|
protected DocumentFilter getDocumentFilter() { |
||||||
|
if (filter == null) { |
||||||
|
filter = new Filter(); |
||||||
|
} |
||||||
|
return filter; |
||||||
|
} |
||||||
|
|
||||||
|
private class Filter extends DocumentFilter { |
||||||
|
public void replace(FilterBypass fb, int offset, |
||||||
|
int length, String string, AttributeSet attrs) |
||||||
|
throws BadLocationException { |
||||||
|
if (string != null |
||||||
|
&& (offset + length) == fb.getDocument() |
||||||
|
.getLength()) { |
||||||
|
List list = getModel().getList(); |
||||||
|
Object next = null; |
||||||
|
for (int counter = 0; counter < list.size(); counter++) { |
||||||
|
Object value = list.get(counter); |
||||||
|
String str = value.toString(); |
||||||
|
|
||||||
|
if (str != null |
||||||
|
&& str.startsWith(fb.getDocument() |
||||||
|
.getText(0, offset) |
||||||
|
+ string)) { |
||||||
|
next = value; |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
String value = (next != null) ? next.toString() |
||||||
|
: null; |
||||||
|
|
||||||
|
if (value != null) { |
||||||
|
fb.remove(0, offset + length); |
||||||
|
fb.insertString(0, value, null); |
||||||
|
getFormattedTextField().select( |
||||||
|
offset + string.length(), |
||||||
|
value.length()); |
||||||
|
return; |
||||||
|
} |
||||||
|
} |
||||||
|
super.replace(fb, offset, length, string, attrs); |
||||||
|
} |
||||||
|
|
||||||
|
public void insertString(FilterBypass fb, int offset, |
||||||
|
String string, AttributeSet attr) |
||||||
|
throws BadLocationException { |
||||||
|
replace(fb, offset, 0, string, attr); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue