Browse Source

无JIRA任务,给CustomChooserPanel.java 调整缩进

master
plough 8 years ago
parent
commit
87b8d6266c
  1. 387
      designer_base/src/com/fr/design/style/color/CustomChooserPanel.java

387
designer_base/src/com/fr/design/style/color/CustomChooserPanel.java

@ -42,72 +42,111 @@ import com.fr.general.Inter;
/**
* 颜色选择器自定义面板
* @author focus
*
* @author focus
*/
class CustomChooserPanel extends AbstractColorChooserPanel {
/**
* The gradient image displayed.
*/
class CustomChooserPanel extends AbstractColorChooserPanel
{
/** The gradient image displayed. */
private transient Image gradientImage;
/** The Panel that holds the gradient image. */
/**
* The Panel that holds the gradient image.
*/
private transient JPanel gradientPanel;
/** The track gradient image. */
/**
* The track gradient image.
*/
private transient Image trackImage;
/** The panel that holds the track. */
/**
* The panel that holds the track.
*/
private transient JPanel trackPanel;
/** The slider for the locked HSB value. */
/**
* The slider for the locked HSB value.
*/
private transient UISlider slider;
/** The RadioButton that controls the Hue. */
/**
* The RadioButton that controls the Hue.
*/
private transient UIRadioButton hRadio;
/** The RadioButton that controls the Saturation. */
/**
* The RadioButton that controls the Saturation.
*/
private transient UIRadioButton sRadio;
/** The RadioButton that controls the Brightness. */
/**
* The RadioButton that controls the Brightness.
*/
private transient UIRadioButton bRadio;
/** The UIBasicSpinner that controls the Hue. */
/**
* The UIBasicSpinner that controls the Hue.
*/
private transient UIBasicSpinner hSpinner;
/** The UIBasicSpinner that controls the Saturation. */
/**
* The UIBasicSpinner that controls the Saturation.
*/
private transient UIBasicSpinner sSpinner;
/** The UIBasicSpinner that controls the Brightness. */
/**
* The UIBasicSpinner that controls the Brightness.
*/
private transient UIBasicSpinner bSpinner;
/** The UIBasicSpinner that controls the Red. */
/**
* The UIBasicSpinner that controls the Red.
*/
private transient UIBasicSpinner rSpinner;
/** The UIBasicSpinner that controls the Green. */
/**
* The UIBasicSpinner that controls the Green.
*/
private transient UIBasicSpinner gSpinner;
/** The UIBasicSpinner that controls the Blue. */
/**
* The UIBasicSpinner that controls the Blue.
*/
private transient UIBasicSpinner bbSpinner;
private transient UITextField field;
/** The default width of the gradient image. */
/**
* The default width of the gradient image.
*/
private static final int IMG_WIDTH = 200;
/** The default height of the gradient image. */
/**
* The default height of the gradient image.
*/
private static final int IMG_HEIGHT = 205;
/** The default width of the track gradient. */
/**
* The default width of the track gradient.
*/
private static final int TRACK_WIDTH = 20;
/** The UILabel for Red. */
/**
* The UILabel for Red.
*/
private static final UILabel R = new UILabel("R");
/** The UILabel for Green. */
/**
* The UILabel for Green.
*/
private static final UILabel G = new UILabel("G");
/** The UILabel for Blue. */
/**
* The UILabel for Blue.
*/
private static final UILabel B = new UILabel("B");
private static final int H_MAX = 365;
@ -131,7 +170,9 @@ class CustomChooserPanel extends AbstractColorChooserPanel
private ImageRGBScrollListener rgbScroll = new ImageRGBScrollListener();
/** The point that is displayed in the gradient image. */
/**
* The point that is displayed in the gradient image.
*/
private transient Point gradientPoint = new Point();
/**
@ -140,19 +181,29 @@ class CustomChooserPanel extends AbstractColorChooserPanel
*/
private transient boolean internalChange = false;
/** This indicates that the change to the spinner is triggered internally. */
/**
* This indicates that the change to the spinner is triggered internally.
*/
private transient boolean spinnerTrigger = false;
/** This int identifies which spinner is currently locked. */
/**
* This int identifies which spinner is currently locked.
*/
private transient int locked = -1;
/** This value indicates that the Hue spinner is locked. */
/**
* This value indicates that the Hue spinner is locked.
*/
static final int HLOCKED = 0;
/** This value indicates that the Saturation spinner is locked. */
/**
* This value indicates that the Saturation spinner is locked.
*/
static final int SLOCKED = 1;
/** This value indicates that the Brightness spinner is locked. */
/**
* This value indicates that the Brightness spinner is locked.
*/
static final int BLOCKED = 2;
/**
@ -162,12 +213,13 @@ class CustomChooserPanel extends AbstractColorChooserPanel
private transient boolean handlingMouse;
// 文本监听器,监听十六进制文本输入
class TextDocumentListener implements DocumentListener{
class TextDocumentListener implements DocumentListener {
// 十六进制颜色验证的正则表达式
private static final String HEX_PATTERN = "([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$";
private Pattern pattern;
private Matcher matcher;
@Override
public void insertUpdate(DocumentEvent e) {
Document doc = e.getDocument();
@ -185,12 +237,12 @@ class CustomChooserPanel extends AbstractColorChooserPanel
}
private void updateColorForHex(Document doc){
private void updateColorForHex(Document doc) {
try {
String str = doc.getText(0, doc.getLength());
pattern = Pattern.compile(HEX_PATTERN);
matcher = pattern.matcher(str);
if(matcher.matches()){
if (matcher.matches()) {
Color color = new Color(Integer.parseInt(str, 16));
CustomChooserPanel.this.getColorSelectionModel().setSelectedColor(color);
}
@ -205,16 +257,14 @@ class CustomChooserPanel extends AbstractColorChooserPanel
* This helper class handles mouse events on the gradient image.
*/
class MainGradientMouseListener extends MouseAdapter
implements MouseMotionListener
{
implements MouseMotionListener {
/**
* This method is called when the mouse is pressed over the gradient
* image. The JColorChooser is then updated with new HSB values.
*
* @param e The MouseEvent.
*/
public void mousePressed(MouseEvent e)
{
public void mousePressed(MouseEvent e) {
gradientPoint = e.getPoint();
update(e.getPoint());
}
@ -225,10 +275,9 @@ class CustomChooserPanel extends AbstractColorChooserPanel
*
* @param e The MouseEvent.
*/
public void mouseDragged(MouseEvent e)
{
public void mouseDragged(MouseEvent e) {
Point p = e.getPoint();
if (isMouseOutOfImage(p)){
if (isMouseOutOfImage(p)) {
return;
}
@ -236,7 +285,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
update(p);
}
private boolean isMouseOutOfImage(Point p){
private boolean isMouseOutOfImage(Point p) {
return (p.x < 0 || p.y < 0 || p.y > IMG_HEIGHT || p.x > IMG_WIDTH);
}
@ -245,8 +294,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
*
* @param e The MouseEvent.
*/
public void mouseMoved(MouseEvent e)
{
public void mouseMoved(MouseEvent e) {
// Do nothing.
}
@ -255,14 +303,13 @@ class CustomChooserPanel extends AbstractColorChooserPanel
*
* @param p The Point where the MouseEvent occurred.
*/
private void update(Point p)
{
private void update(Point p) {
handlingMouse = true;
if (hSpinner.isEnabled()){
if (hSpinner.isEnabled()) {
updateH(p);
}else if (sSpinner.isEnabled()){
} else if (sSpinner.isEnabled()) {
updateS(p);
}else{
} else {
updateB(p);
}
handlingMouse = false;
@ -273,8 +320,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
*
* @param p The point where the MouseEvent occurred.
*/
private void updateH(Point p)
{
private void updateH(Point p) {
float s = (IMG_WIDTH - p.x * 1f) / IMG_WIDTH;
float b = (IMG_HEIGHT - p.y * 1f) / IMG_HEIGHT;
@ -292,8 +338,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
*
* @param p The point where the MouseEvent occurred.
*/
private void updateS(Point p)
{
private void updateS(Point p) {
float h = p.x * 1f / IMG_WIDTH;
float b = (IMG_HEIGHT - p.y * 1f) / IMG_HEIGHT;
@ -310,8 +355,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
*
* @param p The point where the MouseEvent occurred.
*/
private void updateB(Point p)
{
private void updateB(Point p) {
float h = p.x * 1f / IMG_WIDTH;
float s = (IMG_HEIGHT - p.y * 1f) / IMG_HEIGHT;
@ -327,25 +371,22 @@ class CustomChooserPanel extends AbstractColorChooserPanel
/**
* This method listens for slider value changes.
*/
class SliderChangeListener implements ChangeListener
{
class SliderChangeListener implements ChangeListener {
/**
* This method is called when the slider value changes. It should change
* the color of the JColorChooser.
*
* @param e The ChangeEvent.
*/
public void stateChanged(ChangeEvent e)
{
if (internalChange){
public void stateChanged(ChangeEvent e) {
if (internalChange) {
return;
}
Integer value = new Integer(slider.getValue());
switch (locked)
{
switch (locked) {
case HLOCKED:
hSpinner.setValue(value);
break;
@ -364,29 +405,22 @@ class CustomChooserPanel extends AbstractColorChooserPanel
* This helper class determines the active UIBasicSpinner.
*/
class RadioStateListener extends MouseAdapter
implements MouseMotionListener
{
implements MouseMotionListener {
/**
* This method is called when there is a new UIRadioButton that was
* selected. As a result, it should activate the associated UIBasicSpinner.
*
* @param e The ChangeEvent.
*/
public void mousePressed(MouseEvent e)
{
public void mousePressed(MouseEvent e) {
UIBasicSpinner change;
if (e.getSource() == hRadio)
{
if (e.getSource() == hRadio) {
locked = HLOCKED;
change = hSpinner;
}
else if (e.getSource() == sRadio)
{
} else if (e.getSource() == sRadio) {
locked = SLOCKED;
change = sSpinner;
}
else
{
} else {
locked = BLOCKED;
change = bSpinner;
}
@ -406,17 +440,15 @@ class CustomChooserPanel extends AbstractColorChooserPanel
/**
* hsl 监听
*/
class ImageScrollListener implements ChangeListener
{
class ImageScrollListener implements ChangeListener {
/**
* This method is called whenever one of the UIBasicSpinner values change. The
* JColorChooser should be updated with the new HSB values.
*
* @param e The ChangeEvent.
*/
public void stateChanged(ChangeEvent e)
{
if (internalChange){
public void stateChanged(ChangeEvent e) {
if (internalChange) {
return;
}
updateImageAndTrack();
@ -427,17 +459,15 @@ class CustomChooserPanel extends AbstractColorChooserPanel
/**
* rgb 监听
*/
class ImageRGBScrollListener implements ChangeListener
{
class ImageRGBScrollListener implements ChangeListener {
/**
* This method is called whenever one of the UIBasicSpinner values change. The
* JColorChooser should be updated with the new HSB values.
*
* @param e The ChangeEvent.
*/
public void stateChanged(ChangeEvent e)
{
if (internalChange){
public void stateChanged(ChangeEvent e) {
if (internalChange) {
return;
}
@ -447,7 +477,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
int bb = (Integer) bbSpinner.getValue();
spinnerTrigger = true;
getColorSelectionModel().setSelectedColor(new Color(r,g,bb));
getColorSelectionModel().setSelectedColor(new Color(r, g, bb));
spinnerTrigger = false;
updateChooser();
@ -458,8 +488,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
/**
* Creates a new DefaultHSBChooserPanel object.
*/
CustomChooserPanel()
{
CustomChooserPanel() {
super();
}
@ -469,8 +498,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
*
* @return The name displayed in the JColorChooser tab.
*/
public String getDisplayName()
{
public String getDisplayName() {
return Inter.getLocText("FR-Designer_Custom");
}
@ -479,8 +507,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
* UIBasicSpinners, the JSlider, and the gradient image point) with updated
* values when the JColorChooser color value changes.
*/
public void updateChooser()
{
public void updateChooser() {
Color c = getColorSelectionModel().getSelectedColor();
float[] hsbVals = Color.RGBtoHSB(c.getRed(), c.getGreen(), c.getBlue(),
null);
@ -490,32 +517,29 @@ class CustomChooserPanel extends AbstractColorChooserPanel
internalChange = false;
if (! handlingMouse && slider != null && ! slider.getValueIsAdjusting()){
if (!handlingMouse && slider != null && !slider.getValueIsAdjusting()) {
updateImage();
}
if (! handlingMouse || locked != HLOCKED){
if (!handlingMouse || locked != HLOCKED) {
updateTrack();
}
updateTextFields();
updateHexFields();
}
private void adjustHSLValue(float[] hsbVals){
if (! spinnerTrigger)
{
private void adjustHSLValue(float[] hsbVals) {
if (!spinnerTrigger) {
hSpinner.setValue(new Integer((int) (hsbVals[0] * HSPINNER_VALUE)));
sSpinner.setValue(new Integer((int) (hsbVals[1] * SSPINNER_VALUE)));
bSpinner.setValue(new Integer((int) (hsbVals[2] * LSPINNER_VALUE)));
}
switch (locked)
{
switch (locked) {
case HLOCKED:
if (slider != null){
if (slider != null) {
slider.setValue(((Number) hSpinner.getValue()).intValue());
}
if (! handlingMouse)
{
if (!handlingMouse) {
gradientPoint.x = (int) ((1
- ((Number) sSpinner.getValue()).intValue() / SSPINNER_VALUE) * IMG_WIDTH);
gradientPoint.y = (int) ((1
@ -523,22 +547,20 @@ class CustomChooserPanel extends AbstractColorChooserPanel
}
break;
case SLOCKED:
if (slider != null){
if (slider != null) {
slider.setValue(((Number) sSpinner.getValue()).intValue());
}
if (! handlingMouse)
{
if (!handlingMouse) {
gradientPoint.x = (int) (((Number) hSpinner.getValue()).intValue() / HSPINNER_VALUE * IMG_WIDTH);
gradientPoint.y = (int) ((1
- ((Number) bSpinner.getValue()).intValue() / LSPINNER_VALUE) * IMG_HEIGHT);
}
break;
case BLOCKED:
if (slider != null){
if (slider != null) {
slider.setValue(((Number) bSpinner.getValue()).intValue());
}
if (! handlingMouse)
{
if (!handlingMouse) {
gradientPoint.x = (int) (((Number) hSpinner.getValue()).intValue() / HSPINNER_VALUE * IMG_WIDTH);
gradientPoint.y = (int) ((1
- ((Number) sSpinner.getValue()).intValue() / SSPINNER_VALUE) * IMG_HEIGHT);
@ -547,7 +569,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
}
}
private void updateImageAndTrack(){
private void updateImageAndTrack() {
float h = ((Number) hSpinner.getValue()).intValue() / HSPINNER_VALUE;
float s = ((Number) sSpinner.getValue()).intValue() / SSPINNER_VALUE;
float b = ((Number) bSpinner.getValue()).intValue() / LSPINNER_VALUE;
@ -556,8 +578,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
getColorSelectionModel().setSelectedColor(new Color(Color.HSBtoRGB(h, s, b)));
spinnerTrigger = false;
if (! handlingMouse && slider != null && ! slider.getValueIsAdjusting())
{
if (!handlingMouse && slider != null && !slider.getValueIsAdjusting()) {
updateImage();
updateTrack();
}
@ -569,8 +590,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
/**
* This method builds the DefaultHSBChooserPanel.
*/
protected void buildChooser()
{
protected void buildChooser() {
setLayout(new BorderLayout());
add(buildRightPanel(), BorderLayout.EAST);
JPanel container = new JPanel();
@ -603,17 +623,14 @@ class CustomChooserPanel extends AbstractColorChooserPanel
repaint();
}
private JPanel createGradientPanel(){
return new JPanel()
{
public Dimension getPreferredSize()
{
private JPanel createGradientPanel() {
return new JPanel() {
public Dimension getPreferredSize() {
return new Dimension(IMG_WIDTH, IMG_HEIGHT);
}
public void paint(Graphics g)
{
if (gradientImage != null){
public void paint(Graphics g) {
if (gradientImage != null) {
g.drawImage(gradientImage, 0, 0, this);
}
@ -625,17 +642,14 @@ class CustomChooserPanel extends AbstractColorChooserPanel
};
}
private JPanel createTrackPanel(){
return new JPanel()
{
public Dimension getPreferredSize()
{
private JPanel createTrackPanel() {
return new JPanel() {
public Dimension getPreferredSize() {
return new Dimension(TRACK_WIDTH, IMG_HEIGHT);
}
public void paint(Graphics g)
{
if (trackImage != null){
public void paint(Graphics g) {
if (trackImage != null) {
g.drawImage(trackImage, 0, 0, this);
}
@ -648,8 +662,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
*
* @param chooser The JColorChooser to remove this panel from.
*/
public void uninstallChooserPanel(JColorChooser chooser)
{
public void uninstallChooserPanel(JColorChooser chooser) {
trackImage = null;
gradientImage = null;
gradientPanel = null;
@ -673,8 +686,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
*
* @return The right side panel.
*/
private Container buildRightPanel()
{
private Container buildRightPanel() {
JPanel container = new JPanel();
container.setLayout(new FlowLayout(FlowLayout.RIGHT));
@ -682,15 +694,15 @@ class CustomChooserPanel extends AbstractColorChooserPanel
JPanel mainPanel = new JPanel();
mainPanel.setLayout(new BorderLayout(0, 10));
UILabel label = new UILabel();
label.setSize(200,200);
label.setSize(200, 200);
container.add(label);
container.add(mainPanel);
// hsl和rgb面板
JPanel hslAndRgbPanel = new JPanel();
hslAndRgbPanel.setLayout(new BorderLayout(0,16));
hslAndRgbPanel.add(initialHSLPanel(),BorderLayout.CENTER);
hslAndRgbPanel.add(initialRGBPanel(),BorderLayout.SOUTH);
hslAndRgbPanel.setLayout(new BorderLayout(0, 16));
hslAndRgbPanel.add(initialHSLPanel(), BorderLayout.CENTER);
hslAndRgbPanel.add(initialRGBPanel(), BorderLayout.SOUTH);
// 十六进制面板
JPanel hexPanel = new JPanel();
@ -698,14 +710,14 @@ class CustomChooserPanel extends AbstractColorChooserPanel
hexPanel.add(new UILabel("#"));
hexPanel.add(field);
mainPanel.add(hslAndRgbPanel,BorderLayout.CENTER);
mainPanel.add(hexPanel,BorderLayout.SOUTH);
mainPanel.add(hslAndRgbPanel, BorderLayout.CENTER);
mainPanel.add(hexPanel, BorderLayout.SOUTH);
return container;
}
//初始化HSL部分
private JPanel initialHSLPanel(){
private JPanel initialHSLPanel() {
hRadio = new UIRadioButton("H");
sRadio = new UIRadioButton("S");
bRadio = new UIRadioButton("L");
@ -734,7 +746,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
bSpinner.addChangeListener(scroll);
JPanel hslPanel = new JPanel();
hslPanel.setLayout(new GridLayout(3,0,0,5));
hslPanel.setLayout(new GridLayout(3, 0, 0, 5));
JPanel hPanel = new JPanel();
hPanel.setLayout(new FlowLayout(FlowLayout.RIGHT, 10, 0));
@ -756,7 +768,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
return hslPanel;
}
private JPanel initialRGBPanel(){
private JPanel initialRGBPanel() {
// 初始化RGB部分
rSpinner = new UIBasicSpinner(new SpinnerNumberModel(0, 0, 255, 1));
gSpinner = new UIBasicSpinner(new SpinnerNumberModel(0, 0, 255, 1));
@ -770,11 +782,11 @@ class CustomChooserPanel extends AbstractColorChooserPanel
TextDocumentListener listen = new TextDocumentListener();
field = new UITextField();
field.setPreferredSize(new Dimension(70,18));
field.setPreferredSize(new Dimension(70, 18));
field.getDocument().addDocumentListener(listen);
JPanel rgbPanel = new JPanel();
rgbPanel.setLayout(new GridLayout(3,0,0,5));
rgbPanel.setLayout(new GridLayout(3, 0, 0, 5));
JPanel rPanel = new JPanel();
rPanel.setLayout(new FlowLayout(FlowLayout.RIGHT, 10, 0));
@ -802,8 +814,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
*
* @return The small display icon.
*/
public Icon getSmallDisplayIcon()
{
public Icon getSmallDisplayIcon() {
return null;
}
@ -812,8 +823,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
*
* @return The large display icon.
*/
public Icon getLargeDisplayIcon()
{
public Icon getLargeDisplayIcon() {
return null;
}
@ -821,15 +831,13 @@ class CustomChooserPanel extends AbstractColorChooserPanel
* This method updates the gradient image with a new one taking the Hue
* value as the constant.
*/
private void updateHLockImage()
{
private void updateHLockImage() {
int index = 0;
int[] pix = new int[IMG_WIDTH * IMG_HEIGHT];
float hValue = ((Number) hSpinner.getValue()).intValue() / HSPINNER_VALUE;
for (int j = 0; j < IMG_HEIGHT; j++)
{
for (int i = 0; i < IMG_WIDTH; i++){
for (int j = 0; j < IMG_HEIGHT; j++) {
for (int i = 0; i < IMG_WIDTH; i++) {
pix[index++] = Color.HSBtoRGB(hValue, (IMG_WIDTH - i * 1f) / IMG_WIDTH,
(IMG_HEIGHT - j * 1f) / IMG_HEIGHT) | (BINARY_FOR_EIGHT << TWENTY_FOUR);
}
@ -843,14 +851,13 @@ class CustomChooserPanel extends AbstractColorChooserPanel
* This method updates the gradient image with a new one taking the
* Brightness value as the constant.
*/
private void updateBLockImage()
{
private void updateBLockImage() {
int[] pix = new int[IMG_WIDTH * IMG_HEIGHT];
float bValue = ((Number) bSpinner.getValue()).intValue() / LSPINNER_VALUE;
int index = 0;
for (int j = 0; j < IMG_HEIGHT; j++){
for (int i = 0; i < IMG_WIDTH; i++){
for (int j = 0; j < IMG_HEIGHT; j++) {
for (int i = 0; i < IMG_WIDTH; i++) {
pix[index++] = Color.HSBtoRGB(i * 1f / IMG_WIDTH,
(IMG_HEIGHT - j * 1f) / IMG_HEIGHT, bValue) | (BINARY_FOR_EIGHT << TWENTY_FOUR);
}
@ -864,16 +871,15 @@ class CustomChooserPanel extends AbstractColorChooserPanel
* This method updates the gradient image with a new one taking the
* Saturation value as the constant.
*/
private void updateSLockImage()
{
private void updateSLockImage() {
int[] pix = new int[IMG_WIDTH * IMG_HEIGHT];
float sValue = ((Number) sSpinner.getValue()).intValue() / SSPINNER_VALUE;
int index = 0;
for (int j = 0; j < IMG_HEIGHT; j++){
for (int i = 0; i < IMG_WIDTH; i++){
for (int j = 0; j < IMG_HEIGHT; j++) {
for (int i = 0; i < IMG_WIDTH; i++) {
pix[index++] = Color.HSBtoRGB(i * 1f / IMG_WIDTH, sValue,
(IMG_HEIGHT - j * 1f) / IMG_HEIGHT)| (BINARY_FOR_EIGHT << TWENTY_FOUR);
(IMG_HEIGHT - j * 1f) / IMG_HEIGHT) | (BINARY_FOR_EIGHT << TWENTY_FOUR);
}
}
@ -885,10 +891,8 @@ class CustomChooserPanel extends AbstractColorChooserPanel
* This method calls the appropriate method to update the gradient image
* depending on which HSB value is constant.
*/
private void updateImage()
{
switch (locked)
{
private void updateImage() {
switch (locked) {
case HLOCKED:
updateHLockImage();
break;
@ -904,8 +908,7 @@ class CustomChooserPanel extends AbstractColorChooserPanel
/**
* This method updates the TextFields with the correct RGB values.
*/
private void updateTextFields()
{
private void updateTextFields() {
int c = getColorSelectionModel().getSelectedColor().getRGB();
removeRGBSpinnerChangeLisener();
@ -917,20 +920,19 @@ class CustomChooserPanel extends AbstractColorChooserPanel
repaint();
}
private void removeRGBSpinnerChangeLisener(){
private void removeRGBSpinnerChangeLisener() {
rSpinner.removeChangeListener(rgbScroll);
gSpinner.removeChangeListener(rgbScroll);
bbSpinner.removeChangeListener(rgbScroll);
}
private void addRGBSpinnerChangeLisener(){
private void addRGBSpinnerChangeLisener() {
rSpinner.addChangeListener(rgbScroll);
gSpinner.addChangeListener(rgbScroll);
bbSpinner.addChangeListener(rgbScroll);
}
private void updateHexFields()
{
private void updateHexFields() {
Color color = getColorSelectionModel().getSelectedColor();
String R = Integer.toHexString(color.getRed());
@ -940,9 +942,9 @@ class CustomChooserPanel extends AbstractColorChooserPanel
String G = Integer.toHexString(color.getGreen());
G = G.length() < 2 ? ('0' + G) : G;
try{
try {
field.setText(R + G + B);
}catch(Exception e){
} catch (Exception e) {
// 因为有了DocumentListener的监听,导致setText()的时候报错但不影响使用
// 所以只捕捉,不处理
}
@ -953,27 +955,23 @@ class CustomChooserPanel extends AbstractColorChooserPanel
* This method updates the slider in response to making a different HSB
* property the constant.
*/
private void updateSlider()
{
if (slider == null){
private void updateSlider() {
if (slider == null) {
return;
}
slider.setMinimum(0);
if (locked == HLOCKED)
{
if (locked == HLOCKED) {
internalChange = true;
slider.setValue(((Number) hSpinner.getValue()).intValue());
slider.setMaximum(359);
internalChange = false;
slider.setInverted(true);
}
else
{
} else {
slider.setInverted(false);
if (locked == SLOCKED){
if (locked == SLOCKED) {
slider.setValue(((Number) sSpinner.getValue()).intValue());
}else{
} else {
slider.setValue(((Number) bSpinner.getValue()).intValue());
}
slider.setMaximum(100);
@ -986,10 +984,8 @@ class CustomChooserPanel extends AbstractColorChooserPanel
* This method updates the track gradient image depending on which HSB
* property is constant.
*/
private void updateTrack()
{
switch (locked)
{
private void updateTrack() {
switch (locked) {
case HLOCKED:
updateHTrack();
break;
@ -1006,13 +1002,12 @@ class CustomChooserPanel extends AbstractColorChooserPanel
* This method updates the track gradient image if the Hue value is allowed
* to change (according to the UIRadioButtons).
*/
private void updateHTrack()
{
private void updateHTrack() {
int trackIndex = 0;
int[] trackPix = new int[TRACK_WIDTH * IMG_HEIGHT];
for (int j = 0; j < IMG_HEIGHT; j++){
for (int i = 0; i < TRACK_WIDTH; i++){
for (int j = 0; j < IMG_HEIGHT; j++) {
for (int i = 0; i < TRACK_WIDTH; i++) {
trackPix[trackIndex++] = Color.HSBtoRGB(j * 1f / IMG_HEIGHT, 1f, 1f)
| (BINARY_FOR_EIGHT << TWENTY_FOUR);
}
@ -1026,16 +1021,15 @@ class CustomChooserPanel extends AbstractColorChooserPanel
* This method updates the track gradient image if the Saturation value is
* allowed to change (according to the UIRadioButtons).
*/
private void updateSTrack()
{
private void updateSTrack() {
int[] trackPix = new int[TRACK_WIDTH * IMG_HEIGHT];
float hValue = ((Number) hSpinner.getValue()).intValue() / HSPINNER_VALUE;
float bValue = ((Number) bSpinner.getValue()).intValue() / LSPINNER_VALUE;
int trackIndex = 0;
for (int j = 0; j < IMG_HEIGHT; j++){
for (int i = 0; i < TRACK_WIDTH; i++){
for (int j = 0; j < IMG_HEIGHT; j++) {
for (int i = 0; i < TRACK_WIDTH; i++) {
trackPix[trackIndex++] = Color.HSBtoRGB(hValue,
(IMG_HEIGHT - j * 1f) / IMG_HEIGHT,
bValue) | (BINARY_FOR_EIGHT << TWENTY_FOUR);
@ -1050,16 +1044,15 @@ class CustomChooserPanel extends AbstractColorChooserPanel
* This method updates the track gradient image if the Brightness value is
* allowed to change (according to the UIRadioButtons).
*/
private void updateBTrack()
{
private void updateBTrack() {
int[] trackPix = new int[TRACK_WIDTH * IMG_HEIGHT];
float hValue = ((Number) hSpinner.getValue()).intValue() / HSPINNER_VALUE;
float sValue = ((Number) sSpinner.getValue()).intValue() / SSPINNER_VALUE;
int trackIndex = 0;
for (int j = 0; j < IMG_HEIGHT; j++){
for (int i = 0; i < TRACK_WIDTH; i++){
for (int j = 0; j < IMG_HEIGHT; j++) {
for (int i = 0; i < TRACK_WIDTH; i++) {
trackPix[trackIndex++] = Color.HSBtoRGB(hValue, sValue,
(IMG_HEIGHT - j * 1f) / IMG_HEIGHT) | (BINARY_FOR_EIGHT << TWENTY_FOUR);
}

Loading…
Cancel
Save