renekton
3 months ago
3 changed files with 42 additions and 2 deletions
@ -0,0 +1,35 @@ |
|||||||
|
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; |
||||||
|
|
||||||
|
public class DBManipulationInWdigetEventNoCellPane extends DBManipulationPane { |
||||||
|
|
||||||
|
public DBManipulationInWdigetEventNoCellPane() { |
||||||
|
super(); |
||||||
|
} |
||||||
|
|
||||||
|
public DBManipulationInWdigetEventNoCellPane(Editor<?>[] v_Types) { |
||||||
|
super(v_Types); |
||||||
|
} |
||||||
|
|
||||||
|
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; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue