REPORT-10946 离线状态下(断网)alphafine都打不开了 * commit 'c94806219de96cbd19f0f891902c8bd354c3be23': REPORT-10946 离线状态下(断网)alphafine都打不开了 1、正常断网后,需要联网的各模块提示“链接失败” 2、断网后联网,alphafine可以正常打开 3、和视觉沟通,热门界面的图标外围的圆,不使用swing画了,由视觉重新提供切图。research/10.0
@ -1,36 +0,0 @@
|
||||
package com.fr.design.mainframe.alphafine.preview; |
||||
|
||||
import com.bulenkov.iconloader.IconLoader; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
|
||||
import javax.swing.JPanel; |
||||
import java.awt.Color; |
||||
import java.awt.Graphics; |
||||
|
||||
/** |
||||
* @Author alex.sung |
||||
* created by 2018.08.15 |
||||
*/ |
||||
public class ContainsCirclePane extends JPanel { |
||||
|
||||
public ContainsCirclePane(int pngIndex) { |
||||
UILabel iconLabel = new UILabel(IconLoader.getIcon(AlphaFineConstants.IMAGE_URL + AlphaFineConstants.ALPHA_HOT_IMAGE_NAME + pngIndex + ".png")); |
||||
iconLabel.setPreferredSize(AlphaFineConstants.HOT_ICON_LABEL_SIZE); |
||||
iconLabel.setOpaque(true); |
||||
iconLabel.setBackground(Color.WHITE); |
||||
add(iconLabel); |
||||
} |
||||
|
||||
@Override |
||||
public void paintComponent(Graphics g) { |
||||
super.paintComponent(g); |
||||
int height = AlphaFineConstants.HOT_ICON_LABEL_HEIGHT; |
||||
setBackground(Color.white); |
||||
int x0 = getSize().width / 2; |
||||
int y0 = height / 2 + 23; |
||||
int r = height / 2 + 9; |
||||
g.setColor(AlphaFineConstants.LIGHT_GRAY); |
||||
g.drawOval(x0 - r, y0 - r, r * 2, r * 2); |
||||
} |
||||
} |
Before Width: | Height: | Size: 789 B After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 634 B After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 506 B After Width: | Height: | Size: 1.6 KiB |