blob: 99bd08f8248909937033c793d132ed1443785901 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 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.wst.xsd.ui.internal.properties.section;
import org.eclipse.core.resources.IFile;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.ViewerFilter;
import org.eclipse.jface.window.Window;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.CLabel;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.FormAttachment;
import org.eclipse.swt.layout.FormData;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
import org.eclipse.ui.IFileEditorInput;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.wst.common.ui.properties.ITabbedPropertyConstants;
import org.eclipse.wst.common.ui.properties.TabbedPropertySheetWidgetFactory;
import org.eclipse.wst.common.ui.viewers.ResourceFilter;
import org.eclipse.wst.xml.uriresolver.util.URIHelper;
import org.eclipse.wst.xsd.ui.internal.XSDEditorPlugin;
import org.eclipse.wst.xsd.ui.internal.wizards.XSDSelectIncludeFileWizard;
import org.eclipse.xsd.XSDInclude;
import org.eclipse.xsd.XSDRedefine;
import org.eclipse.xsd.impl.XSDIncludeImpl;
import org.eclipse.xsd.impl.XSDRedefineImpl;
import org.w3c.dom.Element;
public class SchemaLocationSection extends AbstractSection
{
IWorkbenchPart part;
Text schemaLocationText;
Button wizardButton;
/**
*
*/
public SchemaLocationSection()
{
super();
}
/**
* @see org.eclipse.wst.common.ui.properties.ITabbedPropertySection#createControls(org.eclipse.swt.widgets.Composite, org.eclipse.wst.common.ui.properties.TabbedPropertySheetWidgetFactory)
*/
public void createControls(Composite parent, TabbedPropertySheetWidgetFactory factory)
{
super.createControls(parent, factory);
Composite composite = getWidgetFactory().createFlatFormComposite(parent);
int leftCoordinate = getStandardLabelWidth(composite,
new String[] {XSDEditorPlugin.getXSDString("_UI_LABEL_SCHEMA_LOCATION")});
// Create Schema Location Label
CLabel schemaLocationLabel = getWidgetFactory().createCLabel(composite, XSDEditorPlugin.getXSDString("_UI_LABEL_SCHEMA_LOCATION")); //$NON-NLS-1$
// Create Schema Location Text
schemaLocationText = getWidgetFactory().createText(composite, "", SWT.NONE); //$NON-NLS-1$
// Create Wizard Button
wizardButton = getWidgetFactory().createButton(composite, "", SWT.NONE); //$NON-NLS-1$
wizardButton.setImage(XSDEditorPlugin.getXSDImage("icons/browsebutton.gif")); //$NON-NLS-1$
FormData buttonFormData = new FormData();
buttonFormData.left = new FormAttachment(100, -rightMarginSpace + 2);
buttonFormData.right = new FormAttachment(100,0);
buttonFormData.top = new FormAttachment(schemaLocationText, 0, SWT.CENTER);
wizardButton.setLayoutData(buttonFormData);
wizardButton.addSelectionListener(this);
schemaLocationText.setEditable(false);
FormData schemaLocationData = new FormData();
// schemaLocationData.left = new FormAttachment(0, 110);
schemaLocationData.left = new FormAttachment(0, leftCoordinate);
schemaLocationData.right = new FormAttachment(wizardButton, 0);
// schemaLocationData.top = new FormAttachment(0, 0);
schemaLocationText.setLayoutData(schemaLocationData);
schemaLocationText.addListener(SWT.Modify, this);
FormData data = new FormData();
data.left = new FormAttachment(0, 0);
data.right = new FormAttachment(schemaLocationText, -ITabbedPropertyConstants.HSPACE);
data.top = new FormAttachment(schemaLocationText, 0, SWT.CENTER);
schemaLocationLabel.setLayoutData(data);
}
public void widgetSelected(SelectionEvent event) {
if (event.widget == wizardButton) {
Shell shell = Display.getCurrent().getActiveShell();
IFile currentIFile = ((IFileEditorInput)getActiveEditor().getEditorInput()).getFile();
ViewerFilter filter = new ResourceFilter(new String[] { ".xsd" }, //$NON-NLS-1$
new IFile[] { currentIFile },
null);
XSDSelectIncludeFileWizard fileSelectWizard =
new XSDSelectIncludeFileWizard(xsdSchema, true,
XSDEditorPlugin.getXSDString("_UI_FILEDIALOG_SELECT_XML_SCHEMA"), //$NON-NLS-1$
XSDEditorPlugin.getXSDString("_UI_FILEDIALOG_SELECT_XML_DESC"), //$NON-NLS-1$
filter,
(IStructuredSelection) selection);
WizardDialog wizardDialog = new WizardDialog(shell, fileSelectWizard);
wizardDialog.create();
wizardDialog.setBlockOnOpen(true);
int result = wizardDialog.open();
String value = schemaLocationText.getText();
if (result == Window.OK)
{
IFile selectedIFile = fileSelectWizard.getResultFile();
String schemaFileString = value;
if (selectedIFile != null)
{
schemaFileString = URIHelper.getRelativeURI(selectedIFile.getLocation(), currentIFile.getLocation());
}
else
{
schemaFileString = fileSelectWizard.getURL();
}
if (input instanceof XSDInclude) {
Element element = ((XSDIncludeImpl) input).getElement();
element.setAttribute("schemaLocation", schemaFileString); //$NON-NLS-1$
}
else if (input instanceof XSDRedefine) {
Element element = ((XSDRedefineImpl) input).getElement();
element.setAttribute("schemaLocation", schemaFileString); //$NON-NLS-1$
}
refresh();
}
}
}
/*
* @see org.eclipse.wst.common.ui.properties.view.ITabbedPropertySection#refresh()
*/
public void refresh()
{
if (doRefresh)
{
setListenerEnabled(false);
Element element = null;
if (input instanceof XSDInclude) {
element = ((XSDIncludeImpl) input).getElement();
}
else if (input instanceof XSDRedefine) {
element = ((XSDRedefineImpl) input).getElement();
}
if (element != null) {
String location = ""; //$NON-NLS-1$
location = element.getAttribute("schemaLocation"); //$NON-NLS-1$
schemaLocationText.setText(location);
}
setListenerEnabled(true);
}
}
/* (non-Javadoc)
* @see org.eclipse.wst.common.ui.properties.ISection#shouldUseExtraSpace()
*/
public boolean shouldUseExtraSpace()
{
return true;
}
}