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;
26 * The preference page that holds webbrowser preferences.
28 public class WebBrowserPreferencePage extends PreferencePage implements
29 IWorkbenchPreferencePage {
31 * WebBrowserPreferencePage constructor comment.
33 public WebBrowserPreferencePage() {
35 noDefaultAndApplyButton();
39 * Create the preference options.
42 * org.eclipse.swt.widgets.Composite
43 * @return org.eclipse.swt.widgets.Control
45 protected Control createContents(Composite parent) {
46 initializeDialogUnits(parent);
48 Composite composite = new Composite(parent, SWT.NONE);
49 GridLayout layout = new GridLayout();
50 layout.numColumns = 1;
51 layout.horizontalSpacing = convertHorizontalDLUsToPixels(4);
52 layout.verticalSpacing = convertVerticalDLUsToPixels(4);
53 layout.marginWidth = 0;
54 layout.marginHeight = 0;
55 composite.setLayout(layout);
56 GridData data = new GridData(GridData.FILL_HORIZONTAL
57 | GridData.VERTICAL_ALIGN_FILL);
58 composite.setLayoutData(data);
59 PlatformUI.getWorkbench().getHelpSystem().setHelp(composite,
60 ContextIds.PREF_BROWSER);
62 Label label = new Label(composite, SWT.WRAP);
63 label.setText(WebBrowserUIPlugin
64 .getResource("%preferenceWebBrowserDescription"));
65 data = new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING);
66 label.setLayoutData(data);
68 BrowserTableComposite browserComposite = new BrowserTableComposite(
71 data = new GridData(GridData.FILL_HORIZONTAL | GridData.FILL_VERTICAL);
72 browserComposite.setLayoutData(data);
74 Dialog.applyDialogFont(composite);
80 * Initializes this preference page using the passed desktop.
85 public void init(IWorkbench workbench) {
91 public void setVisible(boolean visible) {
92 super.setVisible(visible);
94 setTitle(WebBrowserUIPlugin
95 .getResource("%preferenceWebBrowserTitleLong"));