/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * */ package org.apache.directory.studio.ldapbrowser.ui.editors.entry; import org.apache.directory.studio.ldapbrowser.common.BrowserCommonActivator; import org.apache.directory.studio.ldapbrowser.common.BrowserCommonConstants; import org.apache.directory.studio.ldapbrowser.common.widgets.entryeditor.AbstractOpenEditorAction; import org.apache.directory.studio.ldapbrowser.common.widgets.entryeditor.EntryEditorWidgetActionGroup; import org.apache.directory.studio.ldapbrowser.common.wizards.EditEntryWizard; import org.apache.directory.studio.ldapbrowser.core.model.IEntry; import org.apache.directory.studio.valueeditors.IValueEditor; import org.apache.directory.studio.valueeditors.ValueEditorManager; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.jface.viewers.TreeViewer; import org.eclipse.jface.wizard.WizardDialog; /** * Action to open the entry editor. * * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> */ public class OpenEntryEditorAction extends AbstractOpenEditorAction { /** The value editor. */ private IValueEditor valueEditor; /** * Creates a new instance of OpenEntryEditorAction. * * @param viewer the viewer * @param valueEditorManager the value editor manager * @param valueEditor the value editor * @param actionGroup the action group */ public OpenEntryEditorAction( TreeViewer viewer, ValueEditorManager valueEditorManager, IValueEditor valueEditor, EntryEditorWidgetActionGroup actionGroup ) { super( viewer, valueEditorManager, actionGroup ); setCellEditor( valueEditor.getCellEditor() ); this.valueEditor = valueEditor; } /** * Gets the value editor. * * @return the value editor */ public IValueEditor getValueEditor() { return valueEditor; } /** * {@inheritDoc} */ public void run() { IEntry entry = getSelectedValues().length > 0 ? getSelectedValues()[0].getAttribute().getEntry() : getSelectedAttributes().length > 0 ? getSelectedAttributes()[0].getEntry() : ( getInput() instanceof IEntry ) ? ( IEntry ) getInput() : null; if ( entry != null ) { // disable action handlers actionGroup.deactivateGlobalActionHandlers(); EditEntryWizard wizard = new EditEntryWizard( entry ); WizardDialog dialog = new WizardDialog( getShell(), wizard ); dialog.setBlockOnOpen( true ); dialog.create(); dialog.open(); // enable action handlers actionGroup.activateGlobalActionHandlers(); } } /** * {@inheritDoc} */ public void dispose() { valueEditor = null; super.dispose(); } /** * {@inheritDoc} */ public String getCommandId() { return BrowserCommonConstants.ACTION_ID_EDIT_RECORD; } /** * {@inheritDoc} */ public ImageDescriptor getImageDescriptor() { return BrowserCommonActivator.getDefault().getImageDescriptor( BrowserCommonConstants.IMG_ENTRY_EDITOR ); } /** * {@inheritDoc} */ public String getText() { return Messages.getString( "OpenEntryEditorAction.EditEntry" ); //$NON-NLS-1$ } /** * {@inheritDoc} */ public boolean isEnabled() { return true; } }