Package org.pentaho.reporting.designer.core.editor.bundle

Source Code of org.pentaho.reporting.designer.core.editor.bundle.ImportBundleFileDialog

/*!
* This program is free software; you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software
* Foundation.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
* or from the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* 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 Lesser General Public License for more details.
*
* Copyright (c) 2002-2013 Pentaho Corporation..  All rights reserved.
*/

package org.pentaho.reporting.designer.core.editor.bundle;

import java.awt.Component;
import java.awt.Dialog;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.HeadlessException;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFileChooser;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.event.DocumentEvent;
import javax.swing.filechooser.FileFilter;

import org.pentaho.reporting.designer.core.Messages;
import org.pentaho.reporting.libraries.base.util.FilesystemFilter;
import org.pentaho.reporting.libraries.base.util.StringUtils;
import org.pentaho.reporting.libraries.designtime.swing.CommonDialog;
import org.pentaho.reporting.libraries.designtime.swing.LibSwingUtil;
import org.pentaho.reporting.libraries.designtime.swing.event.DocumentChangeHandler;
import org.pentaho.reporting.libraries.designtime.swing.filechooser.CommonFileChooser;
import org.pentaho.reporting.libraries.designtime.swing.filechooser.FileChooserService;
import org.pentaho.reporting.libraries.docbundle.DocumentBundle;

public class ImportBundleFileDialog extends CommonDialog
{
  private class ValidateHandler extends DocumentChangeHandler implements ActionListener
  {
    protected void handleChange(final DocumentEvent e)
    {
      final String s = entryNameField.getText();
      if (StringUtils.isEmpty(s))
      {
        getConfirmAction().setEnabled(false);
        return;
      }

      if (StringUtils.isEmpty((String) mimeTypeBox.getSelectedItem()))
      {
        getConfirmAction().setEnabled(false);
        return;
      }

      getConfirmAction().setEnabled(bundle.isEntryExists(s) == false);
    }

    /**
     * Invoked when an action occurs.
     */
    public void actionPerformed(final ActionEvent e)
    {
      handleChange(null);
    }
  }

  private class BrowseAction extends AbstractAction
  {
    /**
     * Defines an <code>Action</code> object with a default
     * description string and default icon.
     */
    private BrowseAction()
    {
      putValue(Action.NAME, "..");
    }

    /**
     * Invoked when an action occurs.
     */
    public void actionPerformed(final ActionEvent e)
    {
      final FileFilter[] filters = {
          new FilesystemFilter(".properties", // NON-NLS
              Messages.getString("BundledResourceEditor.PropertiesTranslations")),
          new FilesystemFilter(new String[]{".xml", ".report", ".prpt", ".prpti", ".prptstyle"}, // NON-NLS
              Messages.getString("BundledResourceEditor.Resources"), true),
          new FilesystemFilter(new String[]{".gif", ".jpg", ".jpeg", ".png", ".svg", ".wmf"}, // NON-NLS
              Messages.getString("BundledResourceEditor.Images"), true),
      };

      final CommonFileChooser fileChooser = FileChooserService.getInstance().getFileChooser("resources");//NON-NLS
      fileChooser.setFilters(filters);
      if (fileChooser.showDialog(ImportBundleFileDialog.this, JFileChooser.OPEN_DIALOG) == false)
      {
        return;
      }
      final File selectedFile = fileChooser.getSelectedFile();
      if (selectedFile == null)
      {
        return;
      }

      fileNameField.setText(selectedFile.getPath());
    }
  }

  private JTextField fileNameField;
  private JComboBox mimeTypeBox;
  private JTextField entryNameField;
  private DocumentBundle bundle;

  public ImportBundleFileDialog(final Dialog owner)
      throws HeadlessException
  {
    super(owner);

    final ValidateHandler listener = new ValidateHandler();

    mimeTypeBox = new JComboBox();
    mimeTypeBox.setEditable(true);
    mimeTypeBox.addItem("text/plain"); // NON-NLS
    mimeTypeBox.addItem("text/xml"); // NON-NLS
    mimeTypeBox.addItem("image/jpeg"); // NON-NLS
    mimeTypeBox.addItem("image/png"); // NON-NLS
    mimeTypeBox.addItem("image/gif"); // NON-NLS
    mimeTypeBox.addItem("application/octet-stream"); // NON-NLS
    mimeTypeBox.setSelectedIndex(0);
    mimeTypeBox.addActionListener(listener);

    entryNameField = new JTextField();
    entryNameField.getDocument().addDocumentListener(listener);

    fileNameField = new JTextField();
    fileNameField.getDocument().addDocumentListener(listener);

    init();
  }

  protected String getDialogId()
  {
    return "ReportDesigner.Core.ImportBundleFile";
  }

  protected Component createContentPane()
  {
    final JPanel panel = new JPanel();
    panel.setLayout(new GridBagLayout());

    GridBagConstraints gbc = new GridBagConstraints();
    gbc.gridx = 0;
    gbc.gridy = 0;
    panel.add(new JLabel(Messages.getString("ImportBundleFileDialog.FileName")), gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 0;
    gbc.gridy = 1;
    panel.add(new JLabel(Messages.getString("ImportBundleFileDialog.EntryName")), gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 0;
    gbc.gridy = 2;
    panel.add(new JLabel(Messages.getString("ImportBundleFileDialog.ContentType")), gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 1;
    gbc.gridy = 0;
    gbc.fill = GridBagConstraints.HORIZONTAL;
    gbc.weightx = 1;
    panel.add(fileNameField, gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 1;
    gbc.gridy = 1;
    gbc.fill = GridBagConstraints.HORIZONTAL;
    gbc.weightx = 1;
    panel.add(entryNameField, gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 1;
    gbc.gridy = 2;
    gbc.fill = GridBagConstraints.HORIZONTAL;
    gbc.weightx = 1;
    panel.add(mimeTypeBox, gbc);

    gbc = new GridBagConstraints();
    gbc.gridx = 2;
    gbc.gridy = 0;
    panel.add(new JButton(new BrowseAction()), gbc);

    return panel;
  }

  public boolean performCreateEntry(final DocumentBundle bundle)
  {
    this.bundle = bundle;
    mimeTypeBox.setSelectedIndex(0);
    entryNameField.setText("");
    fileNameField.setText("");
    LibSwingUtil.centerDialogInParent(this);
    return super.performEdit();
  }

  public String getMimeType()
  {
    return (String) mimeTypeBox.getSelectedItem();
  }

  public String getEntryName()
  {
    return entryNameField.getText();
  }

  public String getFileName()
  {
    return fileNameField.getText();
  }
}
TOP

Related Classes of org.pentaho.reporting.designer.core.editor.bundle.ImportBundleFileDialog

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.