Package printplugin.dlgs.printfromqueuedialog

Source Code of printplugin.dlgs.printfromqueuedialog.PrintFromQueueDialogContent

/*
* 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.printfromqueuedialog;

import java.awt.Component;
import java.awt.Frame;
import java.awt.print.PageFormat;

import javax.swing.JTabbedPane;

import printplugin.PrintPlugin;
import printplugin.dlgs.DialogContent;
import printplugin.printer.JobFactory;
import printplugin.printer.PrintJob;
import printplugin.settings.QueuePrinterSettings;
import printplugin.settings.QueueScheme;
import printplugin.settings.Scheme;
import printplugin.settings.Settings;
import devplugin.PluginTreeNode;
import devplugin.Program;


public class PrintFromQueueDialogContent implements DialogContent {

  /** The localizer for this class. */
  private static final util.ui.Localizer mLocalizer
         = util.ui.Localizer.getLocalizerFor(PrintFromQueueDialogContent.class);

  private GeneralTab mGeneralTab;
  private LayoutTab mLayoutTab;
  private ExtrasTab mExtrasTab;
  private PluginTreeNode mRootNode;

  private Frame mParentFrame;

  public PrintFromQueueDialogContent(PluginTreeNode rootNode, Frame parentFrame) {
    mRootNode = rootNode;
    mParentFrame = parentFrame;
  }

  public void printingDone() {
    if (mGeneralTab.emptyQueueAfterPrinting()) {
      Program[] progs = mRootNode.getPrograms();
      for (Program prog : progs) {
        prog.unmark(PrintPlugin.getInstance());
      }
      mRootNode.removeAllChildren();
      mRootNode.update();
    }
  }

  public Component getContent() {
    JTabbedPane tab = new JTabbedPane();
    mGeneralTab = new GeneralTab(mRootNode);
    mLayoutTab = new LayoutTab();
    mExtrasTab = new ExtrasTab(mParentFrame);
    tab.add(mLocalizer.msg("listingsTab", "Daten"), mGeneralTab);
    tab.add(mLocalizer.msg("layoutTab","Layout"), mLayoutTab);
    tab.add(mLocalizer.msg("miscTab","Extras"), mExtrasTab);
    return tab;

  }

  public String getDialogTitle() {
    return mLocalizer.msg("dialogTitle","Print from queue");
  }

  public Settings getSettings() {
    return new QueuePrinterSettings(mGeneralTab.emptyQueueAfterPrinting(), mLayoutTab.getColumnsPerPage(), mExtrasTab.getProgramIconSettings(), mExtrasTab.getDateFont());
  }

  public void setSettings(Settings s) {
    QueuePrinterSettings settings = (QueuePrinterSettings)s;
    mGeneralTab.setEmptyQueueAfterPrinting(settings.emptyQueueAfterPrinting());
    mLayoutTab.setColumnsPerPage(settings.getColumnsPerPage());
    mExtrasTab.setProgramIconSettings(settings.getProgramIconSettings());
    mExtrasTab.setDateFont(settings.getDateFont());
  }

  public PrintJob createPrintJob(PageFormat format) {
    return JobFactory.createPrintJob((QueuePrinterSettings)getSettings(), format, mRootNode.getPrograms());
  }

  public Scheme createNewScheme(String schemeName) {
    return new QueueScheme(schemeName);
  }
}
TOP

Related Classes of printplugin.dlgs.printfromqueuedialog.PrintFromQueueDialogContent

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.