@ -1,12 +1,18 @@
package com.fr.design.write.submit ;
package com.fr.design.write.submit ;
import com.fine.theme.utils.FineUIScale ;
import com.fine.theme.utils.FineUIScale ;
import com.fine.theme.utils.FineUIUtils ;
import com.fr.design.gui.ilable.UILabel ;
import com.fr.design.layout.FRGUIPaneFactory ;
import com.fr.design.layout.FRGUIPaneFactory ;
import com.fr.design.mainframe.ElementCasePane ;
import com.fr.design.mainframe.ElementCasePane ;
import javax.swing.* ;
import javax.swing.* ;
import java.awt.* ;
import java.awt.* ;
import static com.fine.swing.ui.layout.Layouts.cell ;
import static com.fine.swing.ui.layout.Layouts.column ;
import static com.fine.swing.ui.layout.Layouts.row ;
/ * *
/ * *
* Created with IntelliJ IDEA .
* Created with IntelliJ IDEA .
* User : zheng
* User : zheng
@ -22,6 +28,13 @@ public class SmartInsertDBManipulationInWidgetEventPane extends SmartInsertDBMan
protected void addComponent ( JPanel mainPane , JScrollPane addPane ) {
protected void addComponent ( JPanel mainPane , JScrollPane addPane ) {
}
}
protected void addBottomComponent ( JPanel bottomPane , JPanel conditionPane , JPanel eventPane ) {
bottomPane . add ( column ( 10 ,
cell ( conditionPane ) ,
row ( cell ( eventPane ) , cell ( new UILabel ( ) ) )
) . getComponent ( ) ) ;
}
protected Dimension createConditionPanePreferredSize ( ) {
protected Dimension createConditionPanePreferredSize ( ) {
return FineUIScale . scale ( new Dimension ( 454 , 20 ) ) ;
return FineUIScale . scale ( new Dimension ( 454 , 20 ) ) ;
}
}