X-Git-Url: http://secure.phpeclipse.com diff --git a/archive/net.sourceforge.phpeclipse.css.ui/src/net/sourceforge/phpeclipse/css/ui/internal/preferences/CssEditorTypingConfigurationBlock.java b/archive/net.sourceforge.phpeclipse.css.ui/src/net/sourceforge/phpeclipse/css/ui/internal/preferences/CssEditorTypingConfigurationBlock.java new file mode 100644 index 0000000..e4a9cd4 --- /dev/null +++ b/archive/net.sourceforge.phpeclipse.css.ui/src/net/sourceforge/phpeclipse/css/ui/internal/preferences/CssEditorTypingConfigurationBlock.java @@ -0,0 +1,63 @@ +/* + * Copyright (c) 2003-2004 Christopher Lenz 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: + * Christopher Lenz - initial API and implementation + * + * $Id: CssEditorTypingConfigurationBlock.java,v 1.1 2004-09-02 18:11:50 jsurfer Exp $ + */ + +package net.sourceforge.phpeclipse.css.ui.internal.preferences; + +import net.sourceforge.phpeclipse.css.ui.internal.CssUIMessages; +import net.sourceforge.phpeclipse.css.ui.internal.CssUIPreferences; + +import org.eclipse.jface.preference.IPreferenceStore; +import org.eclipse.swt.SWT; +import org.eclipse.swt.layout.GridLayout; +import org.eclipse.swt.widgets.Composite; +import org.eclipse.swt.widgets.Control; + +/** + * + */ +final class CssEditorTypingConfigurationBlock + extends AbstractConfigurationBlock { + + // Constructors ------------------------------------------------------------ + + public CssEditorTypingConfigurationBlock(IPreferenceStore store) { + super(store); + } + + // Public Methods ---------------------------------------------------------- + + public Control createControl(Composite parent) { + + Composite composite = new Composite(parent, SWT.NONE); + GridLayout layout = new GridLayout(); + layout.numColumns = 2; + composite.setLayout(layout); + + addBooleanField(composite, + getString("insertSpaceForTabs"), //$NON-NLS-1$ + CssUIPreferences.EDITOR_SPACES_FOR_TABS, 1); + initialize(); + + return composite; + } + + private static String getString(String key) { + return CssUIMessages.getString( + "CssEditorPreferencePage.typing." + key); //$NON-NLS-1$ + } + + private void initialize() { + initializeFields(); + } + +}