ngprintdialog.java

来自「Novocode的 SWT 控件框架 丰富了MDI功能」· Java 代码 · 共 72 行

JAVA
72
字号
/*******************************************************************************
 * Copyright (c) 2004 Stefan Zeiger and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.novocode.com/legal/epl-v10.html
 * 
 * Contributors:
 *     Stefan Zeiger (szeiger@novocode.com) - initial API and implementation
 *******************************************************************************/

package com.novocode.naf.gui;

import org.eclipse.swt.printing.*;

import com.novocode.naf.app.*;
import com.novocode.naf.data.ModelBinding;
import com.novocode.naf.model.*;


/**
 * A print dialog.
 * 
 * @author Stefan Zeiger (szeiger@novocode.com)
 * @since Dec 12, 2003
 */

public final class NGPrintDialog extends NGDialog
{
  public NGPrintDialog()
  {
    actionListeners = new String[] { "ok", "cancel" };
  }


  public DialogWindowInstance createWindowInstance(NAFApplication app, ModelMap models, WindowInstance parent) throws NAFException
  {
    PrintDialog dialog = new PrintDialog(parent.getShell(false), modality.style);
    String currentTitle = getCurrentTitle(models);
    if(currentTitle != null) dialog.setText(currentTitle);
    return new DialogWindowInstance(this, models, app, dialog);
  }


  public void openDialog(DialogWindowInstance dialog) throws NAFException
  {
    PrintDialog pd = (PrintDialog)dialog.dialog;
    IPrintDataModel pdModel = getModel("print", dialog.models);
    if(pdModel != null)
    {
      pd.setStartPage(pdModel.getStartPage());
      pd.setEndPage(pdModel.getEndPage());
      pd.setScope(pdModel.getScope());
      pd.setPrintToFile(pdModel.getPrintToFile());
    }
    PrinterData data = pd.open();
    if(data != null)
    {
      if(pdModel != null) pdModel.setAll(pd.getStartPage(), pd.getEndPage(), pd.getScope(), pd.getPrintToFile(), data);
      notifyActionListeners(actionListeners[0], dialog);
    }
    else notifyActionListeners(actionListeners[1], dialog);
  }


  protected Object createDefaultModel(ModelBinding mb)
  {
    if("print".equals(mb.type)) return new DefaultPrintDataModel();
    else return super.createDefaultModel(mb);
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?