blob: 35a802fc26171354e8d45b8417ba81e531bf43aa [file] [log] [blame]
/*
* 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.common.dialogs.preferences;
import java.util.SortedMap;
import java.util.TreeMap;
import org.apache.directory.studio.common.ui.widgets.BaseWidgetUtils;
import org.apache.directory.studio.ldapbrowser.core.model.schema.AttributeValueEditorRelation;
import org.apache.directory.studio.valueeditors.ValueEditorManager.ValueEditorExtension;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Shell;
/**
* The AttributeValueEditorDialog is used to specify
* value editors for attributes.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class AttributeValueEditorDialog extends Dialog
{
/** The initial attribute to value editor relation. */
private AttributeValueEditorRelation relation;
/** Map with class name => value editor extension. */
private SortedMap<String, ValueEditorExtension> class2ValueEditorExtensionMap;
/** The attribute types and OIDs. */
private String[] attributeTypesAndOids;
/** Map with value editor names => class name. */
private SortedMap<String, String> veName2classMap;
/** The selected attribute to value editor relation. */
private AttributeValueEditorRelation returnRelation;
/** The type or OID combo. */
private Combo typeOrOidCombo;
/** The value editor combo. */
private Combo valueEditorCombo;
/** The OK button of the dialog */
private Button okButton;
/**
* Creates a new instance of AttributeValueEditorDialog.
*
* @param parentShell the parent shell
* @param relation the initial attribute to value editor relation
* @param class2ValueEditorExtensionMap Map with class name => value editor extension
* @param attributeTypesAndOids the attribute types and OIDs
*/
public AttributeValueEditorDialog( Shell parentShell, AttributeValueEditorRelation relation,
SortedMap<String, ValueEditorExtension> class2ValueEditorExtensionMap, String[] attributeTypesAndOids )
{
super( parentShell );
this.relation = relation;
this.class2ValueEditorExtensionMap = class2ValueEditorExtensionMap;
this.attributeTypesAndOids = attributeTypesAndOids;
this.returnRelation = null;
this.veName2classMap = new TreeMap<String, String>();
for ( ValueEditorExtension vee : class2ValueEditorExtensionMap.values() )
{
veName2classMap.put( vee.name, vee.className );
}
}
/**
* {@inheritDoc}
*/
protected void configureShell( Shell newShell )
{
super.configureShell( newShell );
newShell.setText( Messages.getString( "AttributeValueEditorDialog.AttributeValueEditor" ) ); //$NON-NLS-1$
}
/**
* {@inheritDoc}
*/
protected void createButtonsForButtonBar( Composite parent )
{
okButton = createButton( parent, IDialogConstants.OK_ID, IDialogConstants.OK_LABEL, true );
createButton( parent, IDialogConstants.CANCEL_ID, IDialogConstants.CANCEL_LABEL, false );
validate();
}
/**
* {@inheritDoc}
*/
protected void okPressed()
{
returnRelation = new AttributeValueEditorRelation( typeOrOidCombo.getText(), veName2classMap
.get( valueEditorCombo.getText() ) );
super.okPressed();
}
/**
* {@inheritDoc}
*/
protected Control createDialogArea( Composite parent )
{
Composite composite = ( Composite ) super.createDialogArea( parent );
Composite c = BaseWidgetUtils.createColumnContainer( composite, 2, 1 );
BaseWidgetUtils.createLabel( c, Messages.getString( "AttributeValueEditorDialog.AttributeTypeOrOID" ), 1 ); //$NON-NLS-1$
typeOrOidCombo = BaseWidgetUtils.createCombo( c, attributeTypesAndOids, -1, 1 );
if ( relation != null && relation.getAttributeNumericOidOrType() != null )
{
typeOrOidCombo.setText( relation.getAttributeNumericOidOrType() );
}
typeOrOidCombo.addModifyListener( new ModifyListener()
{
public void modifyText( ModifyEvent e )
{
validate();
}
} );
BaseWidgetUtils.createLabel( c, Messages.getString( "AttributeValueEditorDialog.ValueEditor" ), 1 ); //$NON-NLS-1$
valueEditorCombo = BaseWidgetUtils.createReadonlyCombo( c, veName2classMap.keySet().toArray( new String[0] ),
-1, 1 );
if ( relation != null && relation.getValueEditorClassName() != null
&& class2ValueEditorExtensionMap.containsKey( relation.getValueEditorClassName() ) )
{
valueEditorCombo.setText( ( class2ValueEditorExtensionMap.get( relation.getValueEditorClassName() ) ).name );
}
valueEditorCombo.addModifyListener( new ModifyListener()
{
public void modifyText( ModifyEvent e )
{
validate();
}
} );
return composite;
}
private void validate()
{
okButton.setEnabled(
!"".equals( valueEditorCombo.getText() ) && !"".equals( typeOrOidCombo.getText() ) ); //$NON-NLS-1$ //$NON-NLS-2$
}
/**
* Gets the selected attribute to value editor relation.
*
* @return the selected attribute to value editor relation
*/
public AttributeValueEditorRelation getRelation()
{
return returnRelation;
}
}