blob: d32d832ff215227646378e3589e27e3f27df6215 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2017 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.tcl.internal.ui.preferences;
import org.eclipse.dltk.tcl.internal.ui.TclUI;
import org.eclipse.dltk.ui.preferences.AbstractConfigurationBlockPreferencePage;
import org.eclipse.dltk.ui.preferences.IPreferenceConfigurationBlock;
import org.eclipse.dltk.ui.preferences.OverlayPreferenceStore;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
/**
* Tcl Editor Assistance preferences
* <p>
* Note: Must be public since it is referenced from plugin.xml
* </p>
*
*
*/
public class TclEditorAssistancePreferencePage
extends AbstractConfigurationBlockPreferencePage {
@Override
protected String getHelpId() {
// return ITclHelpContextIds.TCL_EDITOR_PREFERENCE_PAGE;
return null;
}
@Override
protected void setDescription() {
String description = "&Code Assistance";
setDescription(description);
}
@Override
protected void setPreferenceStore() {
setPreferenceStore(TclUI.getDefault().getPreferenceStore());
}
@Override
protected Label createDescriptionLabel(Composite parent) {
return null; // no description for new look.
}
@Override
protected IPreferenceConfigurationBlock createConfigurationBlock(
OverlayPreferenceStore overlayPreferenceStore) {
return new TclContentAssistConfigurationBlock(this,
overlayPreferenceStore);
}
}