2 * Copyright (c) 2003 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM - Initial API and implementation
11 package net.sourceforge.phpeclipse.webbrowser.internal;
13 import org.eclipse.jface.dialogs.Dialog;
14 import org.eclipse.jface.preference.PreferencePage;
15 import org.eclipse.swt.SWT;
16 import org.eclipse.swt.layout.GridData;
17 import org.eclipse.swt.layout.GridLayout;
18 import org.eclipse.swt.widgets.Composite;
19 import org.eclipse.swt.widgets.Control;
20 import org.eclipse.swt.widgets.Label;
21 import org.eclipse.ui.IWorkbench;
22 import org.eclipse.ui.IWorkbenchPreferencePage;
23 import org.eclipse.ui.PlatformUI;
25 * A preference page that holds internet preferences.
27 public class InternetPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
29 * InternetPreferencePage constructor comment.
31 public InternetPreferencePage() {
33 noDefaultAndApplyButton();
37 * Create the preference options.
39 * @param parent org.eclipse.swt.widgets.Composite
40 * @return org.eclipse.swt.widgets.Control
42 protected Control createContents(Composite parent) {
43 initializeDialogUnits(parent);
45 Composite composite = new Composite(parent, SWT.NONE);
46 GridLayout layout = new GridLayout();
47 layout.numColumns = 1;
48 layout.horizontalSpacing = convertHorizontalDLUsToPixels(4);
49 layout.verticalSpacing = convertVerticalDLUsToPixels(4);
50 layout.marginWidth = 0;
51 layout.marginHeight = 0;
52 composite.setLayout(layout);
53 GridData data = new GridData(GridData.FILL_HORIZONTAL | GridData.VERTICAL_ALIGN_FILL);
54 composite.setLayoutData(data);
55 PlatformUI.getWorkbench().getHelpSystem().setHelp(composite, ContextIds.PREF_BROWSER);
57 Label label = new Label(composite, SWT.WRAP);
58 label.setText(WebBrowserUIPlugin.getResource("%preferenceInternetDescription"));
59 data = new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING);
60 label.setLayoutData(data);
62 Dialog.applyDialogFont(composite);
68 * Initializes this preference page using the passed desktop.
70 * @param desktop the current desktop
72 public void init(IWorkbench workbench) { }