|
|
|
@ -1,20 +1,16 @@
|
|
|
|
|
package com.fr.design.gui.controlpane; |
|
|
|
|
|
|
|
|
|
import com.fr.data.TableDataSource; |
|
|
|
|
import com.fr.design.dialog.BasicPane; |
|
|
|
|
import com.fr.design.gui.ilable.UILabel; |
|
|
|
|
import com.fr.design.gui.itoolbar.UIToolbar; |
|
|
|
|
import com.fr.design.layout.FRGUIPaneFactory; |
|
|
|
|
import com.fr.design.menu.ToolBarDef; |
|
|
|
|
import com.fr.design.utils.gui.GUICoreUtils; |
|
|
|
|
import com.fr.file.DatasourceManagerProvider; |
|
|
|
|
import com.fr.stable.ArrayUtils; |
|
|
|
|
import com.fr.stable.Nameable; |
|
|
|
|
|
|
|
|
|
import javax.swing.*; |
|
|
|
|
import java.awt.*; |
|
|
|
|
import java.util.HashMap; |
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Coder: zack |
|
|
|
@ -24,12 +20,12 @@ import java.util.Map;
|
|
|
|
|
public abstract class JControlPane extends BasicPane implements UnrepeatedNameHelper { |
|
|
|
|
protected static final int SHORT_WIDTH = 30; //每加一个short Divider位置加30
|
|
|
|
|
protected JPanel controlUpdatePane; |
|
|
|
|
protected Map<String, String> dsNameChangedMap = new HashMap<String, String>(); |
|
|
|
|
protected ShortCut4JControlPane[] shorts; |
|
|
|
|
protected NameableCreator[] creators; |
|
|
|
|
protected ToolBarDef toolbarDef; |
|
|
|
|
|
|
|
|
|
protected UIToolbar toolBar; |
|
|
|
|
private ShortCut4JControlPane[] shorts; |
|
|
|
|
private NameableCreator[] creators; |
|
|
|
|
private ToolBarDef toolbarDef; |
|
|
|
|
|
|
|
|
|
private UIToolbar toolBar; |
|
|
|
|
// peter:这是整体的一个cardLayout Pane
|
|
|
|
|
protected CardLayout cardLayout; |
|
|
|
|
|
|
|
|
@ -46,6 +42,50 @@ public abstract class JControlPane extends BasicPane implements UnrepeatedNameHe
|
|
|
|
|
*/ |
|
|
|
|
public abstract NameableCreator[] createNameableCreators(); |
|
|
|
|
|
|
|
|
|
public ShortCut4JControlPane[] getShorts() { |
|
|
|
|
return shorts; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setShorts(ShortCut4JControlPane[] shorts) { |
|
|
|
|
this.shorts = shorts; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setCreators(NameableCreator[] creators) { |
|
|
|
|
this.creators = creators; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public ToolBarDef getToolbarDef() { |
|
|
|
|
return toolbarDef; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setToolbarDef(ToolBarDef toolbarDef) { |
|
|
|
|
this.toolbarDef = toolbarDef; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public UIToolbar getToolBar() { |
|
|
|
|
return toolBar; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setToolBar(UIToolbar toolBar) { |
|
|
|
|
this.toolBar = toolBar; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public CardLayout getCardLayout() { |
|
|
|
|
return cardLayout; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setCardLayout(CardLayout cardLayout) { |
|
|
|
|
this.cardLayout = cardLayout; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public JPanel getCardPane() { |
|
|
|
|
return cardPane; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setCardPane(JPanel cardPane) { |
|
|
|
|
this.cardPane = cardPane; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected void initComponentPane() { |
|
|
|
|
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
|
|
|
|
this.creators = this.createNameableCreators(); |
|
|
|
@ -75,7 +115,7 @@ public abstract class JControlPane extends BasicPane implements UnrepeatedNameHe
|
|
|
|
|
// LeftPane
|
|
|
|
|
JPanel leftPane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
|
|
|
|
|
|
|
|
|
init(leftPane); |
|
|
|
|
initLeftPane(leftPane); |
|
|
|
|
|
|
|
|
|
shorts = this.createShortcuts(); |
|
|
|
|
if (ArrayUtils.isEmpty(shorts)) { |
|
|
|
@ -92,59 +132,10 @@ public abstract class JControlPane extends BasicPane implements UnrepeatedNameHe
|
|
|
|
|
return leftPane; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public ShortCut4JControlPane[] getShorts() { |
|
|
|
|
return shorts; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setShorts(ShortCut4JControlPane[] shorts) { |
|
|
|
|
this.shorts = shorts; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public NameableCreator[] getCreators() { |
|
|
|
|
return creators; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setCreators(NameableCreator[] creators) { |
|
|
|
|
this.creators = creators; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public ToolBarDef getToolbarDef() { |
|
|
|
|
return toolbarDef; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setToolbarDef(ToolBarDef toolbarDef) { |
|
|
|
|
this.toolbarDef = toolbarDef; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public UIToolbar getToolBar() { |
|
|
|
|
return toolBar; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setToolBar(UIToolbar toolBar) { |
|
|
|
|
this.toolBar = toolBar; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public CardLayout getCardLayout() { |
|
|
|
|
return cardLayout; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setCardLayout(CardLayout cardLayout) { |
|
|
|
|
this.cardLayout = cardLayout; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public JPanel getCardPane() { |
|
|
|
|
return cardPane; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setCardPane(JPanel cardPane) { |
|
|
|
|
this.cardPane = cardPane; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 初始化 |
|
|
|
|
* 初始化左边面板 |
|
|
|
|
*/ |
|
|
|
|
protected void init(JPanel leftPane) { |
|
|
|
|
protected void initLeftPane(JPanel leftPane) { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -152,13 +143,6 @@ public abstract class JControlPane extends BasicPane implements UnrepeatedNameHe
|
|
|
|
|
return shorts.length * SHORT_WIDTH; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Map<String, String> getDsNameChangedMap() { |
|
|
|
|
return dsNameChangedMap; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setDsNameChangedMap(Map<String, String> dsNameChangedMap) { |
|
|
|
|
this.dsNameChangedMap = dsNameChangedMap; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected ShortCut4JControlPane[] createShortcuts() { |
|
|
|
|
return new ShortCut4JControlPane[]{ |
|
|
|
@ -183,36 +167,12 @@ public abstract class JControlPane extends BasicPane implements UnrepeatedNameHe
|
|
|
|
|
|
|
|
|
|
protected abstract ShortCut4JControlPane sortItemShortCut(); |
|
|
|
|
|
|
|
|
|
public void setNameListEditable(boolean editable) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public abstract Nameable[] update(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void populate(Nameable[] nameableArray) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void update(DatasourceManagerProvider datasourceManager) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void populate(DatasourceManagerProvider datasourceManager) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void populate(TableDataSource tds) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void update(TableDataSource tds) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 名字是否允许 |
|
|
|
|
* |
|
|
|
|
* @return 默认返回true |
|
|
|
|
*/ |
|
|
|
|
public boolean isNamePermitted() { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 检查按钮可用状态 Check button enabled. |
|
|
|
|
*/ |
|
|
|
@ -220,37 +180,33 @@ public abstract class JControlPane extends BasicPane implements UnrepeatedNameHe
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected void doBeforeRemove() { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected void doAfterRemove() { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public NameableCreator[] creators() { |
|
|
|
|
return creators == null ? new NameableCreator[0] : creators; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 检查是否符合规范 |
|
|
|
|
* |
|
|
|
|
* @throws Exception |
|
|
|
|
*/ |
|
|
|
|
public void checkValid() throws Exception { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected abstract boolean hasInvalid(boolean isAdd); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 设置选中项 |
|
|
|
|
* 刷新 NameableCreator |
|
|
|
|
* |
|
|
|
|
* @param index 选中项的序列号 |
|
|
|
|
* @param creators 生成器 |
|
|
|
|
*/ |
|
|
|
|
public void setSelectedIndex(int index) { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void refreshNameableCreator(NameableCreator[] creators) { |
|
|
|
|
this.creators = creators; |
|
|
|
|
shorts = this.createShortcuts(); |
|
|
|
|
toolbarDef.clearShortCuts(); |
|
|
|
|
for (ShortCut4JControlPane sj : shorts) { |
|
|
|
|
toolbarDef.addShortCut(sj.getShortCut()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected void rename(String oldName, String newName) { |
|
|
|
|
dsNameChangedMap.put(oldName, newName); |
|
|
|
|
toolbarDef.updateToolBar(toolBar); |
|
|
|
|
toolBar.validate(); |
|
|
|
|
toolBar.repaint(); |
|
|
|
|
this.repaint(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|