* commit '797c7bd969e596eea13b8a89433163797ed5cd23': 添加注释 新增控件提交面板 REPORT-134702 【fr-fbp回归】最新设计器,切换本地工作目录报错大版本不匹配 REPORT-134361 修复设计器起始页卡片部分场景边框丢失的问题 REPORT-134341 & REPORT-134374 & REPORT-134128 & REPORT-133990 & REPORT-131838【newUI】fix:fbp回归问题修复 REPORT-121536 回归-FR-模板web属性-引用的css未生效fbp/feature
@ -0,0 +1,42 @@
|
||||
package com.fr.design.write.submit; |
||||
|
||||
import com.fine.theme.utils.FineUIScale; |
||||
import com.fr.design.editor.editor.Editor; |
||||
|
||||
import java.awt.BorderLayout; |
||||
import java.awt.Dimension; |
||||
|
||||
import static com.fine.theme.utils.FineUIScale.scale; |
||||
|
||||
/** |
||||
* 控件面板添加的控件绑定的提交入库事件面板 |
||||
* |
||||
* @author Renekton |
||||
* @since 11.0 |
||||
* Created on 2024/09/13 |
||||
*/ |
||||
public class DBManipulationInWdigetEventNoCellPane extends DBManipulationPane { |
||||
|
||||
public DBManipulationInWdigetEventNoCellPane() { |
||||
super(); |
||||
} |
||||
|
||||
public DBManipulationInWdigetEventNoCellPane(Editor<?>[] vTypes) { |
||||
super(vTypes); |
||||
} |
||||
|
||||
protected Dimension createEditTablePreferredSize() { |
||||
return scale(new Dimension(280, 150)); |
||||
} |
||||
|
||||
protected Dimension getPreferredScrollableViewportSize() { |
||||
return scale(new Dimension(280, 120)); |
||||
} |
||||
protected Dimension createControlBtnPanePreferredSize(){ |
||||
return FineUIScale.scale(new Dimension(110, 20)); |
||||
} |
||||
|
||||
protected String setControlBtnPanePosition(){ |
||||
return BorderLayout.EAST; |
||||
} |
||||
} |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 538 B |
After Width: | Height: | Size: 690 B |
After Width: | Height: | Size: 6.2 KiB |
After Width: | Height: | Size: 901 B |
After Width: | Height: | Size: 906 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 650 B |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 515 B |
After Width: | Height: | Size: 587 B |
After Width: | Height: | Size: 6.5 KiB |
After Width: | Height: | Size: 5.2 KiB |
@ -1 +1 @@
|
||||
report-engine-key=fine-report-engine-1.0.jar |
||||
report-engine-key=fine-report-engine-1.0.0.jar |