/** * Licensed 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. * * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. */ package org.sintef.thingml.resource.thingml.ui; /** * The root preference page */ public class ThingmlPreferencePage extends org.eclipse.jface.preference.PreferencePage implements org.eclipse.ui.IWorkbenchPreferencePage { public void init(org.eclipse.ui.IWorkbench workbench) { setPreferenceStore(org.sintef.thingml.resource.thingml.ui.ThingmlUIPlugin.getDefault().getPreferenceStore()); setDescription("Thingml Text Editor Preferences"); } @Override protected org.eclipse.swt.widgets.Control createContents(org.eclipse.swt.widgets.Composite parent) { org.eclipse.swt.widgets.Composite settingComposite = new org.eclipse.swt.widgets.Composite(parent, org.eclipse.swt.SWT.NONE); org.eclipse.swt.layout.GridLayout layout = new org.eclipse.swt.layout.GridLayout(); org.eclipse.swt.layout.GridData gd; layout.numColumns= 1; layout.marginHeight= 0; layout.marginWidth= 0; gd = new org.eclipse.swt.layout.GridData(org.eclipse.swt.layout.GridData.BEGINNING); settingComposite.setLayout(layout); settingComposite.setLayoutData(gd); org.eclipse.swt.widgets.Link link = new org.eclipse.swt.widgets.Link(settingComposite, org.eclipse.swt.SWT.NONE); link.setText("Go to <A href=\"http://www.emftext.org\">www.emftext.org</A> for more information."); link.setSize(140, 40); link.addSelectionListener(new org.eclipse.swt.events.SelectionListener() { public void widgetSelected(org.eclipse.swt.events.SelectionEvent e) { if (e.text.startsWith("http")) org.eclipse.swt.program.Program.launch(e.text); } public void widgetDefaultSelected(org.eclipse.swt.events.SelectionEvent e) {} }); return settingComposite; } }