forked from fanruan/finekit
Browse Source
* commit '0dddce8205d218460ad0fe8e66bed6bb480724a0': update:一些说明的修改。 feat: 一些ui组件的finekit化。 feat:新增UIDescriptionTextArea组件说明。pull/1/head
superman
5 years ago
6 changed files with 78 additions and 7 deletions
@ -0,0 +1,8 @@
|
||||
package com.fanruan.api.design.macro; |
||||
|
||||
import java.awt.*; |
||||
|
||||
public class UIConstants { |
||||
Color UIPOPUPMENU_LINE_COLOR = new Color(13158861); |
||||
int ARC = 0; |
||||
} |
@ -1,4 +1,7 @@
|
||||
package com.fanruan.api.design.ui.component; |
||||
|
||||
/* |
||||
* 这个控件主要是用来在界面显示帮助信息的 |
||||
* */ |
||||
public class UIDescriptionTextArea extends com.fr.design.gui.itextarea.DescriptionTextArea{ |
||||
} |
||||
|
@ -0,0 +1,23 @@
|
||||
package com.fanruan.api.design.ui.component; |
||||
import java.awt.*; |
||||
|
||||
/* |
||||
* UI组件的边框 |
||||
* */ |
||||
public class UIRoundedBorder extends com.fr.design.border.UIRoundedBorder{ |
||||
public UIRoundedBorder(Color color){ |
||||
super(color); |
||||
} |
||||
|
||||
public UIRoundedBorder(Color color, int thickness) { |
||||
super(color, thickness); |
||||
} |
||||
|
||||
public UIRoundedBorder(Color color, int thickness, int roundedCorners) { |
||||
super(color, thickness, roundedCorners); |
||||
} |
||||
|
||||
public UIRoundedBorder(int lineStyle, Color color, int roundedCorners) { |
||||
super(lineStyle, color, roundedCorners); |
||||
} |
||||
} |
@ -0,0 +1,7 @@
|
||||
package com.fanruan.api.design.ui.factory; |
||||
|
||||
/* |
||||
* FormulaFactory:公式编辑管理器 |
||||
* */ |
||||
public class FormulaFactory extends com.fr.design.formula.FormulaFactory{ |
||||
} |
Loading…
Reference in new issue