Browse Source

新功能已实现,手机报表最大高度的限制,测试可行。默认高度比:0.75(75%)。

master
Lee 8 years ago
parent
commit
05c3e3b86e
  1. 103
      designer_form/src/com/fr/design/designer/creator/XElementCase.java

103
designer_form/src/com/fr/design/designer/creator/XElementCase.java

@ -7,9 +7,7 @@ import com.fr.design.gui.ilable.UILabel;
import com.fr.design.mainframe.CoverReportPane; import com.fr.design.mainframe.CoverReportPane;
import com.fr.design.mainframe.EditingMouseListener; import com.fr.design.mainframe.EditingMouseListener;
import com.fr.design.mainframe.FormDesigner; import com.fr.design.mainframe.FormDesigner;
import com.fr.design.mainframe.widget.editors.BooleanEditor; import com.fr.design.mainframe.widget.editors.*;
import com.fr.design.mainframe.widget.editors.PaddingMarginEditor;
import com.fr.design.mainframe.widget.editors.WLayoutBorderStyleEditor;
import com.fr.design.mainframe.widget.renderer.LayoutBorderStyleRenderer; import com.fr.design.mainframe.widget.renderer.LayoutBorderStyleRenderer;
import com.fr.design.mainframe.widget.renderer.PaddingMarginCellRenderer; import com.fr.design.mainframe.widget.renderer.PaddingMarginCellRenderer;
import com.fr.form.FormElementCaseContainerProvider; import com.fr.form.FormElementCaseContainerProvider;
@ -53,37 +51,74 @@ public class XElementCase extends XBorderStyleWidgetCreator implements FormEleme
* @return 返回组件属性值 * @return 返回组件属性值
* @throws IntrospectionException 异常 * @throws IntrospectionException 异常
*/ */
public CRPropertyDescriptor[] supportedDescriptor() throws IntrospectionException { public CRPropertyDescriptor[] supportedDescriptor() throws IntrospectionException {
CRPropertyDescriptor[] crp = ((ElementCaseEditor) data).isHeightRestrict() ? revealHeightLimit() : getDefault();
CRPropertyDescriptor[] propertyTableEditor = new CRPropertyDescriptor[]{ FormElementCaseEditorProcessor processor = ExtraDesignClassManager.getInstance().getPropertyTableEditor();
new CRPropertyDescriptor("widgetName", this.data.getClass()) if (processor == null) {
.setI18NName(Inter.getLocText("Form-Widget_Name")), return crp;
new CRPropertyDescriptor("borderStyle", this.data.getClass()).setEditorClass( }
WLayoutBorderStyleEditor.class).setRendererClass(LayoutBorderStyleRenderer.class).setI18NName( PropertyDescriptor[] extraEditor = processor.createPropertyDescriptor(this.data.getClass());
Inter.getLocText("FR-Designer-Widget_Style")).putKeyValue(XCreatorConstants.PROPERTY_CATEGORY, "Advanced") return (CRPropertyDescriptor[]) ArrayUtils.addAll(crp, extraEditor);
.setPropertyChangeListener(new PropertyChangeAdapter() { }
@Override protected CRPropertyDescriptor createNonListenerProperties(int i) throws IntrospectionException {
public void propertyChange() { CRPropertyDescriptor[] propertyTableEditor = {
initStyle(); new CRPropertyDescriptor("widgetName", this.data.getClass())
} .setI18NName(Inter.getLocText("Form-Widget_Name")),
}), new CRPropertyDescriptor("borderStyle", this.data.getClass()).setEditorClass(
new CRPropertyDescriptor("margin", this.data.getClass()).setEditorClass(PaddingMarginEditor.class) WLayoutBorderStyleEditor.class).setRendererClass(LayoutBorderStyleRenderer.class).setI18NName(
.setRendererClass(PaddingMarginCellRenderer.class).setI18NName(Inter.getLocText("FR-Layout_Padding")) Inter.getLocText("FR-Designer-Widget_Style")).putKeyValue(XCreatorConstants.PROPERTY_CATEGORY, "Advanced"),
.putKeyValue(XCreatorConstants.PROPERTY_CATEGORY, "Advanced"), new CRPropertyDescriptor("margin", this.data.getClass()).setEditorClass(PaddingMarginEditor.class)
new CRPropertyDescriptor("showToolBar", this.data.getClass()).setEditorClass(BooleanEditor.class) .setRendererClass(PaddingMarginCellRenderer.class).setI18NName(Inter.getLocText("FR-Layout_Padding"))
.setI18NName(Inter.getLocText("Form-EC_toolbar")) .putKeyValue(XCreatorConstants.PROPERTY_CATEGORY, "Advanced"),
.putKeyValue(XCreatorConstants.PROPERTY_CATEGORY, "Advanced"), new CRPropertyDescriptor("showToolBar", this.data.getClass()).setEditorClass(BooleanEditor.class)
.setI18NName(Inter.getLocText("Form-EC_toolbar"))
}; .putKeyValue(XCreatorConstants.PROPERTY_CATEGORY, "Advanced"),
new CRPropertyDescriptor("heightRestrict", this.data.getClass()).setEditorClass(InChangeBooleanEditor.class)
FormElementCaseEditorProcessor processor = ExtraDesignClassManager.getInstance().getPropertyTableEditor(); .setI18NName(Inter.getLocText("Form-EC_heightrestrict"))
if (processor == null){ .putKeyValue(XCreatorConstants.PROPERTY_CATEGORY, "Advanced"),
return propertyTableEditor; new CRPropertyDescriptor("heightPercent", this.data.getClass()).setEditorClass(DoubleEditor.class)
} .setI18NName(Inter.getLocText("Form-EC_heightpercent"))
PropertyDescriptor[] extraEditor = processor.createPropertyDescriptor(this.data.getClass()); .putKeyValue(XCreatorConstants.PROPERTY_CATEGORY, "Advanced")
return (CRPropertyDescriptor[]) ArrayUtils.addAll(propertyTableEditor, extraEditor); };
} return propertyTableEditor[i];
}
protected CRPropertyDescriptor[] revealHeightLimit() throws IntrospectionException {
return new CRPropertyDescriptor[] {
createNonListenerProperties(0),
createNonListenerProperties(1).
setPropertyChangeListener(new PropertyChangeAdapter() {
@Override
public void propertyChange() {
initStyle();
}
}),
createNonListenerProperties(2),
createNonListenerProperties(3),
createNonListenerProperties(4),
createNonListenerProperties(5)
};
}
protected CRPropertyDescriptor[] getDefault() throws IntrospectionException {
return new CRPropertyDescriptor[] {
createNonListenerProperties(0),
createNonListenerProperties(1).
setPropertyChangeListener(new PropertyChangeAdapter() {
@Override
public void propertyChange() {
initStyle();
}
}),
createNonListenerProperties(2),
createNonListenerProperties(3),
createNonListenerProperties(4)
};
}
@Override @Override
protected String getIconName() { protected String getIconName() {

Loading…
Cancel
Save