Browse Source

无JIRA任务。整理代码

master
plough 8 years ago
parent
commit
c807101e9d
  1. 5
      designer_base/src/com/fr/design/style/color/ColorPicker.java

5
designer_base/src/com/fr/design/style/color/ColorPicker.java

@ -3,7 +3,6 @@ package com.fr.design.style.color;
/** /**
* Created by plough on 2016/12/22. * Created by plough on 2016/12/22.
*/ */
//import com.fr.design.dialog.UIDialog;
import com.fr.base.BaseUtils; import com.fr.base.BaseUtils;
@ -58,7 +57,7 @@ public class ColorPicker extends JDialog implements ActionListener
timer = new Timer(1000/FPS, this); timer = new Timer(1000/FPS, this);
timer.start(); timer.start();
hideCursor(); hideCursor();
System.out.println(KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusedWindow()); // System.out.println(KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusedWindow());
} }
/** /**
@ -111,7 +110,6 @@ public class ColorPicker extends JDialog implements ActionListener
{ {
public void mousePressed(MouseEvent e) public void mousePressed(MouseEvent e)
{ {
System.out.println("Mouse Pressed!");
pickComplete(); pickComplete();
} }
} }
@ -192,7 +190,6 @@ class ColorPickerPanel extends JPanel
locationY + (int)((colorPickerSize + pixelCount) * 0.5) + 1, // 源矩形的第二个角的y坐标 locationY + (int)((colorPickerSize + pixelCount) * 0.5) + 1, // 源矩形的第二个角的y坐标
this this
); );
g2d.drawImage(colorPickerFrame, 0, 0, this); g2d.drawImage(colorPickerFrame, 0, 0, this);
} }
} }
Loading…
Cancel
Save