Browse Source
* commit 'd8ecba856733a4ed06d1efc94f37b9fa303d2756': 无JIRA任务,代码规范 REPORT-3163 合作开发9.0设计器=>悬停1s后出现提示文字 PMD CR->LF REPORT-2897 9.0设计器修改 ->交互验收问题修改 REPORT-4097 [9.0一轮回归]Mac设计器输出文件时,路径显示问题 REPORT-3163 合作开发9.0设计器=>右侧tab按钮增加提示文字 REPORT-3993 - [9.0一轮回归]选中一片单元格设置控件、条件属性,只有第一个单元格有效 REPORT-4132 [9.0一轮回归] 填报界面控件设置的可用设置没有,两个都成了可见设置 REPORT-3899 [9.0一轮回归]聚合报表聚合块复制粘贴功能不可用master
18 changed files with 216 additions and 144 deletions
@ -1 +1,45 @@
|
||||
package com.fr.design.constants;
/**
* Created by IntelliJ IDEA.
* Author : Richer
* Version: 7.0.3
* Date: 12-12-27
* Time: 下午2:28
* 所有的间隙常数都从这里取,注意写上PMD检测规则来检查
*/
public class LayoutConstants {
private LayoutConstants() {
}
/**
* 水平间隙
*/
public static final int HGAP_SMALL = 1;
/**
* 水平间隙
*/
public static final int HGAP_LARGE = 4;
/**
* 垂直间隙
*/
public static final int VGAP_SMALL = 4;
/**
* 垂直间隙
*/
public static final int VGAP_MEDIUM = 6;
/**
* 垂直间隙
*/
public static final int VGAP_LARGE = 10;
/**
* 图表属性表中二级菜单距离右边框的距离
*/
public static final int CHART_ATTR_TOMARGIN = 46;
} |
||||
package com.fr.design.constants; |
||||
|
||||
/** |
||||
* Created by IntelliJ IDEA. |
||||
* Author : Richer |
||||
* Version: 7.0.3 |
||||
* Date: 12-12-27 |
||||
* Time: 下午2:28 |
||||
* 所有的间隙常数都从这里取,注意写上PMD检测规则来检查 |
||||
*/ |
||||
public class LayoutConstants { |
||||
private LayoutConstants() { |
||||
|
||||
} |
||||
|
||||
/** |
||||
* 水平间隙 |
||||
*/ |
||||
public static final int HGAP_SMALL = 1; |
||||
/** |
||||
* 水平间隙 |
||||
*/ |
||||
public static final int HGAP_LARGE = 4; |
||||
/** |
||||
* 垂直间隙 |
||||
*/ |
||||
public static final int VGAP_SMALL = 4; |
||||
/** |
||||
* 垂直间隙 |
||||
*/ |
||||
public static final int VGAP_MEDIUM = 6; |
||||
/** |
||||
* 垂直间隙 |
||||
*/ |
||||
public static final int VGAP_LARGE = 10; |
||||
/** |
||||
* 垂直间隙 |
||||
*/ |
||||
public static final int VGAP_HUGER = 20; |
||||
|
||||
/** |
||||
* 图表属性表中二级菜单距离右边框的距离 |
||||
*/ |
||||
public static final int CHART_ATTR_TOMARGIN = 46; |
||||
} |
Loading…
Reference in new issue