XiaXiang 7 years ago
parent
commit
04da144da2
  1. 2
      designer/src/com/fr/design/mainframe/alphafine/preview/DocumentPreviewPane.java
  2. 40
      designer_base/src/com/fr/design/gui/itextarea/UITextArea.java

2
designer/src/com/fr/design/mainframe/alphafine/preview/DocumentPreviewPane.java

@ -14,8 +14,8 @@ public class DocumentPreviewPane extends JPanel {
public DocumentPreviewPane(String title, String summary) { public DocumentPreviewPane(String title, String summary) {
this.setLayout(new BorderLayout()); this.setLayout(new BorderLayout());
this.setBackground(Color.WHITE);
this.setPreferredSize(new Dimension(AlphaFineConstants.RIGHT_WIDTH, AlphaFineConstants.CONTENT_HEIGHT)); this.setPreferredSize(new Dimension(AlphaFineConstants.RIGHT_WIDTH, AlphaFineConstants.CONTENT_HEIGHT));
this.setBackground(Color.white);
UITextArea titleArea = new UITextArea(title); UITextArea titleArea = new UITextArea(title);
titleArea.setBorder(null); titleArea.setBorder(null);
titleArea.setEditable(false); titleArea.setEditable(false);

40
designer_base/src/com/fr/design/gui/itextarea/UITextArea.java

@ -20,6 +20,11 @@ public class UITextArea extends JTextArea implements UIObserver {
initComponents(); initComponents();
} }
@Override
public Insets getInsets() {
return new Insets(5, 5, 5, 5);
}
public UITextArea() { public UITextArea() {
super(); super();
InputEventBaseOnOS.addBasicEditInputMap(this); InputEventBaseOnOS.addBasicEditInputMap(this);
@ -32,26 +37,6 @@ public class UITextArea extends JTextArea implements UIObserver {
initComponents(); initComponents();
} }
/**
* @param args
*/
public static void main(String... args) {
// JFrame jf = new JFrame("test");
// jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// JPanel content = (JPanel) jf.getContentPane();
// content.setLayout(new BorderLayout());
// UITextArea bb = new UITextArea("123455weoijweio reiwj kewl jfejkfljds kl jfldk jfk jdskfjkdsfklj dkl jfsdjf");
// content.add(bb, BorderLayout.CENTER);
// GUICoreUtils.centerWindow(jf);
// jf.setSize(400, 400);
// jf.setVisible(true);
}
@Override
public Insets getInsets() {
return new Insets(5, 5, 5, 5);
}
private void initComponents() { private void initComponents() {
setLineWrap(true); setLineWrap(true);
setWrapStyleWord(true); setWrapStyleWord(true);
@ -134,4 +119,19 @@ public class UITextArea extends JTextArea implements UIObserver {
public boolean shouldResponseChangeListener() { public boolean shouldResponseChangeListener() {
return true; return true;
} }
/**
* @param args
*/
public static void main(String... args) {
// JFrame jf = new JFrame("test");
// jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// JPanel content = (JPanel) jf.getContentPane();
// content.setLayout(new BorderLayout());
// UITextArea bb = new UITextArea("123455weoijweio reiwj kewl jfejkfljds kl jfldk jfk jdskfjkdsfklj dkl jfsdjf");
// content.add(bb, BorderLayout.CENTER);
// GUICoreUtils.centerWindow(jf);
// jf.setSize(400, 400);
// jf.setVisible(true);
}
} }
Loading…
Cancel
Save