Browse Source
Merge in DESIGN/design from ~QINGHUI.LIU/design:release/10.0 to release/10.0 * commit 'f38350202d657a1da66b9d511936e96f0c05fc8e': 调整漏斗图系列参数 调整漏斗图富文本参数 CHART-15950 富文本编辑器的dialog不相应enter事件feature/big-screen
Qinghui.Liu
4 years ago
5 changed files with 61 additions and 4 deletions
@ -0,0 +1,31 @@
|
||||
package com.fr.van.chart.designer.component; |
||||
|
||||
import com.fr.design.dialog.BasicDialog; |
||||
import com.fr.design.dialog.BasicPane; |
||||
import com.fr.design.i18n.Toolkit; |
||||
import com.fr.design.utils.gui.GUICoreUtils; |
||||
|
||||
import java.awt.Dimension; |
||||
import java.awt.Frame; |
||||
|
||||
public class VanChartRichEditorDialog extends BasicDialog { |
||||
|
||||
public static final Dimension DEFAULT = new Dimension(660, 600); |
||||
|
||||
public VanChartRichEditorDialog(Frame parent, BasicPane pane) { |
||||
super(parent, pane); |
||||
|
||||
this.setTitle(Toolkit.i18nText("Fine-Design_Report_RichTextEditor")); |
||||
this.setBasicDialogSize(DEFAULT); |
||||
GUICoreUtils.centerWindow(this); |
||||
this.setResizable(false); |
||||
} |
||||
|
||||
protected void applyEnterAction() { |
||||
|
||||
} |
||||
|
||||
public void checkValid() { |
||||
|
||||
} |
||||
} |
Loading…
Reference in new issue