kerry
4 years ago
1 changed files with 516 additions and 0 deletions
@ -0,0 +1,516 @@ |
|||||||
|
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.imenu.UIPopupMenu; |
||||||
|
import com.fr.design.gui.islider.UISlider; |
||||||
|
import com.fr.design.gui.ispinner.UIBasicSpinner; |
||||||
|
import com.fr.design.gui.ispinner.UISpinnerUI; |
||||||
|
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.JButton; |
||||||
|
import javax.swing.JFormattedTextField; |
||||||
|
import javax.swing.JFrame; |
||||||
|
import javax.swing.JPanel; |
||||||
|
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.plaf.basic.BasicSliderUI; |
||||||
|
import javax.swing.text.DefaultFormatterFactory; |
||||||
|
import javax.swing.text.NumberFormatter; |
||||||
|
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.Graphics; |
||||||
|
import java.awt.Graphics2D; |
||||||
|
import java.awt.Image; |
||||||
|
import java.awt.Insets; |
||||||
|
import java.awt.Point; |
||||||
|
import java.awt.Rectangle; |
||||||
|
import java.awt.event.ActionEvent; |
||||||
|
import java.awt.event.ActionListener; |
||||||
|
import java.awt.event.ItemEvent; |
||||||
|
import java.awt.event.ItemListener; |
||||||
|
import java.awt.event.MouseEvent; |
||||||
|
import java.math.BigDecimal; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by MoMeak on 2017/7/13. |
||||||
|
*/ |
||||||
|
public class JSliderPane extends JPanel { |
||||||
|
|
||||||
|
public static final Image APPFIT_V0 = BaseUtils.readImage("com/fr/design/images/control/icon_thumb_normal.png"); |
||||||
|
private static final double ONEPOINTEIGHT = 1.8; |
||||||
|
private static final int SIX = 6; |
||||||
|
private static final int TEN = 10; |
||||||
|
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 FOUR_HUNDRED = 400; |
||||||
|
private static final int SHOWVALBUTTON_WIDTH = 40; |
||||||
|
private static final int SHOWVALBUTTON_HEIGHTH = 20; |
||||||
|
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 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 PopupPane dialog; |
||||||
|
private int upButtonX; |
||||||
|
private JPanel dialogContentPanel; |
||||||
|
|
||||||
|
|
||||||
|
public JSliderPane() { |
||||||
|
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(); |
||||||
|
JPanel panel = new JPanel(new FlowLayout(FlowLayout.CENTER, 0, 0)); |
||||||
|
panel.add(downButton); |
||||||
|
panel.add(slider); |
||||||
|
panel.add(upButton); |
||||||
|
panel.add(showValButton); |
||||||
|
panel.setBackground(BACK_COLOR); |
||||||
|
this.add(panel, BorderLayout.NORTH); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public static JSliderPane getInstance() { |
||||||
|
return new JSliderPane(); |
||||||
|
} |
||||||
|
|
||||||
|
private void initSlider() { |
||||||
|
slider = new UISlider(0, HUNDRED, HALF_HUNDRED) { |
||||||
|
public Point getToolTipLocation(MouseEvent event) { |
||||||
|
return new Point(event.getX(), event.getY() - TOOLTIP_Y); |
||||||
|
} |
||||||
|
}; |
||||||
|
slider.setUI(new JSliderPaneUI(slider)); |
||||||
|
slider.addChangeListener(listener); |
||||||
|
slider.setPreferredSize(new Dimension(220, 20)); |
||||||
|
//去掉虚线框
|
||||||
|
slider.setFocusable(false); |
||||||
|
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.setUI(new UISpinnerUI()); |
||||||
|
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")) { |
||||||
|
public Point getToolTipLocation(MouseEvent event) { |
||||||
|
return new Point(event.getX(), event.getY() - TOOLTIP_Y); |
||||||
|
} |
||||||
|
}; |
||||||
|
downButton.setOpaque(false); |
||||||
|
downButton.setBorderPainted(false); |
||||||
|
downButton.setToolTipText(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Scale_Down")); |
||||||
|
upButton = new UIButton(BaseUtils.readIcon("com/fr/design/images/data/source/normalUp20.png"), BaseUtils.readIcon("com/fr/design/images/data/source/hoverUp20.png"), BaseUtils.readIcon("com/fr/design/images/data/source/hoverUp20.png")) { |
||||||
|
public Point getToolTipLocation(MouseEvent event) { |
||||||
|
return new Point(event.getX(), event.getY() - TOOLTIP_Y); |
||||||
|
} |
||||||
|
}; |
||||||
|
upButton.setOpaque(false); |
||||||
|
upButton.setBorderPainted(false); |
||||||
|
upButton.setToolTipText(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Scale_Up")); |
||||||
|
downButton.setActionCommand("less"); |
||||||
|
upButton.setActionCommand("more"); |
||||||
|
downButton.addActionListener(buttonActionListener); |
||||||
|
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 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() { |
||||||
|
@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(); |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
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, 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[]{selfAdaptButton, 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 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 ActionListener showValButtonActionListener = new ActionListener() { |
||||||
|
@Override |
||||||
|
public void actionPerformed(ActionEvent e) { |
||||||
|
popupDialog(); |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
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()); |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
|
||||||
|
//定义一个监听器,用于监听所有滑动条
|
||||||
|
private ChangeListener listener = new ChangeListener() { |
||||||
|
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); |
||||||
|
customButton.setSelected(true); |
||||||
|
} |
||||||
|
}); |
||||||
|
} else { |
||||||
|
isButtonOrIsTxt = false; |
||||||
|
} |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
private ItemListener radioButtonItemListener = new ItemListener() { |
||||||
|
@Override |
||||||
|
public void itemStateChanged(ItemEvent e) { |
||||||
|
JRadioButton temp = (JRadioButton) e.getSource(); |
||||||
|
if (temp.isSelected()) { |
||||||
|
showValSpinner.setValue(Integer.valueOf(temp.getText().substring(0, temp.getText().indexOf("%")))); |
||||||
|
} |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
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 + "%"); |
||||||
|
} |
||||||
|
|
||||||
|
public double getResolutionTimes() { |
||||||
|
return this.resolutionTimes; |
||||||
|
} |
||||||
|
|
||||||
|
public int getshowValue() { |
||||||
|
return this.showValue; |
||||||
|
} |
||||||
|
|
||||||
|
public void reset() { |
||||||
|
this.showValSpinner.setValue(HUNDRED); |
||||||
|
} |
||||||
|
|
||||||
|
public static double divide(double v1, double v2, int scale) { |
||||||
|
BigDecimal b1 = new BigDecimal(Double.toString(v1)); |
||||||
|
BigDecimal b2 = new BigDecimal(Double.toString(v2)); |
||||||
|
return b1.divide(b2, scale).doubleValue(); |
||||||
|
} |
||||||
|
|
||||||
|
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); |
||||||
|
} |
||||||
|
} |
||||||
|
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); |
||||||
|
} |
||||||
|
} |
||||||
|
isButtonOrIsTxt = true; |
||||||
|
customButton.setSelected(true); |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
|
||||||
|
private void getTimes(int value) { |
||||||
|
if (value == HALF_HUNDRED) { |
||||||
|
times = HUNDRED; |
||||||
|
} else if (value < HALF_HUNDRED) { |
||||||
|
times = (int) Math.round(ONEPOINTEIGHT * value + TEN); |
||||||
|
} else { |
||||||
|
times = SIX * value - TWO_HUNDRED; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public JSpinner getShowVal() { |
||||||
|
return this.showValSpinner; |
||||||
|
} |
||||||
|
|
||||||
|
public UIRadioButton getSelfAdaptButton() { |
||||||
|
return this.selfAdaptButton; |
||||||
|
} |
||||||
|
|
||||||
|
private void popupDialog() { |
||||||
|
Point btnCoords = upButton.getLocationOnScreen(); |
||||||
|
if (dialog == null) { |
||||||
|
dialog = new PopupPane(upButton, dialogContentPanel); |
||||||
|
if (upButtonX == 0) { |
||||||
|
upButtonX = btnCoords.x; |
||||||
|
GUICoreUtils.showPopupMenu(dialog, upButton, -dialog.getPreferredSize().width + upButton.getWidth() + SHOWVALBUTTON_WIDTH, -dialog.getPreferredSize().height); |
||||||
|
} |
||||||
|
} else { |
||||||
|
if (upButtonX == 0) { |
||||||
|
upButtonX = btnCoords.x; |
||||||
|
GUICoreUtils.showPopupMenu(dialog, upButton, -dialog.getPreferredSize().width + upButton.getWidth() + SHOWVALBUTTON_WIDTH, -dialog.getPreferredSize().height); |
||||||
|
} else { |
||||||
|
GUICoreUtils.showPopupMenu(dialog, upButton, -dialog.getPreferredSize().width + upButton.getWidth() + SHOWVALBUTTON_WIDTH, -dialog.getPreferredSize().height); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static void main(String[] args) { |
||||||
|
JFrame jf = new JFrame("test"); |
||||||
|
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
||||||
|
JPanel content = (JPanel) jf.getContentPane(); |
||||||
|
content.setLayout(new BorderLayout()); |
||||||
|
content.add(JSliderPane.getInstance(), BorderLayout.CENTER); |
||||||
|
GUICoreUtils.centerWindow(jf); |
||||||
|
jf.setSize(400, 80); |
||||||
|
jf.setVisible(true); |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
class JSliderPaneUI extends BasicSliderUI { |
||||||
|
|
||||||
|
private static final Color BACK_COLOR = new Color(245, 245, 247); |
||||||
|
private static final int THUMB_XOFFSET = 8; |
||||||
|
private static final int THUMB_YOFFSET = 3; |
||||||
|
private static final int FOUR = 4; |
||||||
|
private static final int FIVE = 5; |
||||||
|
private static final int SIX = 6; |
||||||
|
private static final int MID_X_SHIFT = 2; // 中点标记的水平位置偏移
|
||||||
|
|
||||||
|
public JSliderPaneUI(UISlider b) { |
||||||
|
super(b); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 绘制指示物 |
||||||
|
*/ |
||||||
|
public void paintThumb(Graphics g) { |
||||||
|
Rectangle knobBounds = thumbRect; |
||||||
|
Graphics2D g2d = (Graphics2D) g; |
||||||
|
g2d.drawImage(JSliderPane.APPFIT_V0, knobBounds.x - THUMB_XOFFSET, knobBounds.y + THUMB_YOFFSET, null); |
||||||
|
g2d.dispose(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 绘制刻度轨迹 |
||||||
|
*/ |
||||||
|
public void paintTrack(Graphics g) { |
||||||
|
int cy, cw; |
||||||
|
Rectangle trackBounds = trackRect; |
||||||
|
if (slider.getOrientation() == UISlider.HORIZONTAL) { |
||||||
|
Graphics2D g2 = (Graphics2D) g; |
||||||
|
cy = (trackBounds.height / 2); |
||||||
|
cw = trackBounds.width; |
||||||
|
g2.setPaint(BACK_COLOR); |
||||||
|
g2.fillRect(0, -cy, cw + 10, cy * 4); |
||||||
|
g.setColor(new Color(216, 216, 216)); |
||||||
|
g.drawLine(0, cy, cw + 3, cy); |
||||||
|
g.drawLine(MID_X_SHIFT + cw / 2, cy - FOUR, MID_X_SHIFT + cw / 2, cy + FOUR); |
||||||
|
} else { |
||||||
|
super.paintTrack(g); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public void setThumbLocation(int x, int y) { |
||||||
|
super.setThumbLocation(x, y); |
||||||
|
slider.repaint(); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
class PopupPane extends UIPopupMenu { |
||||||
|
private static final float REC = 8f; |
||||||
|
private static final int INSERT_TOPBOTTOM = 10; |
||||||
|
private static final int INSERT_LEFTRIGHT = 2; |
||||||
|
private static final int DIALOG_WIDTH = 157; |
||||||
|
private static final int DIALOG_HEIGHT = 205; |
||||||
|
|
||||||
|
PopupPane(JButton b, JPanel dialogContentPanel) { |
||||||
|
this.add(dialogContentPanel, BorderLayout.CENTER); |
||||||
|
this.setPreferredSize(new Dimension(DIALOG_WIDTH, DIALOG_HEIGHT)); |
||||||
|
this.setBackground(new Color(245, 245, 247)); |
||||||
|
} |
||||||
|
|
||||||
|
public Insets getInsets() { |
||||||
|
return new Insets(INSERT_TOPBOTTOM, INSERT_LEFTRIGHT, INSERT_TOPBOTTOM, INSERT_LEFTRIGHT); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue