+++ /dev/null
-/*******************************************************************************
- * Copyright (c) 2000, 2004 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package net.sourceforge.phpdt.internal.ui.preferences;
-
-import net.sourceforge.phpdt.internal.ui.IJavaHelpContextIds;
-import net.sourceforge.phpdt.internal.ui.dialogs.StatusUtil;
-import net.sourceforge.phpdt.internal.ui.wizards.IStatusChangeListener;
-//import net.sourceforge.phpeclipse.PHPeclipsePlugin;
-import net.sourceforge.phpeclipse.ui.WebUI;
-
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.jface.dialogs.Dialog;
-import org.eclipse.jface.preference.PreferencePage;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.swt.widgets.Control;
-import org.eclipse.ui.IWorkbench;
-import org.eclipse.ui.IWorkbenchPreferencePage;
-import org.eclipse.ui.PlatformUI;
-
-/*
- * The page to configure the code formatter options.
- */
-public class CodeTemplatePreferencePage extends PreferencePage implements
- IWorkbenchPreferencePage, IStatusChangeListener {
-
- private CodeTemplateBlock fCodeTemplateConfigurationBlock;
-
- public CodeTemplatePreferencePage() {
- setPreferenceStore(WebUI.getDefault().getPreferenceStore());
- // setDescription(PreferencesMessages.getString("CodeTemplatesPreferencePage.description"));
- // //$NON-NLS-1$
-
- // only used when page is shown programatically
- setTitle(PreferencesMessages
- .getString("CodeTemplatesPreferencePage.title")); //$NON-NLS-1$
-
- fCodeTemplateConfigurationBlock = new CodeTemplateBlock();
- }
-
- /*
- * @see IWorkbenchPreferencePage#init(org.eclipse.ui.IWorkbench)
- */
- public void init(IWorkbench workbench) {
- }
-
- /*
- * @see PreferencePage#createControl(Composite)
- */
- public void createControl(Composite parent) {
- super.createControl(parent);
- PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(),
- IJavaHelpContextIds.CODE_MANIPULATION_PREFERENCE_PAGE);
- }
-
- /*
- * @see PreferencePage#createContents(Composite)
- */
- protected Control createContents(Composite parent) {
- Control composite = fCodeTemplateConfigurationBlock
- .createContents(parent);
- Dialog.applyDialogFont(composite);
- return composite;
- }
-
- /*
- * @see IPreferencePage#performOk()
- */
- public boolean performOk() {
- if (!fCodeTemplateConfigurationBlock.performOk(true)) {
- return false;
- }
- return super.performOk();
- }
-
- /*
- * @see PreferencePage#performDefaults()
- */
- protected void performDefaults() {
- fCodeTemplateConfigurationBlock.performDefaults();
- super.performDefaults();
- }
-
- /*
- * (non-Javadoc)
- *
- * @see net.sourceforge.phpdt.internal.ui.wizards.IStatusChangeListener#statusChanged(org.eclipse.core.runtime.IStatus)
- */
- public void statusChanged(IStatus status) {
- setValid(!status.matches(IStatus.ERROR));
- StatusUtil.applyToStatusLine(this, status);
- }
-
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.jface.preference.IPreferencePage#performCancel()
- */
- public boolean performCancel() {
- fCodeTemplateConfigurationBlock.performCancel();
-
- return super.performCancel();
- }
-
-}