blob: 880848819f325dfd2b09a83026f81a2a8809138d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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.update.internal.ui.preferences;
import java.net.*;
import org.eclipse.core.runtime.*;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.preference.*;
import org.eclipse.swt.*;
import org.eclipse.swt.events.*;
import org.eclipse.swt.layout.*;
import org.eclipse.swt.widgets.*;
import org.eclipse.ui.*;
import org.eclipse.update.internal.core.*;
import org.eclipse.update.internal.operations.*;
import org.eclipse.update.internal.ui.UpdateUIMessages;
/**
* Insert the type's description here.
* @see PreferencePage
*/
public class UpdateSettingsPreferencePage
extends PreferencePage
implements IWorkbenchPreferencePage {
private Text mappingsFile;
/**
* The constructor.
*/
public UpdateSettingsPreferencePage() {
setDescription(UpdateUIMessages.UpdateSettingsPreferencePage_description);
}
/**
* Insert the method's description here.
*/
public void init(IWorkbench workbench) {
}
public Control createContents(Composite parent) {
Composite container = new Composite(parent, SWT.NULL);
GridLayout layout = new GridLayout();
container.setLayout(layout);
layout.marginWidth = layout.marginHeight = 0;
layout.numColumns = 2;
Label label = new Label(container, SWT.NULL);
label.setText(UpdateUIMessages.UpdateSettingsPreferencePage_label);
mappingsFile = new Text(container, SWT.SINGLE | SWT.BORDER);
initialize();
mappingsFile.addModifyListener(new ModifyListener() {
public void modifyText(ModifyEvent e) {
textChanged();
}
});
GridData gd = new GridData(GridData.FILL_HORIZONTAL);
mappingsFile.setLayoutData(gd);
return container;
}
private void initialize() {
Preferences pref = UpdateCore.getPlugin().getPluginPreferences();
String text = pref.getString(UpdateUtils.P_UPDATE_POLICY_URL);
mappingsFile.setText(text);
textChanged();
}
private void textChanged() {
String text = mappingsFile.getText();
if (text.length() > 0) {
try {
new URL(text);
} catch (MalformedURLException e) {
setValid(false);
setErrorMessage(UpdateUIMessages.UpdateSettingsPreferencePage_invalid);
return;
}
}
setValid(true);
setErrorMessage(null);
}
public boolean performOk() {
Preferences pref = UpdateCore.getPlugin().getPluginPreferences();
String text = mappingsFile.getText();
if (text.length() > 0)
pref.setValue(UpdateUtils.P_UPDATE_POLICY_URL, text);
else
pref.setToDefault(UpdateUtils.P_UPDATE_POLICY_URL);
UpdateCore.getPlugin().savePluginPreferences();
return true;
}
protected void performDefaults() {
mappingsFile.setText(""); //$NON-NLS-1$
super.performDefaults();
}
public void createControl(Composite parent) {
super.createControl(parent);
Dialog.applyDialogFont(getControl());
/*
WorkbenchHelp.setHelp(
parent,"org.eclipse.update.ui.AppServerPreferencePage");
*/
}
}