forked from fanruan/design
Browse Source
Merge in DESIGN/design from ~TOMMY/design:feature/10.0 to feature/10.0 * commit '4f70159da57d5a2e3731f8fa9040a5872f677b36': REPORT-51678 同步部分插件修复代码 REPORT-52364 SnapChat弹窗资源路径修改与国际化 REPORT-52490 社区菜单添加模板商城入口 REPORT-51678 promptWindow逻辑反了 REPORT-51678 组件复用插件代码合并--补充SnapChat相关逻辑feature/10.0
Tommy
4 years ago
15 changed files with 221 additions and 26 deletions
@ -0,0 +1,167 @@
|
||||
package com.fr.design.mainframe.reuse; |
||||
|
||||
import com.fr.base.background.ColorBackground; |
||||
import com.fr.design.dialog.UIDialog; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.i18n.Toolkit; |
||||
import com.fr.design.layout.FRGUIPaneFactory; |
||||
import com.fr.design.mainframe.PromptWindow; |
||||
import com.fr.design.utils.gui.GUICoreUtils; |
||||
import com.fr.general.IOUtils; |
||||
|
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.ImageIcon; |
||||
import javax.swing.JButton; |
||||
import javax.swing.JPanel; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Color; |
||||
import java.awt.Dialog; |
||||
import java.awt.Dimension; |
||||
import java.awt.FlowLayout; |
||||
import java.awt.Font; |
||||
import java.awt.Frame; |
||||
import java.awt.Graphics; |
||||
import java.awt.Graphics2D; |
||||
import java.awt.Image; |
||||
import java.awt.RenderingHints; |
||||
import java.awt.geom.RoundRectangle2D; |
||||
|
||||
public class ReuseGuideDialog extends UIDialog implements PromptWindow { |
||||
InnerDialog innerDialog; |
||||
private static final Dimension DEFAULT = new Dimension(735, 510); |
||||
|
||||
public ReuseGuideDialog(Frame parent) { |
||||
super(parent); |
||||
} |
||||
|
||||
@Override |
||||
public void showWindow() { |
||||
innerDialog = new InnerDialog(this); |
||||
JPanel backGroundPane = new JPanel() { |
||||
@Override |
||||
protected void paintComponent(Graphics g) { |
||||
Image icon = IOUtils.readImage("com/fr/base/images/share/background.png");// 003.jpg是测试图片在项目的根目录下
|
||||
g.drawImage(icon, 0, 0, getSize().width, getSize().height, this);// 图片会自动缩放
|
||||
} |
||||
}; |
||||
add(backGroundPane, BorderLayout.CENTER); |
||||
initStyle(); |
||||
innerDialog.showWindow(); |
||||
} |
||||
|
||||
private void initStyle() { |
||||
setSize(DEFAULT); |
||||
setUndecorated(true); |
||||
setBackground(new Color(0, 0, 0, 0)); |
||||
GUICoreUtils.centerWindow(this); |
||||
} |
||||
|
||||
@Override |
||||
public void hideWindow() { |
||||
this.setVisible(false); |
||||
if (innerDialog != null) { |
||||
innerDialog.setVisible(false); |
||||
innerDialog.dispose(); |
||||
innerDialog = null; |
||||
} |
||||
this.dispose(); |
||||
} |
||||
|
||||
@Override |
||||
public void checkValid() { |
||||
|
||||
} |
||||
|
||||
class InnerDialog extends UIDialog { |
||||
private final Dimension DEFAULT = new Dimension(700, 475); |
||||
private static final int TITLE_FONT_SIZE = 20; |
||||
|
||||
public InnerDialog(Dialog dialog) { |
||||
super(dialog); |
||||
} |
||||
|
||||
public void showWindow() { |
||||
add(createCenterPanel(), BorderLayout.CENTER); |
||||
add(createSouthPanel(), BorderLayout.SOUTH); |
||||
add(createNorthPanel(), BorderLayout.NORTH); |
||||
showDialog(); |
||||
} |
||||
|
||||
private JPanel createNorthPanel() { |
||||
JPanel northPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT)); |
||||
|
||||
//右上角关闭按钮
|
||||
JButton button = new JButton(new ImageIcon(IOUtils.readImage("/com/fr/base/images/share/close.png").getScaledInstance(15, 15, Image.SCALE_SMOOTH))); |
||||
button.setBorder(null); |
||||
button.setOpaque(false); |
||||
button.addActionListener(e -> ReuseGuideDialog.this.hideWindow()); |
||||
|
||||
northPanel.setBorder(BorderFactory.createEmptyBorder(10, 0, 0, 15)); |
||||
northPanel.setOpaque(false); |
||||
northPanel.add(button); |
||||
return northPanel; |
||||
} |
||||
|
||||
private JPanel createCenterPanel() { |
||||
JPanel centerPanel = new JPanel(new BorderLayout()); |
||||
|
||||
UILabel titleLabel = new UILabel(Toolkit.i18nText("Fine-Design_Share_Drag_And_Make_Component")); |
||||
UILabel imageLabel = new UILabel(new ImageIcon(IOUtils.readImage("com/fr/base/images/share/guide.png").getScaledInstance(DEFAULT.width, DEFAULT.height, Image.SCALE_SMOOTH))); |
||||
titleLabel.setFont(new Font(titleLabel.getFont().getName(), Font.BOLD, TITLE_FONT_SIZE)); |
||||
titleLabel.setBorder(BorderFactory.createEmptyBorder()); |
||||
|
||||
JPanel panel = new JPanel(new FlowLayout(FlowLayout.CENTER)); |
||||
panel.setOpaque(false); |
||||
panel.add(titleLabel); |
||||
|
||||
centerPanel.setBorder(BorderFactory.createEmptyBorder(0, 0, 10, 0)); |
||||
centerPanel.setOpaque(false); |
||||
centerPanel.add(imageLabel, BorderLayout.CENTER); |
||||
centerPanel.add(panel, BorderLayout.NORTH); |
||||
return centerPanel; |
||||
} |
||||
|
||||
private JPanel createSouthPanel() { |
||||
JPanel southPanel = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||
|
||||
JButton button = new JButton(Toolkit.i18nText("Fine-Design_Share_Try_Drag")) { |
||||
@Override |
||||
public void paint(Graphics g) { |
||||
ColorBackground buttonBackground = ColorBackground.getInstance(Color.decode("#419BF9")); |
||||
Graphics2D g2d = (Graphics2D) g; |
||||
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); |
||||
buttonBackground.paint(g2d, new RoundRectangle2D.Double(0, 0, getWidth(), getHeight(), 8, 8)); |
||||
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF); |
||||
super.paint(g); |
||||
} |
||||
}; |
||||
button.setBorder(null); |
||||
button.setForeground(Color.WHITE); |
||||
button.setOpaque(false); |
||||
button.addActionListener(e -> ReuseGuideDialog.this.hideWindow()); |
||||
|
||||
southPanel.setBorder(BorderFactory.createEmptyBorder(0, 290, 19, 290)); |
||||
southPanel.setPreferredSize(new Dimension(DEFAULT.width, 51)); |
||||
southPanel.setOpaque(false); |
||||
southPanel.add(button); |
||||
return southPanel; |
||||
} |
||||
|
||||
/** |
||||
* 显示窗口 |
||||
*/ |
||||
private void showDialog() { |
||||
setSize(DEFAULT); |
||||
setUndecorated(true); |
||||
GUICoreUtils.centerWindow(this); |
||||
setModalityType(ModalityType.APPLICATION_MODAL); |
||||
ReuseGuideDialog.this.setVisible(true); |
||||
setVisible(true); |
||||
} |
||||
|
||||
@Override |
||||
public void checkValid() { |
||||
|
||||
} |
||||
} |
||||
} |
@ -1,4 +1,4 @@
|
||||
package com.fr.design.mainframe.share.ui.menu; |
||||
package com.fr.design.mainframe.reuse; |
||||
|
||||
import com.fr.design.notification.SnapChatKey; |
||||
|
Loading…
Reference in new issue