/******************************************************************************* * Copyright (c) 2004, 2008 Jeff Pound and others. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at * https://www.eclipse.org/legal/epl-2.0 * * SPDX-License-Identifier: EPL-2.0 * * 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; } }