|
|
@ -173,7 +173,8 @@ public class EastRegionContainerPane extends UIEastResizableContainer { |
|
|
|
} |
|
|
|
} |
|
|
|
updateAllPropertyPane(); |
|
|
|
updateAllPropertyPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
}); } |
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
}, filter); |
|
|
|
}, filter); |
|
|
|
PluginListenerRegistration.getInstance().listen( |
|
|
|
PluginListenerRegistration.getInstance().listen( |
|
|
|
PluginEventType.BeforeStop, |
|
|
|
PluginEventType.BeforeStop, |
|
|
@ -328,6 +329,7 @@ public class EastRegionContainerPane extends UIEastResizableContainer { |
|
|
|
cellElement.popupDialog.showDefaultPane(); |
|
|
|
cellElement.popupDialog.showDefaultPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// 禁用单元格元素tab
|
|
|
|
// 禁用单元格元素tab
|
|
|
|
private void enableCellElementPane(PropertyItem cellElement) { |
|
|
|
private void enableCellElementPane(PropertyItem cellElement) { |
|
|
|
cellElement.setEnabled(true); |
|
|
|
cellElement.setEnabled(true); |
|
|
@ -385,7 +387,7 @@ public class EastRegionContainerPane extends UIEastResizableContainer { |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 可通过此方法,判断当前的编辑模式 |
|
|
|
* 可通过此方法,判断当前的编辑模式 |
|
|
|
* */ |
|
|
|
*/ |
|
|
|
public PropertyMode getCurrentMode() { |
|
|
|
public PropertyMode getCurrentMode() { |
|
|
|
return currentMode; |
|
|
|
return currentMode; |
|
|
|
} |
|
|
|
} |
|
|
@ -880,6 +882,7 @@ public class EastRegionContainerPane extends UIEastResizableContainer { |
|
|
|
public Dimension getPreferredSize() { |
|
|
|
public Dimension getPreferredSize() { |
|
|
|
return new Dimension(TAB_BUTTON_WIDTH, TAB_BUTTON_HEIGHT); |
|
|
|
return new Dimension(TAB_BUTTON_WIDTH, TAB_BUTTON_HEIGHT); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void paintComponent(Graphics g) { |
|
|
|
public void paintComponent(Graphics g) { |
|
|
|
super.paintComponent(g); |
|
|
|
super.paintComponent(g); |
|
|
@ -1032,8 +1035,8 @@ public class EastRegionContainerPane extends UIEastResizableContainer { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* @Description:刷新currentPopupPane面板位置,当设计器缩放时会调用这个函数 |
|
|
|
|
|
|
|
* @param |
|
|
|
* @param |
|
|
|
|
|
|
|
* @Description:刷新currentPopupPane面板位置,当设计器缩放时会调用这个函数 |
|
|
|
* @return: |
|
|
|
* @return: |
|
|
|
* @Author: Henry.Wang |
|
|
|
* @Author: Henry.Wang |
|
|
|
* @date: 2020/7/30 11:39 |
|
|
|
* @date: 2020/7/30 11:39 |
|
|
@ -1048,8 +1051,8 @@ public class EastRegionContainerPane extends UIEastResizableContainer { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* @Description:清空currentPopupPane数据,当切换模板时会调用这个函数 |
|
|
|
|
|
|
|
* @param |
|
|
|
* @param |
|
|
|
|
|
|
|
* @Description:清空currentPopupPane数据,当切换模板时会调用这个函数 |
|
|
|
* @return: |
|
|
|
* @return: |
|
|
|
* @Author: Henry.Wang |
|
|
|
* @Author: Henry.Wang |
|
|
|
* @date: 2020/7/30 11:42 |
|
|
|
* @date: 2020/7/30 11:42 |
|
|
@ -1088,12 +1091,14 @@ public class EastRegionContainerPane extends UIEastResizableContainer { |
|
|
|
} |
|
|
|
} |
|
|
|
repaint(); |
|
|
|
repaint(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void mouseClicked(MouseEvent e) { |
|
|
|
public void mouseClicked(MouseEvent e) { |
|
|
|
if (e.getX() >= ARROW_RANGE_START) { |
|
|
|
if (e.getX() >= ARROW_RANGE_START) { |
|
|
|
onPop(); |
|
|
|
onPop(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void mouseReleased(MouseEvent e) { |
|
|
|
public void mouseReleased(MouseEvent e) { |
|
|
|
mouseDownCompCoords = null; |
|
|
|
mouseDownCompCoords = null; |
|
|
@ -1101,6 +1106,7 @@ public class EastRegionContainerPane extends UIEastResizableContainer { |
|
|
|
contentPane.setBackground(originColor); |
|
|
|
contentPane.setBackground(originColor); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void mousePressed(MouseEvent e) { |
|
|
|
public void mousePressed(MouseEvent e) { |
|
|
|
if (e.getX() < ARROW_RANGE_START) { |
|
|
|
if (e.getX() < ARROW_RANGE_START) { |
|
|
@ -1122,6 +1128,7 @@ public class EastRegionContainerPane extends UIEastResizableContainer { |
|
|
|
} |
|
|
|
} |
|
|
|
repaint(); |
|
|
|
repaint(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void mouseDragged(MouseEvent e) { |
|
|
|
public void mouseDragged(MouseEvent e) { |
|
|
|
if (isMovable && mouseDownCompCoords != null) { |
|
|
|
if (isMovable && mouseDownCompCoords != null) { |
|
|
@ -1234,6 +1241,7 @@ public class EastRegionContainerPane extends UIEastResizableContainer { |
|
|
|
private Container contentPane; |
|
|
|
private Container contentPane; |
|
|
|
private JPanel defaultPane; // 无可用配置项
|
|
|
|
private JPanel defaultPane; // 无可用配置项
|
|
|
|
private PropertyItem propertyItem; |
|
|
|
private PropertyItem propertyItem; |
|
|
|
|
|
|
|
|
|
|
|
public PopupDialog(PropertyItem propertyItem) { |
|
|
|
public PopupDialog(PropertyItem propertyItem) { |
|
|
|
super(DesignerContext.getDesignerFrame()); |
|
|
|
super(DesignerContext.getDesignerFrame()); |
|
|
|
container = getContentPane(); |
|
|
|
container = getContentPane(); |
|
|
@ -1336,6 +1344,7 @@ public class EastRegionContainerPane extends UIEastResizableContainer { |
|
|
|
mouseDownCompCoords = e.getLocationOnScreen(); |
|
|
|
mouseDownCompCoords = e.getLocationOnScreen(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void mouseReleased(MouseEvent e) { |
|
|
|
public void mouseReleased(MouseEvent e) { |
|
|
|
mouseDownCompCoords = null; |
|
|
|
mouseDownCompCoords = null; |
|
|
|