blob: a6ddbbfeef688c2d19b07572f183f2bc90d9b9fe [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Jeff Pound 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:
* Jeff Pound - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.tasks.ui.wizards;
import org.eclipse.jface.dialogs.IDialogSettings;
import org.eclipse.jface.wizard.IWizard;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.mylyn.internal.tasks.ui.TasksUiPlugin;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Shell;
/**
* @author Jeff Pound
*/
public class NewAttachmentWizardDialog extends WizardDialog {
private static final String ATTACHMENT_WIZARD_SETTINGS_SECTION = "PatchWizard"; //$NON-NLS-1$
public NewAttachmentWizardDialog(Shell parent, IWizard wizard, boolean modal) {
super(parent, wizard);
if (modal) {
setShellStyle(getShellStyle() | SWT.RESIZE);
} else {
setShellStyle(SWT.MODELESS | SWT.CLOSE | SWT.TITLE | SWT.BORDER | SWT.RESIZE);
}
setMinimumPageSize(600, 300);
setPageSize(600, 300);
setBlockOnOpen(modal);
}
@Override
protected IDialogSettings getDialogBoundsSettings() {
IDialogSettings settings = TasksUiPlugin.getDefault().getDialogSettings();
IDialogSettings section = settings.getSection(ATTACHMENT_WIZARD_SETTINGS_SECTION);
if (section == null) {
section = settings.addNewSection(ATTACHMENT_WIZARD_SETTINGS_SECTION);
}
return section;
}
}