@ -3,11 +3,12 @@ package com.fr.quickeditor;
import com.fr.base.GraphHelper ;
import com.fr.design.actions.UpdateAction ;
import com.fr.design.actions.core.ActionFactory ;
import com.fr.design.file.HistoryTemplateListPan e ;
import com.fr.design.file.HistoryTemplateListCach e ;
import com.fr.design.gui.icombobox.UIComboBox ;
import com.fr.design.gui.ilable.UILabel ;
import com.fr.design.gui.iscrollbar.UIScrollBar ;
import com.fr.design.gui.itextfield.UITextField ;
import com.fr.design.i18n.Toolkit ;
import com.fr.design.layout.TableLayout ;
import com.fr.design.layout.TableLayoutHelper ;
import com.fr.design.mainframe.CellElementPropertyPane ;
@ -48,7 +49,7 @@ import java.util.ArrayList;
* /
public abstract class CellQuickEditor extends QuickEditor < ElementCasePane > {
protected static final Dimension LABEL_DIMENSION = new Dimension ( 60 , 20 ) ;
protected static final Dimension LABEL_DIMENSION = new Dimension ( GraphHelper . getWidth ( Toolkit . i18nText ( "Fine-Design_Report_Insert_Cell_Element" ) ) , 20 ) ;
protected static final int VGAP = 10 , HGAP = 8 , VGAP_INNER = 3 ;
/ * *
@ -165,7 +166,7 @@ public abstract class CellQuickEditor extends QuickEditor<ElementCasePane> {
columnRowTextField . setText ( columnRow . toString ( ) ) ;
cellElement = tc . getEditingElementCase ( ) . getTemplateCellElement ( cs . getColumn ( ) , cs . getRow ( ) ) ;
JTemplate jTemplate = HistoryTemplateListPan e . getInstance ( ) . getCurrentEditingTemplate ( ) ;
JTemplate jTemplate = HistoryTemplateListCach e . getInstance ( ) . getCurrentEditingTemplate ( ) ;
if ( jTemplate ! = null ) {
comboBox . removeActionListener ( comboBoxActionListener ) ;
comboBox . removeAllItems ( ) ;
@ -208,10 +209,10 @@ public abstract class CellQuickEditor extends QuickEditor<ElementCasePane> {
private JPanel initTopContent ( ) {
double p = TableLayout . PREFERRED ;
double f = TableLayout . FILL ;
double [ ] columnSize = { GraphHelper . getWidth ( com . fr . design . i18n . Toolkit . i18nText ( "Fine-Design_Report_Insert_Cell_Element" ) ) , f } ;
double [ ] columnSize = { GraphHelper . getWidth ( Toolkit . i18nText ( "Fine-Design_Report_Insert_Cell_Element" ) ) , f } ;
double [ ] rowSize = { p , p } ;
UILabel cellLabel = new UILabel ( com . fr . design . i18n . Toolkit . i18nText ( "Fine-Design_Basic_Cell" ) ) ;
UILabel insertContentLabel = FRWidgetFactory . createLineWrapLabel ( com . fr . design . i18n . Toolkit . i18nText ( "Fine-Design_Report_Insert_Cell_Element" ) ) ;
UILabel cellLabel = new UILabel ( Toolkit . i18nText ( "Fine-Design_Basic_Cell" ) ) ;
UILabel insertContentLabel = FRWidgetFactory . createLineWrapLabel ( Toolkit . i18nText ( "Fine-Design_Report_Insert_Cell_Element" ) ) ;
initCellElementEditComboBox ( ) ;
Component [ ] [ ] components = new Component [ ] [ ] {
new Component [ ] { cellLabel , columnRowTextField = initColumnRowTextField ( ) } ,
@ -263,7 +264,7 @@ public abstract class CellQuickEditor extends QuickEditor<ElementCasePane> {
* 初始化添加按钮
* /
private void initCellElementEditComboBox ( ) {
JTemplate jTemplate = HistoryTemplateListPan e . getInstance ( ) . getCurrentEditingTemplate ( ) ;
JTemplate jTemplate = HistoryTemplateListCach e . getInstance ( ) . getCurrentEditingTemplate ( ) ;
if ( jTemplate = = null ) {
comboBox = new UIComboBox ( ) ;
return ;
@ -304,8 +305,8 @@ public abstract class CellQuickEditor extends QuickEditor<ElementCasePane> {
ColumnRow columnRowEdit = ColumnRow . valueOf ( columnRowTextField . getText ( ) ) ;
// barry:检查输入是否正确
if ( ! ColumnRow . validate ( columnRowEdit ) ) {
Object [ ] options = { com . fr . design . i18n . Toolkit . i18nText ( "Fine-Design_Report_OK" ) } ;
JOptionPane . showOptionDialog ( DesignerContext . getDesignerFrame ( ) , com . fr . design . i18n . Toolkit . i18nText ( "Please_Input_Letters+Numbers(A1,AA1,A11....)" ) , com . fr . design . i18n . Toolkit . i18nText ( "Fine-Design_Report_Warning" ) ,
Object [ ] options = { Toolkit . i18nText ( "Fine-Design_Report_OK" ) } ;
JOptionPane . showOptionDialog ( DesignerContext . getDesignerFrame ( ) , Toolkit . i18nText ( "Please_Input_Letters+Numbers(A1,AA1,A11....)" ) , com . fr . design . i18n . Toolkit . i18nText ( "Fine-Design_Report_Warning" ) ,
JOptionPane . DEFAULT_OPTION , JOptionPane . WARNING_MESSAGE , null , options , options [ 0 ] ) ;
// 重新选中当前的selection,把columnRowTextField
tc . setSelection ( tc . getSelection ( ) ) ;