|
|
@ -1,12 +1,14 @@ |
|
|
|
package com.fr.design.mainframe; |
|
|
|
package com.fr.design.mainframe; |
|
|
|
|
|
|
|
|
|
|
|
import java.awt.BorderLayout; |
|
|
|
import java.awt.BorderLayout; |
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
|
|
import javax.swing.Icon; |
|
|
|
import javax.swing.*; |
|
|
|
import javax.swing.JScrollPane; |
|
|
|
|
|
|
|
import javax.swing.SwingConstants; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.fr.base.BaseUtils; |
|
|
|
import com.fr.base.BaseUtils; |
|
|
|
|
|
|
|
import com.fr.design.ExtraDesignClassManager; |
|
|
|
|
|
|
|
import com.fr.design.fun.WidgetAttrProvider; |
|
|
|
import com.fr.design.gui.frpane.UITabbedPane; |
|
|
|
import com.fr.design.gui.frpane.UITabbedPane; |
|
|
|
import com.fr.general.Inter; |
|
|
|
import com.fr.general.Inter; |
|
|
|
import com.fr.design.gui.icontainer.UIScrollPane; |
|
|
|
import com.fr.design.gui.icontainer.UIScrollPane; |
|
|
@ -24,6 +26,8 @@ public class WidgetPropertyPane extends FormDockView implements BaseWidgetProper |
|
|
|
|
|
|
|
|
|
|
|
private WidgetPropertyTable propertyTable; |
|
|
|
private WidgetPropertyTable propertyTable; |
|
|
|
private EventPropertyTable eventTable; |
|
|
|
private EventPropertyTable eventTable; |
|
|
|
|
|
|
|
private List<AbstractPropertyTable> widgetPropertyTables; |
|
|
|
|
|
|
|
private FormDesigner designer; |
|
|
|
|
|
|
|
|
|
|
|
public static WidgetPropertyPane getInstance() { |
|
|
|
public static WidgetPropertyPane getInstance() { |
|
|
|
if (HOLDER.singleton == null) { |
|
|
|
if (HOLDER.singleton == null) { |
|
|
@ -59,12 +63,13 @@ public class WidgetPropertyPane extends FormDockView implements BaseWidgetProper |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public void refreshDockingView() { |
|
|
|
public void refreshDockingView() { |
|
|
|
FormDesigner designer = this.getEditingFormDesigner(); |
|
|
|
designer = this.getEditingFormDesigner(); |
|
|
|
removeAll(); |
|
|
|
removeAll(); |
|
|
|
if(designer == null){ |
|
|
|
if (designer == null) { |
|
|
|
clearDockingView(); |
|
|
|
clearDockingView(); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
widgetPropertyTables = new ArrayList<AbstractPropertyTable>(); |
|
|
|
propertyTable = new WidgetPropertyTable(designer); |
|
|
|
propertyTable = new WidgetPropertyTable(designer); |
|
|
|
designer.addDesignerEditListener(new WidgetPropertyDesignerAdapter(propertyTable)); |
|
|
|
designer.addDesignerEditListener(new WidgetPropertyDesignerAdapter(propertyTable)); |
|
|
|
propertyTable.setBorder(null); |
|
|
|
propertyTable.setBorder(null); |
|
|
@ -82,20 +87,36 @@ public class WidgetPropertyPane extends FormDockView implements BaseWidgetProper |
|
|
|
tabbedPane.setTabPlacement(SwingConstants.BOTTOM); |
|
|
|
tabbedPane.setTabPlacement(SwingConstants.BOTTOM); |
|
|
|
tabbedPane.addTab(Inter.getLocText("Form-Properties"), psp); |
|
|
|
tabbedPane.addTab(Inter.getLocText("Form-Properties"), psp); |
|
|
|
tabbedPane.addTab(Inter.getLocText("Form-Events"), esp); |
|
|
|
tabbedPane.addTab(Inter.getLocText("Form-Events"), esp); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WidgetAttrProvider[] widgetAttrProviders = ExtraDesignClassManager.getInstance().getWidgetAttrProviders(); |
|
|
|
|
|
|
|
for (WidgetAttrProvider widgetAttrProvider : widgetAttrProviders) { |
|
|
|
|
|
|
|
AbstractPropertyTable propertyTable = widgetAttrProvider.createWidgetAttrTable(); |
|
|
|
|
|
|
|
widgetPropertyTables.add(propertyTable); |
|
|
|
|
|
|
|
designer.addDesignerEditListener(new WidgetPropertyDesignerAdapter(propertyTable)); |
|
|
|
|
|
|
|
UIScrollPane uiScrollPane = new UIScrollPane(propertyTable); |
|
|
|
|
|
|
|
uiScrollPane.setBorder(null); |
|
|
|
|
|
|
|
tabbedPane.addTab(widgetAttrProvider.tableTitle(), uiScrollPane); |
|
|
|
|
|
|
|
} |
|
|
|
add(tabbedPane, BorderLayout.CENTER); |
|
|
|
add(tabbedPane, BorderLayout.CENTER); |
|
|
|
|
|
|
|
|
|
|
|
propertyTable.initPropertyGroups(null); |
|
|
|
propertyTable.initPropertyGroups(null); |
|
|
|
eventTable.refresh(); |
|
|
|
eventTable.refresh(); |
|
|
|
|
|
|
|
for (AbstractPropertyTable propertyTable : widgetPropertyTables) { |
|
|
|
|
|
|
|
propertyTable.initPropertyGroups(designer); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setEditingFormDesigner(BaseFormDesigner editor) { |
|
|
|
public void setEditingFormDesigner(BaseFormDesigner editor) { |
|
|
|
FormDesigner fd = (FormDesigner)editor; |
|
|
|
FormDesigner fd = (FormDesigner) editor; |
|
|
|
super.setEditingFormDesigner(fd); |
|
|
|
super.setEditingFormDesigner(fd); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void clearDockingView() { |
|
|
|
public void clearDockingView() { |
|
|
|
propertyTable = null; |
|
|
|
propertyTable = null; |
|
|
|
eventTable = null; |
|
|
|
eventTable = null; |
|
|
|
|
|
|
|
if (widgetPropertyTables != null) { |
|
|
|
|
|
|
|
widgetPropertyTables.clear(); |
|
|
|
|
|
|
|
} |
|
|
|
JScrollPane psp = new JScrollPane(); |
|
|
|
JScrollPane psp = new JScrollPane(); |
|
|
|
psp.setBorder(null); |
|
|
|
psp.setBorder(null); |
|
|
|
this.add(psp, BorderLayout.CENTER); |
|
|
|
this.add(psp, BorderLayout.CENTER); |
|
|
@ -113,7 +134,7 @@ public class WidgetPropertyPane extends FormDockView implements BaseWidgetProper |
|
|
|
if (evt.getCreatorEventID() == DesignerEvent.CREATOR_EDITED |
|
|
|
if (evt.getCreatorEventID() == DesignerEvent.CREATOR_EDITED |
|
|
|
|| evt.getCreatorEventID() == DesignerEvent.CREATOR_DELETED |
|
|
|
|| evt.getCreatorEventID() == DesignerEvent.CREATOR_DELETED |
|
|
|
|| evt.getCreatorEventID() == DesignerEvent.CREATOR_SELECTED) { |
|
|
|
|| evt.getCreatorEventID() == DesignerEvent.CREATOR_SELECTED) { |
|
|
|
propertyTable.initPropertyGroups(null); |
|
|
|
propertyTable.initPropertyGroups(designer); |
|
|
|
} else if (evt.getCreatorEventID() == DesignerEvent.CREATOR_RESIZED) { |
|
|
|
} else if (evt.getCreatorEventID() == DesignerEvent.CREATOR_RESIZED) { |
|
|
|
repaint(); |
|
|
|
repaint(); |
|
|
|
} |
|
|
|
} |
|
|
@ -121,7 +142,7 @@ public class WidgetPropertyPane extends FormDockView implements BaseWidgetProper |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public boolean equals(Object o) { |
|
|
|
public boolean equals(Object o) { |
|
|
|
return o instanceof WidgetPropertyDesignerAdapter; |
|
|
|
return o instanceof WidgetPropertyDesignerAdapter && ((WidgetPropertyDesignerAdapter) o).propertyTable == this.propertyTable; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|