blob: 40c1beb50a57e4fa08f4e0f12493e87341e374e7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2010 IBM Corporation 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.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.gef.examples.logicdesigner.actions;
import org.eclipse.draw2d.PrintFigureOperation;
import org.eclipse.draw2d.rap.swt.SWT;
import org.eclipse.gef.examples.logicdesigner.LogicMessages;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Shell;
/**
* @author Eric Bordeau
*/
public class PrintModeDialog extends Dialog {
private Button tile, fitPage, fitWidth, fitHeight;
public PrintModeDialog(Shell shell) {
super(shell);
}
protected void cancelPressed() {
setReturnCode(-1);
close();
}
protected void configureShell(Shell newShell) {
newShell.setText(LogicMessages.PrintDialog_Title);
super.configureShell(newShell);
}
protected Control createDialogArea(Composite parent) {
Composite composite = (Composite) super.createDialogArea(parent);
tile = new Button(composite, SWT.RADIO);
tile.setText(LogicMessages.PrintDialog_Tile);
tile.setSelection(true);
fitPage = new Button(composite, SWT.RADIO);
fitPage.setText(LogicMessages.PrintDialog_Page);
fitWidth = new Button(composite, SWT.RADIO);
fitWidth.setText(LogicMessages.PrintDialog_Width);
fitHeight = new Button(composite, SWT.RADIO);
fitHeight.setText(LogicMessages.PrintDialog_Height);
return composite;
}
protected void okPressed() {
int returnCode = -1;
if (tile.getSelection())
returnCode = PrintFigureOperation.TILE;
else if (fitPage.getSelection())
returnCode = PrintFigureOperation.FIT_PAGE;
else if (fitHeight.getSelection())
returnCode = PrintFigureOperation.FIT_HEIGHT;
else if (fitWidth.getSelection())
returnCode = PrintFigureOperation.FIT_WIDTH;
setReturnCode(returnCode);
close();
}
}