Package printplugin.dlgs.components

Source Code of printplugin.dlgs.components.ProgramItemFieldsConfigDlg

/*
* TV-Browser
* Copyright (C) 04-2003 Martin Oberhauser (martin@tvbrowser.org)
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*
* CVS information:
*  $RCSfile$
*   $Source$
*     $Date: 2010-06-28 19:33:48 +0200 (Mon, 28 Jun 2010) $
*   $Author: bananeweizen $
* $Revision: 6662 $
*/

package printplugin.dlgs.components;

import java.awt.BorderLayout;
import java.awt.Frame;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.Iterator;

import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JPanel;

import util.ui.Localizer;
import util.ui.OrderChooser;
import util.ui.UiUtilities;
import util.ui.WindowClosingIf;
import devplugin.ProgramFieldType;

public class ProgramItemFieldsConfigDlg extends JDialog implements WindowClosingIf{

  private static final util.ui.Localizer mLocalizer
      = util.ui.Localizer.getLocalizerFor(ProgramItemFieldsConfigDlg.class);

  private OrderChooser mOrderChooser;
  protected static final int OK = 0;
  private static final int CANCEL = 1;
  private int mResult;
 
  public ProgramItemFieldsConfigDlg(Frame parent, ProgramFieldType[] fieldTypes) {
   
    super(parent, true);
    setTitle(mLocalizer.msg("configureProgram","Sendungen anpassen"));
   
    UiUtilities.registerForClosing(this);
   
    JPanel contentPane = (JPanel)getContentPane();
    contentPane.setLayout(new BorderLayout());
    contentPane.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
   
    JPanel southPn = new JPanel(new BorderLayout());
    JPanel btnPn = new JPanel();
   
    JButton okBt = new JButton(Localizer.getLocalization(Localizer.I18N_OK));
    JButton cancelBt = new JButton(Localizer.getLocalization(Localizer.I18N_CANCEL));
   
    btnPn.add(okBt);
    btnPn.add(cancelBt);
    southPn.add(btnPn,BorderLayout.NORTH);
   
    JPanel centerPn = new JPanel(new BorderLayout());
    centerPn.add(mOrderChooser = new OrderChooser(fieldTypes, getAvailableTypes()), BorderLayout.NORTH);
    JLabel lb = new JLabel("<html>Bestimmen Sie welche Informationen und in welcher <br>" +
                                 "Reihenfolge diese Informationen dargestellt werden.<br>" +
                                 "Beachten Sie, dass je nach verfuegbarem Platz auf dem Papier<br>" +
                                 "nicht alles dargestellt werden kann.</html>");
    centerPn.add(lb,BorderLayout.SOUTH);
   
    contentPane.add(centerPn,BorderLayout.CENTER);
    contentPane.add(southPn, BorderLayout.SOUTH);
   
   
    okBt.addActionListener(new ActionListener(){
      public void actionPerformed(ActionEvent event) {
        mResult = OK;
        setVisible(false);
      }
      });
   
    cancelBt.addActionListener(new ActionListener(){
      public void actionPerformed(ActionEvent event) {
        close();
      }
    });
    mResult = CANCEL;
   
    pack();
  }
 
  public int getResult() {
    return mResult;
  }
 
  public ProgramFieldType[] getProgramItemFieldTypes() {
    Object[] items = mOrderChooser.getOrder();
    ProgramFieldType[] result = new ProgramFieldType[items.length];
    System.arraycopy(items,0,result,0,result.length);
    return result;
  }
 
  private ProgramFieldType[] getAvailableTypes() {
    ArrayList<ProgramFieldType> typeList = new ArrayList<ProgramFieldType>();
   
    Iterator<ProgramFieldType> typeIter = ProgramFieldType.getTypeIterator();
    while (typeIter.hasNext()) {
      ProgramFieldType type = typeIter.next();
     
      if ((type.getFormat() != ProgramFieldType.BINARY_FORMAT)
        && (type != ProgramFieldType.INFO_TYPE)
        && (type != ProgramFieldType.START_TIME_TYPE)
        && (type != ProgramFieldType.END_TIME_TYPE)
        && (type != ProgramFieldType.TITLE_TYPE))
      {
        typeList.add(type);
      }
    }
   
    ProgramFieldType[] typeArr = new ProgramFieldType[typeList.size()];
    typeList.toArray(typeArr);
    return typeArr;
  }

  public void close() {
    mResult = CANCEL;
    setVisible(false);
  }
 
}
TOP

Related Classes of printplugin.dlgs.components.ProgramItemFieldsConfigDlg

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.