|
|
|
@ -7,6 +7,7 @@ import javax.swing.BorderFactory;
|
|
|
|
|
import javax.swing.JPanel; |
|
|
|
|
|
|
|
|
|
import com.fr.design.dialog.BasicPane; |
|
|
|
|
import com.fr.design.gui.ibutton.UIButton; |
|
|
|
|
|
|
|
|
|
public class UsedColorPane extends BasicPane{ |
|
|
|
|
|
|
|
|
@ -16,6 +17,10 @@ public class UsedColorPane extends BasicPane{
|
|
|
|
|
private int columns; |
|
|
|
|
// 最近使用面板行数
|
|
|
|
|
private int rows; |
|
|
|
|
// 留白的单元格数量
|
|
|
|
|
private int reserveCells; |
|
|
|
|
// 是否需要取色器按钮
|
|
|
|
|
private boolean needPickColorButton; |
|
|
|
|
// 最近使用颜色
|
|
|
|
|
private Object[] colors; |
|
|
|
|
// 最近使用面板
|
|
|
|
@ -40,15 +45,23 @@ public class UsedColorPane extends BasicPane{
|
|
|
|
|
* |
|
|
|
|
* @param rows 行 |
|
|
|
|
* @param columns 列 |
|
|
|
|
* @param reserveCells 留白的单元格个数 |
|
|
|
|
* @param needPickColorButton 是否需要加上取色器按钮 |
|
|
|
|
* @param colors 最近使用的颜色 |
|
|
|
|
*/ |
|
|
|
|
public UsedColorPane(int rows,int columns,Object[] colors,ColorSelectable selectable){ |
|
|
|
|
public UsedColorPane(int rows,int columns,int reserveCells, boolean needPickColorButton, Object[] colors,ColorSelectable selectable){ |
|
|
|
|
this.columns = columns; |
|
|
|
|
this.rows = rows; |
|
|
|
|
this.reserveCells = reserveCells; |
|
|
|
|
this.needPickColorButton = needPickColorButton; |
|
|
|
|
this.colors = colors; |
|
|
|
|
this.selectable = selectable; |
|
|
|
|
initialComponents(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public UsedColorPane(int rows,int columns, Object[] colors,ColorSelectable selectable){ |
|
|
|
|
this(rows, columns, 0, false, colors, selectable); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void initialComponents(){ |
|
|
|
|
int total = columns * rows; |
|
|
|
@ -57,9 +70,25 @@ public class UsedColorPane extends BasicPane{
|
|
|
|
|
panel.setBorder(BorderFactory.createEmptyBorder(8, 8, 0, 8)); |
|
|
|
|
Color[] colors = ColorSelectConfigManager.getInstance().getColors(); |
|
|
|
|
int size = colors.length; |
|
|
|
|
for (int i = 0; i < total; i++) { |
|
|
|
|
|
|
|
|
|
int i = 0; |
|
|
|
|
if (needPickColorButton) { |
|
|
|
|
// 取色按钮
|
|
|
|
|
UIButton pickColorButton = PickColorButtonFactory.getPickColorButton(selectable, PickColorButtonFactory.IconType.ICON16, true); |
|
|
|
|
panel.add(pickColorButton); |
|
|
|
|
i++; |
|
|
|
|
this.reserveCells += 1; |
|
|
|
|
} |
|
|
|
|
while (i < this.reserveCells) { |
|
|
|
|
ColorCell cc = new ColorCell(DEFAULT_COLOR, selectable); |
|
|
|
|
cc.setVisible(false); |
|
|
|
|
panel.add(cc); |
|
|
|
|
i++; |
|
|
|
|
} |
|
|
|
|
while (i < total) { |
|
|
|
|
Color color = i < size ? colors[size-1-i]: DEFAULT_COLOR; |
|
|
|
|
panel.add(new ColorCell(color == null ? DEFAULT_COLOR : color, selectable)); |
|
|
|
|
i++; |
|
|
|
|
} |
|
|
|
|
this.pane = panel; |
|
|
|
|
} |
|
|
|
@ -72,7 +101,7 @@ public class UsedColorPane extends BasicPane{
|
|
|
|
|
int total = columns * rows; |
|
|
|
|
Color[] colors = ColorSelectConfigManager.getInstance().getColors(); |
|
|
|
|
int size = colors.length; |
|
|
|
|
for(int i=0; i<total; i++){ |
|
|
|
|
for(int i=this.reserveCells; i<total; i++){ |
|
|
|
|
ColorCell cell = (ColorCell) this.pane.getComponent(i); |
|
|
|
|
Color color = i < size ? colors[size-1-i]: DEFAULT_COLOR; |
|
|
|
|
cell.setColor(color == null ? DEFAULT_COLOR : color); |
|
|
|
|