All Downloads are FREE. Search and download functionalities are using the official Maven repository.

weka.gui.beans.NoteCustomizer Maven / Gradle / Ivy

Go to download

The Waikato Environment for Knowledge Analysis (WEKA), a machine learning workbench. This version represents the developer version, the "bleeding edge" of development, you could say. New functionality gets added to this version.

There is a newer version: 3.9.6
Show newest version
/*
 *   This program is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program.  If not, see .
 */

/*
 *    NoteCustomizer.java
 *    Copyright (C) 2011-2012 University of Waikato, Hamilton, New Zealand
 *
 */

package weka.gui.beans;

import java.awt.BorderLayout;
import java.awt.Window;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;

/**
 * Customizer for the note component.
 * 
 * @author Mark Hall (mhall{[at]}pentaho{[dot]}com)
 * @version $Revision: 8034 $
 *
 */
public class NoteCustomizer extends JPanel implements BeanCustomizer,
    CustomizerCloseRequester, CustomizerClosingListener {
  
  /**
   * for serialization
   */
  private static final long serialVersionUID = 995648616684953391L;
  
  /** the parent window */
  protected Window m_parentWindow;
  
  /** the note to be edited */
  protected Note m_note;
  
  /** text area for displaying the note's text */
  protected JTextArea m_textArea = new JTextArea(5, 20);
  
  /**
   *  Listener that wants to know the the modified status of the object that
   * we're customizing
   */
  private ModifyListener m_modifyListener;
  
  /**
   * Constructs a new note customizer
   */
  public NoteCustomizer() {
    setLayout(new BorderLayout());
    m_textArea.setLineWrap(true);
    
    JScrollPane sc = new JScrollPane(m_textArea);
    
    add(sc, BorderLayout.CENTER);
    
    JButton okBut = new JButton("OK");
    add(okBut, BorderLayout.SOUTH);
    okBut.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        customizerClosing();
        if (m_parentWindow != null) {
          m_parentWindow.dispose();
        }
      }
    });
  }

  @Override
  public void setParentWindow(Window parent) {
    // TODO Auto-generated method stub
    m_parentWindow = parent;
  }

  @Override
  public void setObject(Object ob) {
    // TODO Auto-generated method stub
    m_note = (Note)ob;
    m_textArea.setText(m_note.getNoteText());
    m_textArea.selectAll();
  }

  @Override
  public void customizerClosing() {
    if (m_note != null) {
      m_note.setNoteText(m_textArea.getText());
      
      if (m_modifyListener != null) {
        m_modifyListener.setModifiedStatus(NoteCustomizer.this, true);
      }
    }    
  }

  @Override
  public void setModifiedListener(ModifyListener l) {
    m_modifyListener = l;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy