|
|
|
@ -1,45 +1,27 @@
|
|
|
|
|
package com.fr.design.mainframe; |
|
|
|
|
|
|
|
|
|
import com.fr.base.BaseUtils; |
|
|
|
|
import com.fr.design.constants.LayoutConstants; |
|
|
|
|
import com.fr.design.gui.ibutton.UIButton; |
|
|
|
|
import com.fr.design.gui.ibutton.UIRadioButton; |
|
|
|
|
import com.fr.design.gui.ibutton.UISliderButton; |
|
|
|
|
import com.fr.design.gui.ilable.UILabel; |
|
|
|
|
import com.fr.design.gui.islider.UISlider; |
|
|
|
|
import com.fr.design.gui.ispinner.UIBasicSpinner; |
|
|
|
|
import com.fr.design.gui.itextfield.UITextField; |
|
|
|
|
import com.fr.design.layout.TableLayout; |
|
|
|
|
import com.fr.design.layout.TableLayoutHelper; |
|
|
|
|
import com.fr.design.utils.gui.GUICoreUtils; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import javax.swing.BorderFactory; |
|
|
|
|
import javax.swing.ButtonGroup; |
|
|
|
|
import javax.swing.JFormattedTextField; |
|
|
|
|
import javax.swing.JFrame; |
|
|
|
|
import javax.swing.JPanel; |
|
|
|
|
import javax.swing.JPopupMenu; |
|
|
|
|
import javax.swing.JRadioButton; |
|
|
|
|
import javax.swing.JSeparator; |
|
|
|
|
import javax.swing.JSpinner; |
|
|
|
|
import javax.swing.SpinnerNumberModel; |
|
|
|
|
import javax.swing.event.ChangeEvent; |
|
|
|
|
import javax.swing.event.ChangeListener; |
|
|
|
|
import javax.swing.text.DefaultFormatterFactory; |
|
|
|
|
import javax.swing.text.NumberFormatter; |
|
|
|
|
import javax.swing.text.AttributeSet; |
|
|
|
|
import javax.swing.text.BadLocationException; |
|
|
|
|
import javax.swing.text.PlainDocument; |
|
|
|
|
import java.awt.BorderLayout; |
|
|
|
|
import java.awt.Color; |
|
|
|
|
import java.awt.Component; |
|
|
|
|
import java.awt.Dimension; |
|
|
|
|
import java.awt.EventQueue; |
|
|
|
|
import java.awt.FlowLayout; |
|
|
|
|
import java.awt.Font; |
|
|
|
|
import java.awt.Point; |
|
|
|
|
import java.awt.event.ActionEvent; |
|
|
|
|
import java.awt.event.ActionListener; |
|
|
|
|
import java.awt.event.ItemEvent; |
|
|
|
|
import java.awt.event.ItemListener; |
|
|
|
|
import java.awt.event.KeyEvent; |
|
|
|
|
import java.awt.event.KeyListener; |
|
|
|
|
import java.awt.event.MouseEvent; |
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
|
@ -51,72 +33,37 @@ public class JFormSliderPane extends JPanel {
|
|
|
|
|
private static final double ONEPOINTEIGHT = 1.8; |
|
|
|
|
private static final int SIX = 6; |
|
|
|
|
private static final int TEN = 10; |
|
|
|
|
private static final int ONE_EIGHT = 18; |
|
|
|
|
private static final int FONT_SIZE = 12; |
|
|
|
|
private static final int SPINNER_WIDTH = 45; |
|
|
|
|
private static final int SPINNER_HEIGHT = 20; |
|
|
|
|
private static final int HALF_HUNDRED = 50; |
|
|
|
|
private static final int HUNDRED = 100; |
|
|
|
|
private static final int TWO_HUNDRED = 200; |
|
|
|
|
private static final int THREE_HUNDRED = 300; |
|
|
|
|
private static final int FOUR_HUNDRED = 400; |
|
|
|
|
private static final int DIALOG_WIDTH = 157; |
|
|
|
|
private static final int DIALOG_HEIGHT = 172; |
|
|
|
|
private static final int SLIDER_WIDTH = 220; |
|
|
|
|
private static final int SLIDER_HEIGHT = 20; |
|
|
|
|
private static final int SHOWVALBUTTON_WIDTH = 40; |
|
|
|
|
private static final int SHOWVALBUTTON_HEIGHTH = 20; |
|
|
|
|
private static final int SLIDER_GAP = 5; |
|
|
|
|
private static final String SUFFIX = "%"; |
|
|
|
|
private static final String REGEX = "[\\d%]*"; |
|
|
|
|
private static final int TOOLTIP_Y = 30; |
|
|
|
|
private static final Color BACK_COLOR = new Color(245, 245, 247); |
|
|
|
|
public int showValue = 100; |
|
|
|
|
public double resolutionTimes = 1.0; |
|
|
|
|
private UITextField showVal; |
|
|
|
|
private JSpinner showValSpinner; |
|
|
|
|
private UITextField showValField; |
|
|
|
|
private UISlider slider; |
|
|
|
|
private int times; |
|
|
|
|
private int sliderValue; |
|
|
|
|
private UIButton downButton; |
|
|
|
|
private UIButton upButton; |
|
|
|
|
private UISliderButton showValButton; |
|
|
|
|
private UIRadioButton twoHundredButton; |
|
|
|
|
private UIRadioButton oneHundredButton; |
|
|
|
|
private UIRadioButton sevenFiveButton; |
|
|
|
|
private UIRadioButton fiveTenButton; |
|
|
|
|
private UIRadioButton twoFiveButton; |
|
|
|
|
private UIRadioButton selfAdaptButton; |
|
|
|
|
private UIRadioButton customButton; |
|
|
|
|
//拖动条处理和button、直接输入不一样
|
|
|
|
|
private boolean isButtonOrIsTxt = true; |
|
|
|
|
//是否选中指定的几个缩放等级,避免触发不必要的事件
|
|
|
|
|
private boolean selectSpecified = false; |
|
|
|
|
private FormPopupPane dialog; |
|
|
|
|
private int upButtonX; |
|
|
|
|
private JPanel dialogContentPanel; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public JFormSliderPane() { |
|
|
|
|
this.setLayout(new BorderLayout()); |
|
|
|
|
initSlider(); |
|
|
|
|
initShowValSpinner(); |
|
|
|
|
//MoMeak:控制只能输入10-400
|
|
|
|
|
JSpinner.NumberEditor editor = new JSpinner.NumberEditor(showValSpinner, "0"); |
|
|
|
|
showValSpinner.setEditor(editor); |
|
|
|
|
JFormattedTextField textField = ((JSpinner.NumberEditor) showValSpinner.getEditor()).getTextField(); |
|
|
|
|
textField.setEditable(true); |
|
|
|
|
DefaultFormatterFactory factory = (DefaultFormatterFactory) textField.getFormatterFactory(); |
|
|
|
|
NumberFormatter formatter = (NumberFormatter) factory.getDefaultFormatter(); |
|
|
|
|
formatter.setAllowsInvalid(false); |
|
|
|
|
|
|
|
|
|
initDownUpButton(); |
|
|
|
|
initShowValButton(); |
|
|
|
|
initUIRadioButton(); |
|
|
|
|
initPane(); |
|
|
|
|
initShowValField(); |
|
|
|
|
JPanel panel = new JPanel(new FlowLayout(FlowLayout.CENTER, 0, 0)); |
|
|
|
|
panel.add(downButton); |
|
|
|
|
panel.add(slider); |
|
|
|
|
panel.add(upButton); |
|
|
|
|
panel.add(showValButton); |
|
|
|
|
panel.add(showValField); |
|
|
|
|
panel.setBackground(BACK_COLOR); |
|
|
|
|
this.add(panel, BorderLayout.NORTH); |
|
|
|
|
} |
|
|
|
@ -131,6 +78,7 @@ public class JFormSliderPane extends JPanel {
|
|
|
|
|
return new Point(event.getX(), event.getY() - TOOLTIP_Y); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
slider.setValue(HALF_HUNDRED); |
|
|
|
|
slider.setUI(new JSliderPaneUI(slider)); |
|
|
|
|
slider.addChangeListener(listener); |
|
|
|
|
slider.setPreferredSize(new Dimension(220, 20)); |
|
|
|
@ -139,16 +87,6 @@ public class JFormSliderPane extends JPanel {
|
|
|
|
|
slider.setToolTipText(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Scale_Slider")); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void initShowValSpinner() { |
|
|
|
|
showValSpinner = new UIBasicSpinner(new SpinnerNumberModel(HUNDRED, 0, FOUR_HUNDRED, 1)) { |
|
|
|
|
public Point getToolTipLocation(MouseEvent event) { |
|
|
|
|
return new Point(event.getX(), event.getY() - TOOLTIP_Y); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
showValSpinner.setEnabled(true); |
|
|
|
|
showValSpinner.addChangeListener(showValSpinnerChangeListener); |
|
|
|
|
showValSpinner.setPreferredSize(new Dimension(SPINNER_WIDTH, SPINNER_HEIGHT)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void initDownUpButton() { |
|
|
|
|
downButton = new UIButton(BaseUtils.readIcon("com/fr/design/images/data/source/normalDown20.png"), BaseUtils.readIcon("com/fr/design/images/data/source/hoverDown20.png"), BaseUtils.readIcon("com/fr/design/images/data/source/hoverDown20.png")) { |
|
|
|
@ -173,128 +111,76 @@ public class JFormSliderPane extends JPanel {
|
|
|
|
|
upButton.addActionListener(buttonActionListener); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void initShowValButton() { |
|
|
|
|
showValButton = new UISliderButton(showValSpinner.getValue() + "%"); |
|
|
|
|
showValButton.setBackground(BACK_COLOR); |
|
|
|
|
showValButton.setBorderPainted(false); |
|
|
|
|
showValButton.setPreferredSize(new Dimension(SHOWVALBUTTON_WIDTH, SHOWVALBUTTON_HEIGHTH)); |
|
|
|
|
showValButton.addActionListener(showValButtonActionListener); |
|
|
|
|
showValButton.setToolTipText(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Scale_Grade")); |
|
|
|
|
} |
|
|
|
|
private void initShowValField() { |
|
|
|
|
showValField = new UITextField(showValue + SUFFIX); |
|
|
|
|
showValField.setBorderPainted(false); |
|
|
|
|
showValField.setPreferredSize(new Dimension(SHOWVALBUTTON_WIDTH, SHOWVALBUTTON_HEIGHTH)); |
|
|
|
|
showValField.addKeyListener(new KeyListener() { |
|
|
|
|
@Override |
|
|
|
|
public void keyTyped(KeyEvent e) { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void keyPressed(KeyEvent e) { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void keyReleased(KeyEvent evt) { |
|
|
|
|
int code = evt.getKeyCode(); |
|
|
|
|
|
|
|
|
|
private void initUIRadioButton() { |
|
|
|
|
twoHundredButton = new UIRadioButton("200%"); |
|
|
|
|
oneHundredButton = new UIRadioButton("100%"); |
|
|
|
|
sevenFiveButton = new UIRadioButton("75%"); |
|
|
|
|
fiveTenButton = new UIRadioButton("50%"); |
|
|
|
|
twoFiveButton = new UIRadioButton("25%"); |
|
|
|
|
selfAdaptButton = new UIRadioButton(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Scale_Self_Adapt_Button")); |
|
|
|
|
selfAdaptButton.setFont(new Font("SimSun", Font.PLAIN, FONT_SIZE)); |
|
|
|
|
customButton = new UIRadioButton(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Scale_Custom_Button")); |
|
|
|
|
customButton.setFont(new Font("SimSun", Font.PLAIN, FONT_SIZE)); |
|
|
|
|
twoHundredButton.addItemListener(radioButtonItemListener); |
|
|
|
|
oneHundredButton.addItemListener(radioButtonItemListener); |
|
|
|
|
sevenFiveButton.addItemListener(radioButtonItemListener); |
|
|
|
|
fiveTenButton.addItemListener(radioButtonItemListener); |
|
|
|
|
twoFiveButton.addItemListener(radioButtonItemListener); |
|
|
|
|
customButton.addItemListener(new ItemListener() { |
|
|
|
|
if (code == KeyEvent.VK_ENTER) { |
|
|
|
|
showValue = parseInputValue(showValField.getText()); |
|
|
|
|
showValField.setText(showValue + SUFFIX); |
|
|
|
|
showValFieldChange(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
showValField.setDocument(new PlainDocument() { |
|
|
|
|
@Override |
|
|
|
|
public void itemStateChanged(ItemEvent e) { |
|
|
|
|
JRadioButton temp = (JRadioButton) e.getSource(); |
|
|
|
|
if (temp.isSelected()) { |
|
|
|
|
JFormattedTextField textField = ((JSpinner.NumberEditor) showValSpinner.getEditor()).getTextField(); |
|
|
|
|
textField.requestFocus(); |
|
|
|
|
textField.selectAll(); |
|
|
|
|
public void insertString(int offset, String s, AttributeSet a) throws BadLocationException { |
|
|
|
|
if (!s.matches(REGEX)) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
super.insertString(offset, s, a); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
ButtonGroup bg = new ButtonGroup();// 初始化按钮组
|
|
|
|
|
bg.add(twoHundredButton);// 加入按钮组
|
|
|
|
|
bg.add(oneHundredButton); |
|
|
|
|
bg.add(sevenFiveButton); |
|
|
|
|
bg.add(fiveTenButton); |
|
|
|
|
bg.add(twoFiveButton); |
|
|
|
|
bg.add(selfAdaptButton); |
|
|
|
|
bg.add(customButton); |
|
|
|
|
customButton.setSelected(true); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void initPane() { |
|
|
|
|
double p = TableLayout.PREFERRED; |
|
|
|
|
double f = TableLayout.FILL; |
|
|
|
|
double[] columnSize = {p, f}; |
|
|
|
|
double[] rowSize = {p, p, p, p, p, p, p, p}; |
|
|
|
|
UILabel upLabel = new UILabel(" " + com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Scale_EnlargeOrReduce")); |
|
|
|
|
upLabel.setOpaque(false); |
|
|
|
|
JPanel septPane = new JPanel(new BorderLayout()); |
|
|
|
|
JSeparator sept = new JSeparator(); |
|
|
|
|
sept.setBackground(new Color(232, 232, 233)); |
|
|
|
|
septPane.add(sept, BorderLayout.NORTH); |
|
|
|
|
septPane.setBorder(BorderFactory.createEmptyBorder(2, 5, 1, 10)); |
|
|
|
|
septPane.setBackground(BACK_COLOR); |
|
|
|
|
twoHundredButton.setBackground(BACK_COLOR); |
|
|
|
|
oneHundredButton.setBackground(BACK_COLOR); |
|
|
|
|
sevenFiveButton.setBackground(BACK_COLOR); |
|
|
|
|
fiveTenButton.setBackground(BACK_COLOR); |
|
|
|
|
twoFiveButton.setBackground(BACK_COLOR); |
|
|
|
|
// selfAdaptButton.setBackground(BACK_COLOR);
|
|
|
|
|
customButton.setBackground(BACK_COLOR); |
|
|
|
|
Component[][] components = new Component[][]{ |
|
|
|
|
new Component[]{upLabel, null}, |
|
|
|
|
new Component[]{septPane, null}, |
|
|
|
|
new Component[]{twoHundredButton, null}, |
|
|
|
|
new Component[]{oneHundredButton, null}, |
|
|
|
|
new Component[]{sevenFiveButton, null}, |
|
|
|
|
new Component[]{fiveTenButton, null}, |
|
|
|
|
new Component[]{twoFiveButton, null}, |
|
|
|
|
new Component[]{customButton, createSpinnerPanel()} |
|
|
|
|
}; |
|
|
|
|
dialogContentPanel = TableLayoutHelper.createGapTableLayoutPane(components, rowSize, columnSize, LayoutConstants.VGAP_MEDIUM, 0); |
|
|
|
|
dialogContentPanel.setBackground(BACK_COLOR); |
|
|
|
|
dialogContentPanel.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 0)); |
|
|
|
|
private void showValFieldChange() { |
|
|
|
|
isButtonOrIsTxt = true; |
|
|
|
|
showValue = getPreferredValue(showValue); |
|
|
|
|
refreshShowValueFieldText(); |
|
|
|
|
refreshSlider(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private JPanel createSpinnerPanel() { |
|
|
|
|
JPanel spinnerPanel = new JPanel(new FlowLayout()); |
|
|
|
|
spinnerPanel.add(showValSpinner); |
|
|
|
|
UILabel percent = new UILabel("%"); |
|
|
|
|
percent.setFont(new Font("SimSun", Font.PLAIN, FONT_SIZE)); |
|
|
|
|
spinnerPanel.add(percent); |
|
|
|
|
spinnerPanel.setBackground(BACK_COLOR); |
|
|
|
|
return spinnerPanel; |
|
|
|
|
private int getPreferredValue(int value){ |
|
|
|
|
if (value > FOUR_HUNDRED) { |
|
|
|
|
value = FOUR_HUNDRED; |
|
|
|
|
} |
|
|
|
|
if (value < TEN) { |
|
|
|
|
value = TEN; |
|
|
|
|
} |
|
|
|
|
return value; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private ActionListener showValButtonActionListener = new ActionListener() { |
|
|
|
|
@Override |
|
|
|
|
public void actionPerformed(ActionEvent e) { |
|
|
|
|
popupDialog(); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
private void refreshShowValueFieldText(){ |
|
|
|
|
showValField.setText(showValue + SUFFIX); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private ChangeListener showValSpinnerChangeListener = new ChangeListener() { |
|
|
|
|
@Override |
|
|
|
|
public void stateChanged(ChangeEvent e) { |
|
|
|
|
int val = (int) ((UIBasicSpinner) e.getSource()).getValue(); |
|
|
|
|
isButtonOrIsTxt = true; |
|
|
|
|
resolutionTimes = divide(showValue, 100, 2); |
|
|
|
|
if (val > FOUR_HUNDRED) { |
|
|
|
|
showValSpinner.setValue(FOUR_HUNDRED); |
|
|
|
|
val = FOUR_HUNDRED; |
|
|
|
|
} |
|
|
|
|
if (val < TEN) { |
|
|
|
|
showValSpinner.setValue(TEN); |
|
|
|
|
val = TEN; |
|
|
|
|
} |
|
|
|
|
refreshSlider(val); |
|
|
|
|
refreshBottun(val); |
|
|
|
|
JFormattedTextField textField = ((JSpinner.NumberEditor) showValSpinner.getEditor()).getTextField(); |
|
|
|
|
textField.setCaretPosition(showValSpinner.getValue().toString().length()); |
|
|
|
|
if (!selectSpecified) { |
|
|
|
|
customButton.setSelected(true); |
|
|
|
|
} |
|
|
|
|
private int parseInputValue(String text){ |
|
|
|
|
if (text.endsWith(SUFFIX)){ |
|
|
|
|
text = text.substring(0, text.length() -1); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
try{ |
|
|
|
|
return Integer.parseInt(text); |
|
|
|
|
}catch (NumberFormatException e){ |
|
|
|
|
return HUNDRED; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//定义一个监听器,用于监听所有滑动条
|
|
|
|
@ -302,13 +188,12 @@ public class JFormSliderPane extends JPanel {
|
|
|
|
|
public void stateChanged(ChangeEvent event) { |
|
|
|
|
//取出滑动条的值,并在文本中显示出来
|
|
|
|
|
if (!isButtonOrIsTxt) { |
|
|
|
|
customButton.setSelected(true); |
|
|
|
|
EventQueue.invokeLater(new Runnable() { |
|
|
|
|
public void run() { |
|
|
|
|
sliderValue = slider.getValue(); |
|
|
|
|
getTimes(sliderValue); |
|
|
|
|
showValue = times; |
|
|
|
|
showValSpinner.setValue(times); |
|
|
|
|
refreshShowValueFieldText(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
@ -317,41 +202,23 @@ public class JFormSliderPane extends JPanel {
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
private ItemListener radioButtonItemListener = new ItemListener() { |
|
|
|
|
@Override |
|
|
|
|
public void itemStateChanged(ItemEvent e) { |
|
|
|
|
JRadioButton temp = (JRadioButton) e.getSource(); |
|
|
|
|
if (temp.isSelected()) { |
|
|
|
|
selectSpecified = true; |
|
|
|
|
showValSpinner.setValue(Integer.valueOf(temp.getText().substring(0, temp.getText().indexOf("%")))); |
|
|
|
|
selectSpecified = false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
private void refreshSlider(int val) { |
|
|
|
|
showValue = val; |
|
|
|
|
if (showValue > HUNDRED) { |
|
|
|
|
slider.setValue((int) (showValue + TWO_HUNDRED) / SIX); |
|
|
|
|
} else if (showValue < HUNDRED) { |
|
|
|
|
slider.setValue((int) ((showValue - TEN) / ONEPOINTEIGHT)); |
|
|
|
|
} else { |
|
|
|
|
slider.setValue(HALF_HUNDRED); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void refreshBottun(int val) { |
|
|
|
|
showValButton.setText(val + "%"); |
|
|
|
|
private void refreshSlider() { |
|
|
|
|
slider.setValue(calSliderValue(showValue)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public double getResolutionTimes() { |
|
|
|
|
return this.resolutionTimes; |
|
|
|
|
private int calSliderValue(int value) { |
|
|
|
|
int result; |
|
|
|
|
if (value > HUNDRED) { |
|
|
|
|
result = (value + TWO_HUNDRED) / SIX; |
|
|
|
|
} else if (value < HUNDRED) { |
|
|
|
|
result = (int) ((value - TEN) / ONEPOINTEIGHT); |
|
|
|
|
} else { |
|
|
|
|
result = HALF_HUNDRED; |
|
|
|
|
} |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int getshowValue() { |
|
|
|
|
return this.showValue; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static double divide(double v1, double v2, int scale) { |
|
|
|
|
BigDecimal b1 = new BigDecimal(Double.toString(v1)); |
|
|
|
@ -362,30 +229,28 @@ public class JFormSliderPane extends JPanel {
|
|
|
|
|
private ActionListener buttonActionListener = new ActionListener() { |
|
|
|
|
@Override |
|
|
|
|
public void actionPerformed(ActionEvent e) { |
|
|
|
|
showValue = (int) showValSpinner.getValue(); |
|
|
|
|
isButtonOrIsTxt = true; |
|
|
|
|
if ("less".equals(e.getActionCommand())) { |
|
|
|
|
int newDownVal = showValue - TEN; |
|
|
|
|
if (newDownVal >= TEN) { |
|
|
|
|
showValue = newDownVal; |
|
|
|
|
showValSpinner.setValue(newDownVal); |
|
|
|
|
} else { |
|
|
|
|
showValue = newDownVal; |
|
|
|
|
showValSpinner.setValue(TEN); |
|
|
|
|
showValue = TEN; |
|
|
|
|
} |
|
|
|
|
refreshShowValueFieldText(); |
|
|
|
|
refreshSlider(); |
|
|
|
|
} |
|
|
|
|
if ("more".equals(e.getActionCommand())) { |
|
|
|
|
int newUpVal = showValue + TEN; |
|
|
|
|
if (newUpVal <= FOUR_HUNDRED) { |
|
|
|
|
showValue = newUpVal; |
|
|
|
|
showValSpinner.setValue(newUpVal); |
|
|
|
|
} else { |
|
|
|
|
showValue = newUpVal; |
|
|
|
|
showValSpinner.setValue(FOUR_HUNDRED); |
|
|
|
|
showValue = TEN; |
|
|
|
|
} |
|
|
|
|
refreshShowValueFieldText(); |
|
|
|
|
refreshSlider(); |
|
|
|
|
} |
|
|
|
|
isButtonOrIsTxt = true; |
|
|
|
|
customButton.setSelected(true); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
@ -396,37 +261,26 @@ public class JFormSliderPane extends JPanel {
|
|
|
|
|
} else if (value < HALF_HUNDRED) { |
|
|
|
|
times = (int) Math.round(ONEPOINTEIGHT * value + TEN); |
|
|
|
|
} else { |
|
|
|
|
times = (int) (SIX * value - TWO_HUNDRED); |
|
|
|
|
times = SIX * value - TWO_HUNDRED; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public JSpinner getShowVal() { |
|
|
|
|
return this.showValSpinner; |
|
|
|
|
public int getShowValue() { |
|
|
|
|
return this.showValue; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public UIRadioButton getSelfAdaptButton() { |
|
|
|
|
return this.selfAdaptButton; |
|
|
|
|
public void setShowValue(int value) { |
|
|
|
|
showValue = value; |
|
|
|
|
showValFieldChange(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void popupDialog() { |
|
|
|
|
Point btnCoords = upButton.getLocationOnScreen(); |
|
|
|
|
if (dialog == null) { |
|
|
|
|
dialog = new FormPopupPane(upButton, dialogContentPanel); |
|
|
|
|
if (upButtonX == 0) { |
|
|
|
|
upButtonX = btnCoords.x; |
|
|
|
|
GUICoreUtils.showPopupMenu(dialog, upButton, -DIALOG_WIDTH + upButton.getWidth() + SHOWVALBUTTON_WIDTH, -DIALOG_HEIGHT); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
if (upButtonX == 0) { |
|
|
|
|
upButtonX = btnCoords.x; |
|
|
|
|
GUICoreUtils.showPopupMenu(dialog, upButton, -DIALOG_WIDTH + upButton.getWidth() + SHOWVALBUTTON_WIDTH, -DIALOG_HEIGHT); |
|
|
|
|
} else { |
|
|
|
|
GUICoreUtils.showPopupMenu(dialog, upButton, -DIALOG_WIDTH + upButton.getWidth() + SHOWVALBUTTON_WIDTH, -DIALOG_HEIGHT); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void addValueChangeListener(ChangeListener changeListener){ |
|
|
|
|
this.slider.addChangeListener(changeListener); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
|
|
JFrame jf = new JFrame("test"); |
|
|
|
|
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
|
|
|
@ -440,16 +294,3 @@ public class JFormSliderPane extends JPanel {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class FormPopupPane extends JPopupMenu { |
|
|
|
|
private static final int DIALOG_WIDTH = 157; |
|
|
|
|
private static final int DIALOG_HEIGHT = 172; |
|
|
|
|
|
|
|
|
|
FormPopupPane(UIButton b, JPanel dialogContentPanel) { |
|
|
|
|
this.add(dialogContentPanel, BorderLayout.CENTER); |
|
|
|
|
this.setPreferredSize(new Dimension(DIALOG_WIDTH, DIALOG_HEIGHT)); |
|
|
|
|
this.setBackground(new Color(245, 245, 247)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|