|
|
|
@ -3,7 +3,6 @@ package com.fr.design.mainframe.alphafine.preview;
|
|
|
|
|
|
|
|
|
|
import com.fr.design.gui.itextarea.UITextArea; |
|
|
|
|
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
|
|
|
|
import com.fr.design.utils.gui.GUICoreUtils; |
|
|
|
|
|
|
|
|
|
import javax.swing.*; |
|
|
|
|
import java.awt.*; |
|
|
|
@ -16,30 +15,18 @@ public class DocumentPreviewPane extends JPanel {
|
|
|
|
|
public DocumentPreviewPane(String title, String summary) { |
|
|
|
|
this.setLayout(new BorderLayout()); |
|
|
|
|
this.setBackground(Color.WHITE); |
|
|
|
|
this.setPreferredSize(new Dimension(AlphaFineConstants.RIGHT_WIDTH, AlphaFineConstants.CONTENT_HEIGHT)); |
|
|
|
|
UITextArea titleArea = new UITextArea(title); |
|
|
|
|
UITextArea contentArea = new UITextArea(summary); |
|
|
|
|
titleArea.setOpaque(false); |
|
|
|
|
contentArea.setOpaque(false); |
|
|
|
|
titleArea.setBorder(BorderFactory.createEmptyBorder(0, 0, 0, 0)); |
|
|
|
|
titleArea.setBorder(null); |
|
|
|
|
titleArea.setEditable(false); |
|
|
|
|
titleArea.setForeground(AlphaFineConstants.BLUE); |
|
|
|
|
contentArea.setForeground(AlphaFineConstants.BLACK); |
|
|
|
|
titleArea.setPreferredSize(new Dimension(360, 30)); |
|
|
|
|
titleArea.setFont(AlphaFineConstants.LARGE_FONT); |
|
|
|
|
contentArea.setFont(AlphaFineConstants.MEDIUM_FONT); |
|
|
|
|
add(titleArea, BorderLayout.NORTH); |
|
|
|
|
UITextArea contentArea = new UITextArea(summary); |
|
|
|
|
contentArea.setEditable(false); |
|
|
|
|
contentArea.setBorder(null); |
|
|
|
|
contentArea.setForeground(AlphaFineConstants.BLACK); |
|
|
|
|
contentArea.setFont(AlphaFineConstants.MEDIUM_FONT); |
|
|
|
|
add(contentArea, BorderLayout.CENTER); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
|
|
JFrame jf = new JFrame("test"); |
|
|
|
|
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); |
|
|
|
|
JPanel content = (JPanel) jf.getContentPane(); |
|
|
|
|
content.setLayout(null); |
|
|
|
|
|
|
|
|
|
content.add(new DocumentPreviewPane("test", "ababababaabbababab")); |
|
|
|
|
GUICoreUtils.centerWindow(jf); |
|
|
|
|
jf.setSize(400, 400); |
|
|
|
|
jf.setVisible(true); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|