/******************************************************************************* * Copyright (c) 2000, 2008 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.dltk.javascript.internal.ui.refactoring.code; import org.eclipse.dltk.internal.corext.util.Messages; import org.eclipse.dltk.internal.javascript.corext.refactoring.code.InlineMethodRefactoring; import org.eclipse.dltk.javascript.internal.ui.refactoring.RefactoringMessages; import org.eclipse.dltk.ui.DLTKPluginImages; import org.eclipse.jface.dialogs.Dialog; import org.eclipse.ltk.core.refactoring.RefactoringStatus; import org.eclipse.ltk.ui.refactoring.UserInputWizardPage; import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Label; public class InlineMethodInputPage extends UserInputWizardPage { public static final String PAGE_NAME = "InlineMethodInputPage";//$NON-NLS-1$ private static final String DESCRIPTION = RefactoringMessages.InlineMethodInputPage_description; private InlineMethodRefactoring fRefactoring; private Button fRemove; public InlineMethodInputPage() { super(PAGE_NAME); setImageDescriptor(DLTKPluginImages.DESC_WIZBAN_REFACTOR_CU); setDescription(DESCRIPTION); } public void createControl(Composite parent) { initializeDialogUnits(parent); fRefactoring = (InlineMethodRefactoring) getRefactoring(); Composite result = new Composite(parent, SWT.NONE); setControl(result); GridLayout layout = new GridLayout(); result.setLayout(layout); GridData gd = null; boolean all = fRefactoring.getInitialMode() == InlineMethodRefactoring.Mode.ALL; Label label = new Label(result, SWT.NONE); String methodLabel = fRefactoring.getMethod().getElementName(); label.setText(Messages.format( RefactoringMessages.InlineMethodInputPage_inline_method, methodLabel)); label.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); Composite separator = new Composite(result, SWT.NONE); separator.setLayoutData(new GridData(0, 0)); Button radioAll = new Button(result, SWT.RADIO); radioAll.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); radioAll.setText(RefactoringMessages.InlineMethodInputPage_all_invocations); radioAll.setSelection(all); radioAll.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent event) { fRemove.setEnabled(fRefactoring.canEnableDeleteSource()); if (((Button) event.widget).getSelection()) changeRefactoring(InlineMethodRefactoring.Mode.ALL); } }); fRemove = new Button(result, SWT.CHECK); gd = new GridData(GridData.FILL_HORIZONTAL); gd.horizontalIndent = convertWidthInCharsToPixels(3); fRemove.setLayoutData(gd); fRemove.setText(RefactoringMessages.InlineMethodInputPage_delete_declaration); fRemove.setEnabled(all && fRefactoring.canEnableDeleteSource()); fRemove.setSelection(fRefactoring.canEnableDeleteSource()); fRefactoring.setDeleteSource(fRefactoring.canEnableDeleteSource()); fRemove.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent e) { fRefactoring.setDeleteSource(((Button) e.widget).getSelection()); } }); Button radioSelected = new Button(result, SWT.RADIO); radioSelected.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); radioSelected .setText(RefactoringMessages.InlineMethodInputPage_only_selected); radioSelected.setSelection(!all); if (all) { radioSelected.setEnabled(false); radioAll.setFocus(); } else { radioSelected.setFocus(); } radioSelected.addSelectionListener(new SelectionAdapter() { public void widgetSelected(SelectionEvent event) { fRemove.setEnabled(false); if (((Button) event.widget).getSelection()) changeRefactoring(InlineMethodRefactoring.Mode.SINGLE); } }); Dialog.applyDialogFont(result); /* * PlatformUI .getWorkbench() .getHelpSystem() .setHelp(getControl(), * IJavaHelpContextIds.INLINE_METHOD_WIZARD_PAGE); */ } private void changeRefactoring(InlineMethodRefactoring.Mode mode) { RefactoringStatus status; // try { status = fRefactoring.setCurrentMode(mode); /* * } catch (ModelException e) { status = * RefactoringStatus.createFatalErrorStatus(e.getMessage()); } */ setPageComplete(status); } }